export default function Example() { return ( <Drawer.Root id="optional-scrim"> <Box css={{ display: "flex", flexDirection: "column", gap: "$100" }}> <Drawer.Trigger>See example</Drawer.Trigger> <p>Click button to see option</p> </Box> <Drawer.Content height="200px"> <Drawer.Close /> Scrim is optional </Drawer.Content> </Drawer.Root> ); }