@1771technologies/lytenyte-pro
Version:
22 lines (21 loc) • 539 B
JavaScript
import { jsx } from "react/jsx-runtime";
import { clsx } from "@1771technologies/js-utils";
function Separator(props) {
return /* @__PURE__ */ jsx(
"div",
{
role: "separator",
"aria-orientation": props.dir,
className: clsx(
props.dir === "horizontal" && "lng1771-separator--horizontal",
props.dir === "vertical" && "lng1771-separator--vertical",
props.soft && "lng1771-separator--soft",
props.className
),
style: props.style
}
);
}
export {
Separator as S
};