Drawer
import { ColorTransitionText } from 'react-custom-components-ui'
const [isDrawerOpen, setIsDrawerOpen] = useState(false);
<Drawer
isOpen={isDrawerOpen}
onClose={() => setIsDrawerOpen(false)}
title='MenĂ¼'
position={"left"}
textColor={"black"}
bgColor={"white"}
borderRadius={10}>
<div>
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,
when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</div>
</Drawer>