下からにゅるっと出てくるドロワーメニュー(スワイプ可能)
framer-motionでアニメーションを実装しています。
About Preview
このコンポーネントを使いたい場合は、component.tsxの内容をコピーして、render.tsxを参考にコンポーネントを使ってください
Default Packages
プレビュー画面では以下のパッケージがインストールされています
- [email protected]
- [email protected]
- [email protected]
- TailwindCSS
- clsx
- tailwind-merge
- react-use-measure
pnpm add tailwindcss framer-motion clsx tailwind-merge react-use-measure
Component PropTypes
interface DragCloseDrawerProps {
open: boolean;
setOpen: React.Dispatch<React.SetStateAction<boolean>>;
className?: string;
children?: React.ReactNode[];
}