From 4109f9f3e64328c074865b87b23f717823821f73 Mon Sep 17 00:00:00 2001 From: Ayush-1812 Date: Fri, 21 Aug 2026 00:52:31 +0530 Subject: [PATCH] fixed bottomSheetComponent Signed-off-by: Ayush-1812 --- .../sistent/components/bottom-sheet/code.mdx | 306 ++++++++++++++++++ .../components/bottom-sheet/guidance.mdx | 279 ++++++++++++++++ .../sistent/components/bottom-sheet/index.mdx | 105 ++++++ 3 files changed, 690 insertions(+) create mode 100644 src/collections/sistent/components/bottom-sheet/code.mdx create mode 100644 src/collections/sistent/components/bottom-sheet/guidance.mdx create mode 100644 src/collections/sistent/components/bottom-sheet/index.mdx 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 ( + +