UNPKG

lightswind

Version:

A collection of beautifully crafted React Components, Blocks & Templates for Modern Developers. Create stunning web applications effortlessly by using our 160+ professional and animated react components.

64 lines 3.17 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || (function () { var ownKeys = function(o) { ownKeys = Object.getOwnPropertyNames || function (o) { var ar = []; for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; return ar; }; return ownKeys(o); }; return function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); __setModuleDefault(result, mod); return result; }; })(); Object.defineProperty(exports, "__esModule", { value: true }); exports.Separator = void 0; const jsx_runtime_1 = require("react/jsx-runtime"); const React = __importStar(require("react")); const utils_1 = require("@/components/lib/utils"); const Separator = React.forwardRef(({ className, orientation = "horizontal", decorative = true, thickness = "default", lineStyle = "solid", variant = "default", ...props }, ref) => { // Thickness classes const thicknessClasses = { thin: orientation === "horizontal" ? "h-px" : "w-px", default: orientation === "horizontal" ? "h-[1px]" : "w-[1px]", thick: orientation === "horizontal" ? "h-0.5" : "w-0.5" }; // Style classes const styleClasses = { solid: "border-0", dashed: lineStyle === "dashed" ? (orientation === "horizontal" ? "border-t-0 border-l-0 border-r-0 border-b border-dashed" : "border-t-0 border-b-0 border-r-0 border-l border-dashed") : "", dotted: lineStyle === "dotted" ? (orientation === "horizontal" ? "border-t-0 border-l-0 border-r-0 border-b border-dotted" : "border-t-0 border-b-0 border-r-0 border-l border-dotted") : "" }; // Variant classes const variantClasses = { default: "bg-primary/20", muted: "bg-muted", accent: "bg-accent", primary: "bg-primary/20" }; return ((0, jsx_runtime_1.jsx)("div", { ref: ref, role: decorative ? "none" : "separator", "aria-orientation": decorative ? undefined : orientation, className: (0, utils_1.cn)("shrink-0", thicknessClasses[thickness], orientation === "horizontal" ? "w-full" : "h-full", variantClasses[variant], styleClasses[lineStyle], className), ...props })); }); exports.Separator = Separator; Separator.displayName = "Separator"; //# sourceMappingURL=separator.js.map