UNPKG

hotelier-lib

Version:

A skeleton to create your own React component library using Rollup, TypeScript, Sass and Storybook

13 lines (12 loc) 349 B
import React from 'react'; interface IDrawer { open: boolean; children: any; title?: String; description?: String; Form?: any; SubmitButton?: any; onClose?: any; } declare function Drawer({ open, children, title, description, Form, SubmitButton, onClose }: IDrawer): React.JSX.Element; export default Drawer;