fui-fancyui
Version:
FancyUI Libary
31 lines (30 loc) • 727 B
JavaScript
"use client";
import { jsx as C } from "react/jsx-runtime";
import { StyledChip as f } from "./Chip.style.js";
import h from "../FancyContent/FancyContent.js";
import s from "./Components/ChipImg/ChipImg.js";
import a from "./Components/ChipDeleteButton/ChipDeleteButton.js";
function t(e) {
const { outlined: o, themeType: n, sizeC: r = "md", layer: i, isActive: m, externalStyle: l, children: p, ...u } = e;
return /* @__PURE__ */ C(
f,
{
isActive: m,
onBlur: e.onBlur,
outlined: o,
themeType: n,
layer: i,
tabIndex: 0,
$sizeC: r,
externalStyle: l,
...u,
children: p
}
);
}
t.DeleteButton = a;
t.Img = s;
t.Content = h;
export {
t as default
};