fui-fancyui
Version:
FancyUI Libary
40 lines (39 loc) • 738 B
JavaScript
"use client";
import { jsx as d } from "react/jsx-runtime";
import { StyledFancyLine as p } from "./FancyLine.style.js";
function h(e) {
const {
direction: t = "horizontal",
thickness: n = "1px",
margin: i,
themeType: r = "accent",
layer: s,
length: a,
externalStyle: c,
isActive: o,
systemMessageType: l,
fadingOut: y,
fadeDirection: m = "end",
...$
} = e;
return /* @__PURE__ */ d(
p,
{
$direction: t,
$thickness: n,
$length: a,
$margin: i,
$themeType: r,
$layer: s,
$isActive: o,
$systemMessageType: l,
$externalStyle: c,
$fadingOut: y,
$fadeDirection: m,
...$
}
);
}
export {
h as default
};