feat: update drawer docs

This commit is contained in:
p-sw 2024-08-04 15:25:54 +09:00
parent 898b8a15a9
commit ff202e4678
3 changed files with 11 additions and 4 deletions

View File

@ -86,8 +86,9 @@ import {
#### Variants
| Prop | Type | Default | Description |
|:-----------|:-----------------------------------------|:---------|:---------------------------|
|:-----------|:-----------------------------------------|:---------|:--------------------------------------------|
| `position` | `"top" \| "bottom" \| "left" \| "right"` | `"left"` | The position of the drawer |
| `maxSize` | `"sm" \| "md" \| "lg" \| "xl"` | `"sm"` | max width ignored on top or bottom position |
#### Special

View File

@ -19,6 +19,11 @@ export default function DrawerPlayground() {
options: ["top", "bottom", "left", "right"],
value: "left",
},
maxSize: {
type: "select",
options: ["sm", "md", "lg", "xl"],
value: "sm",
},
},
});

View File

@ -16,6 +16,7 @@ export interface DrawerDemoPlaygroundProps {
};
DrawerContentProps: {
position: "top" | "bottom" | "left" | "right";
maxSize: "sm" | "md" | "lg" | "xl";
};
}
/* end */
@ -34,8 +35,8 @@ export function DrawerDemo() {
</DrawerTrigger>
<DrawerOverlay className="z-[99]">
<DrawerContent
className="max-w-[320px]"
position={DrawerContentProps.position}
maxSize={DrawerContentProps.maxSize}
>
<DrawerHeader>
<h1 className="text-2xl font-bold">Drawer</h1>