laif-ds
Version:
Design System di Laif con componenti React basati su principi di Atomic Design
62 lines (61 loc) • 1.58 kB
JavaScript
"use client";
import { jsxs as t, jsx as l } from "react/jsx-runtime";
import { Root as s, Viewport as c, Corner as n, ScrollAreaScrollbar as i, ScrollAreaThumb as d } from "../../node_modules/@radix-ui/react-scroll-area/dist/index.js";
import { cn as a } from "../../lib/utils.js";
function p({
className: o,
children: r,
...e
}) {
return /* @__PURE__ */ t(
s,
{
"data-slot": "scroll-area",
className: a("relative", o),
...e,
children: [
/* @__PURE__ */ l(
c,
{
"data-slot": "scroll-area-viewport",
className: "focus-visible:ring-d-ring/50 size-full rounded-[inherit] transition-[color,box-shadow] outline-none focus-visible:ring-[3px] focus-visible:outline-1",
children: r
}
),
/* @__PURE__ */ l(u, {}),
/* @__PURE__ */ l(n, {})
]
}
);
}
function u({
className: o,
orientation: r = "vertical",
...e
}) {
return /* @__PURE__ */ l(
i,
{
"data-slot": "scroll-area-scrollbar",
orientation: r,
className: a(
"flex touch-none p-px transition-colors select-none",
r === "vertical" && "h-full w-2.5 border-l border-l-transparent",
r === "horizontal" && "h-2.5 flex-col border-t border-t-transparent",
o
),
...e,
children: /* @__PURE__ */ l(
d,
{
"data-slot": "scroll-area-thumb",
className: "bg-d-border relative flex-1 rounded-full"
}
)
}
);
}
export {
p as ScrollArea,
u as ScrollBar
};