@szum-tech/design-system
Version:
Szum-Tech design system with tailwindcss support
24 lines (20 loc) • 689 B
JavaScript
;
var chunkH2BWO3SI_cjs = require('./chunk-H2BWO3SI.cjs');
var radixUi = require('radix-ui');
var jsxRuntime = require('react/jsx-runtime');
function Separator({ className, orientation = "horizontal", decorative = false, ...props }) {
return /* @__PURE__ */ jsxRuntime.jsx(
radixUi.Separator.Root,
{
"data-slot": "separator",
decorative,
orientation,
className: chunkH2BWO3SI_cjs.cn(
"bg-border shrink-0 data-[orientation=horizontal]:h-px data-[orientation=horizontal]:w-full data-[orientation=vertical]:h-full data-[orientation=vertical]:w-px",
className
),
...props
}
);
}
exports.Separator = Separator;