@teamsparta/stack-bottom-sheet
Version:
stack bottom sheet
10 lines (7 loc) • 391 B
text/typescript
import * as react from 'react';
import { ComponentPropsWithoutRef } from 'react';
import { Drawer } from 'vaul';
interface BottomSheetCloseProps extends ComponentPropsWithoutRef<typeof Drawer.Close> {
}
declare const BottomSheetClose: react.ForwardRefExoticComponent<BottomSheetCloseProps & react.RefAttributes<HTMLButtonElement>>;
export { BottomSheetClose, type BottomSheetCloseProps };