@mui/joy
Version:
Joy UI is an open-source React component library that implements MUI's own design principles. It's comprehensive and can be used in production out of the box.
16 lines (15 loc) • 477 B
TypeScript
import { OverridableComponent } from '@mui/types';
import { DrawerTypeMap } from './DrawerProps';
/**
* The navigation drawers (or "sidebars") provide ergonomic access to destinations in a site or app functionality such as switching accounts.
*
* Demos:
*
* - [Drawer](https://mui.com/joy-ui/react-drawer/)
*
* API:
*
* - [Drawer API](https://mui.com/joy-ui/api/drawer/)
*/
declare const Drawer: OverridableComponent<DrawerTypeMap<{}, "div">>;
export default Drawer;