UNPKG

@britannica/ui

Version:
8 lines (7 loc) 236 B
import type { ElementType, FC, HTMLAttributes } from 'react'; export interface DrawerProps extends HTMLAttributes<HTMLElement> { open?: boolean; tag?: ElementType; } declare const Drawer: FC<DrawerProps>; export default Drawer;