rename for clairity

This commit is contained in:
Hailey
2024-10-02 10:59:20 -07:00
parent 349b8b7045
commit 1ea82c38ea
5 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -1,11 +1,11 @@
import React from 'react'
import {Button, ButtonProps} from '#/components/Button'
import {NormalizedPressable} from '#/components/NormalizedPressable'
import {NormalizedRNGHPressable} from '#/components/NormalizedRNGHPressable'
export function BottomSheetButton({children, ...rest}: ButtonProps) {
return (
<Button {...rest} Component={NormalizedPressable}>
<Button {...rest} Component={NormalizedRNGHPressable}>
{children}
</Button>
)