Files
bsky-social-app/src/components/BottomSheetButton.tsx
T
2024-10-02 10:59:20 -07:00

13 lines
338 B
TypeScript

import React from 'react'
import {Button, ButtonProps} from '#/components/Button'
import {NormalizedRNGHPressable} from '#/components/NormalizedRNGHPressable'
export function BottomSheetButton({children, ...rest}: ButtonProps) {
return (
<Button {...rest} Component={NormalizedRNGHPressable}>
{children}
</Button>
)
}