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