UNPKG

@arolariu/components

Version:

🎨 60+ beautiful, accessible React components built on Radix UI. TypeScript-first, tree-shakeable, SSR-ready. Perfect for modern web apps, design systems & rapid prototyping. Zero config, maximum flexibility! ⚡

95 lines (94 loc) • 4.29 kB
"use client"; import { jsx, jsxs } from "react/jsx-runtime"; import "react"; import { Close, Content, Description, Overlay, Portal, Root, Title, Trigger } from "@radix-ui/react-dialog"; import { XIcon } from "lucide-react"; import { cn } from "../../lib/utils.js"; function Sheet({ ...props }) { return /*#__PURE__*/ jsx(Root, { "data-slot": "sheet", ...props }); } function SheetTrigger({ ...props }) { return /*#__PURE__*/ jsx(Trigger, { "data-slot": "sheet-trigger", ...props }); } function SheetClose({ ...props }) { return /*#__PURE__*/ jsx(Close, { "data-slot": "sheet-close", ...props }); } function SheetPortal({ ...props }) { return /*#__PURE__*/ jsx(Portal, { "data-slot": "sheet-portal", ...props }); } function SheetOverlay({ className, ...props }) { return /*#__PURE__*/ jsx(Overlay, { "data-slot": "sheet-overlay", className: cn("data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/50", className), ...props }); } function SheetContent({ className, children, side = "right", ...props }) { return /*#__PURE__*/ jsxs(SheetPortal, { children: [ /*#__PURE__*/ jsx(SheetOverlay, {}), /*#__PURE__*/ jsxs(Content, { "data-slot": "sheet-content", className: cn("bg-white data-[state=open]:animate-in data-[state=closed]:animate-out fixed z-50 flex flex-col gap-4 shadow-lg transition ease-in-out data-[state=closed]:duration-300 data-[state=open]:duration-500 dark:bg-neutral-950", "right" === side && "data-[state=closed]:slide-out-to-right data-[state=open]:slide-in-from-right inset-y-0 right-0 h-full w-3/4 border-l sm:max-w-sm", "left" === side && "data-[state=closed]:slide-out-to-left data-[state=open]:slide-in-from-left inset-y-0 left-0 h-full w-3/4 border-r sm:max-w-sm", "top" === side && "data-[state=closed]:slide-out-to-top data-[state=open]:slide-in-from-top inset-x-0 top-0 h-auto border-b", "bottom" === side && "data-[state=closed]:slide-out-to-bottom data-[state=open]:slide-in-from-bottom inset-x-0 bottom-0 h-auto border-t", className), ...props, children: [ children, /*#__PURE__*/ jsxs(Close, { className: "ring-offset-white focus:ring-neutral-950 data-[state=open]:bg-neutral-100 absolute top-4 right-4 rounded-xs opacity-70 transition-opacity hover:opacity-100 focus:ring-2 focus:ring-offset-2 focus:outline-hidden disabled:pointer-events-none dark:ring-offset-neutral-950 dark:focus:ring-neutral-300 dark:data-[state=open]:bg-neutral-800", children: [ /*#__PURE__*/ jsx(XIcon, { className: "size-4" }), /*#__PURE__*/ jsx("span", { className: "sr-only", children: "Close" }) ] }) ] }) ] }); } function SheetHeader({ className, ...props }) { return /*#__PURE__*/ jsx("div", { "data-slot": "sheet-header", className: cn("flex flex-col gap-1.5 p-4", className), ...props }); } function SheetFooter({ className, ...props }) { return /*#__PURE__*/ jsx("div", { "data-slot": "sheet-footer", className: cn("mt-auto flex flex-col gap-2 p-4", className), ...props }); } function SheetTitle({ className, ...props }) { return /*#__PURE__*/ jsx(Title, { "data-slot": "sheet-title", className: cn("text-neutral-950 font-semibold dark:text-neutral-50", className), ...props }); } function SheetDescription({ className, ...props }) { return /*#__PURE__*/ jsx(Description, { "data-slot": "sheet-description", className: cn("text-neutral-500 text-sm dark:text-neutral-400", className), ...props }); } export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger }; //# sourceMappingURL=sheet.js.map