diff --git a/src/collections/sistent/components/bottom-sheet/code.mdx b/src/collections/sistent/components/bottom-sheet/code.mdx new file mode 100644 index 0000000000000..07cf9778435f4 --- /dev/null +++ b/src/collections/sistent/components/bottom-sheet/code.mdx @@ -0,0 +1,306 @@ +--- +title: BottomSheet Code +component: bottom-sheet +description: Code examples covering the basic bottom sheet, headerless sheets, action lists, scrollable content, and custom header colors. +--- + +import { useState } from "react"; +import { + BottomSheet, + Button, + Box, + Typography, + List, + ListItemButton, + ListItemText, + Divider, +} from "@sistent/sistent"; + +export const BasicDemo = () => { + const [open, setOpen] = useState(false); + return ( + +