ConstThe properties passed to the Drawer element
The Drawer component
// Basic usage
<Drawer>
<List>
<ListItem>Content</ListItem>
</List>
</Drawer>
// With controlled state
<Drawer
status={isOpen}
variant="permanent"
>
<List>
<ListItem>Drawer content</ListItem>
</List>
</Drawer>
// With custom styling
<Drawer
className="custom-drawer"
style={{ width: 240 }}
>
<div>Drawer content</div>
</Drawer>
Create a customized Material UI Drawer component.