44 lines
1.0 KiB
TypeScript
44 lines
1.0 KiB
TypeScript
import { Button } from "@pswui/Button";
|
|
import {
|
|
DrawerBody,
|
|
DrawerClose,
|
|
DrawerContent,
|
|
DrawerFooter,
|
|
DrawerHeader,
|
|
DrawerOverlay,
|
|
DrawerRoot,
|
|
DrawerTrigger,
|
|
} from "@pswui/Drawer";
|
|
|
|
export const Right = () => {
|
|
return (
|
|
<DrawerRoot>
|
|
<DrawerTrigger>
|
|
<Button>Open Drawer</Button>
|
|
</DrawerTrigger>
|
|
<DrawerOverlay className="z-[99]">
|
|
<DrawerContent
|
|
position="right"
|
|
className="max-w-[320px]"
|
|
>
|
|
<DrawerHeader>
|
|
<h1 className="text-2xl font-bold">Drawer</h1>
|
|
</DrawerHeader>
|
|
<DrawerBody>
|
|
<p>
|
|
Drawers are a type of overlay that slides in from the edge of the
|
|
screen. They are typically used for navigation or additional
|
|
content.
|
|
</p>
|
|
</DrawerBody>
|
|
<DrawerFooter>
|
|
<DrawerClose>
|
|
<Button>Done</Button>
|
|
</DrawerClose>
|
|
</DrawerFooter>
|
|
</DrawerContent>
|
|
</DrawerOverlay>
|
|
</DrawerRoot>
|
|
);
|
|
};
|