@editora/react-icons 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +229 -0
- package/dist/Icon.d.ts +5 -0
- package/dist/Icon.d.ts.map +1 -0
- package/dist/IconContext.d.ts +12 -0
- package/dist/IconContext.d.ts.map +1 -0
- package/dist/createIcon.d.ts +3 -0
- package/dist/createIcon.d.ts.map +1 -0
- package/dist/icons.d.ts +781 -0
- package/dist/icons.d.ts.map +1 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.esm.js +927 -0
- package/dist/types.d.ts +25 -0
- package/dist/types.d.ts.map +1 -0
- package/package.json +52 -0
|
@@ -0,0 +1,927 @@
|
|
|
1
|
+
import { jsx as g, jsxs as _ } from "react/jsx-runtime";
|
|
2
|
+
import a from "react";
|
|
3
|
+
import { resolveIcon as Q } from "@editora/icons";
|
|
4
|
+
const Y = {
|
|
5
|
+
variant: "outline",
|
|
6
|
+
size: 15,
|
|
7
|
+
color: "currentColor",
|
|
8
|
+
secondaryColor: "currentColor",
|
|
9
|
+
strokeWidth: 1.5,
|
|
10
|
+
strokeLinecap: "round",
|
|
11
|
+
strokeLinejoin: "round"
|
|
12
|
+
}, f = a.createContext(Y);
|
|
13
|
+
function ys({ value: c, children: t }) {
|
|
14
|
+
const n = a.useContext(f), r = a.useMemo(() => c ? { ...n, ...c } : n, [n, c]);
|
|
15
|
+
return /* @__PURE__ */ g(f.Provider, { value: r, children: t });
|
|
16
|
+
}
|
|
17
|
+
function Z() {
|
|
18
|
+
return a.useContext(f);
|
|
19
|
+
}
|
|
20
|
+
const v = 15, J = 1.5;
|
|
21
|
+
function oo(c) {
|
|
22
|
+
return c == null || c === "" ? v : c;
|
|
23
|
+
}
|
|
24
|
+
function S(c) {
|
|
25
|
+
const t = c.trim().split(/\s+/).map((n) => Number(n));
|
|
26
|
+
return t.length === 4 && Number.isFinite(t[2]) && Number.isFinite(t[3]) ? { width: t[2], height: t[3] } : { width: 15, height: 15 };
|
|
27
|
+
}
|
|
28
|
+
function no(c, t) {
|
|
29
|
+
const n = c.strokeWidth ?? J;
|
|
30
|
+
if (!c.absoluteStrokeWidth)
|
|
31
|
+
return n;
|
|
32
|
+
const r = Number(c.size ?? v);
|
|
33
|
+
if (!Number.isFinite(r) || r <= 0)
|
|
34
|
+
return n;
|
|
35
|
+
const { width: e } = S(t);
|
|
36
|
+
return !Number.isFinite(e) || e <= 0 ? n : n * e / r;
|
|
37
|
+
}
|
|
38
|
+
function co(c, t) {
|
|
39
|
+
const { width: n, height: r } = S(t), e = [];
|
|
40
|
+
if ((c.flip === "horizontal" || c.rtl) && e.push(`translate(${n} 0) scale(-1 1)`), c.flip === "vertical" && e.push(`translate(0 ${r}) scale(1 -1)`), c.flip === "both" && e.push(`translate(${n} ${r}) scale(-1 -1)`), typeof c.rotate == "number" && Number.isFinite(c.rotate) && c.rotate !== 0 && e.push(`rotate(${c.rotate} ${n / 2} ${r / 2})`), !!e.length)
|
|
41
|
+
return e.join(" ");
|
|
42
|
+
}
|
|
43
|
+
function to(c) {
|
|
44
|
+
return c === "class" ? "className" : c.replace(/-([a-z])/g, (t, n) => n.toUpperCase());
|
|
45
|
+
}
|
|
46
|
+
function eo(c, t) {
|
|
47
|
+
return c && t ? `${c} ${t}` : c || t;
|
|
48
|
+
}
|
|
49
|
+
function ro(c, t) {
|
|
50
|
+
const n = { ...c.attrs || {} }, r = String(n.tone || "");
|
|
51
|
+
delete n.tone, r === "secondary" && (n.fill === "currentColor" && (n.fill = t.secondaryColor), n.stroke === "currentColor" && (n.stroke = t.secondaryColor));
|
|
52
|
+
const e = n.fill == null || n.fill === "none" || n.fill === "transparent";
|
|
53
|
+
return n.stroke == null && e && c.tag !== "g" && (n.stroke = "currentColor", n.fill = "none"), n.stroke != null && n.strokeWidth == null && (n.strokeWidth = t.strokeWidth), n.stroke != null && n.vectorEffect == null && (n.vectorEffect = "non-scaling-stroke"), n.stroke != null && n.strokeLinecap == null && (n.strokeLinecap = t.strokeLinecap), n.stroke != null && n.strokeLinejoin == null && (n.strokeLinejoin = t.strokeLinejoin), n;
|
|
54
|
+
}
|
|
55
|
+
function A(c, t, n) {
|
|
56
|
+
const r = ro(c, n), e = { key: `${c.tag}-${t}` };
|
|
57
|
+
for (const [d, s] of Object.entries(r))
|
|
58
|
+
s == null || s === !1 || (e[to(d)] = s);
|
|
59
|
+
const l = (c.children || []).map((d, s) => A(d, s, n));
|
|
60
|
+
return a.createElement(c.tag, e, l.length ? l : void 0);
|
|
61
|
+
}
|
|
62
|
+
const L = a.forwardRef(function({
|
|
63
|
+
name: t,
|
|
64
|
+
variant: n,
|
|
65
|
+
size: r,
|
|
66
|
+
color: e,
|
|
67
|
+
secondaryColor: l,
|
|
68
|
+
strokeWidth: d,
|
|
69
|
+
absoluteStrokeWidth: s,
|
|
70
|
+
strokeLinecap: D,
|
|
71
|
+
strokeLinejoin: R,
|
|
72
|
+
decorative: B,
|
|
73
|
+
title: p,
|
|
74
|
+
ariaLabel: P,
|
|
75
|
+
rotate: T,
|
|
76
|
+
flip: x,
|
|
77
|
+
rtl: U,
|
|
78
|
+
className: F,
|
|
79
|
+
children: M,
|
|
80
|
+
...u
|
|
81
|
+
}, O) {
|
|
82
|
+
const i = Z(), j = n ?? i.variant ?? "outline", I = Q(t, j);
|
|
83
|
+
if (!I)
|
|
84
|
+
return null;
|
|
85
|
+
const h = oo(r ?? i.size), w = e ?? i.color ?? "currentColor", z = l ?? i.secondaryColor ?? w, N = D ?? i.strokeLinecap ?? "round", V = R ?? i.strokeLinejoin ?? "round", W = no(
|
|
86
|
+
{
|
|
87
|
+
strokeWidth: d ?? i.strokeWidth,
|
|
88
|
+
absoluteStrokeWidth: s ?? i.absoluteStrokeWidth,
|
|
89
|
+
size: h
|
|
90
|
+
},
|
|
91
|
+
I.viewBox
|
|
92
|
+
), y = P || (typeof u["aria-label"] == "string" ? u["aria-label"] : void 0), m = B ?? i.decorative ?? (!p && !y), E = eo(i.className, F), k = co(
|
|
93
|
+
{
|
|
94
|
+
rotate: T,
|
|
95
|
+
flip: x,
|
|
96
|
+
rtl: (U ?? i.rtl) && I.definition.rtlMirror
|
|
97
|
+
},
|
|
98
|
+
I.viewBox
|
|
99
|
+
), H = {
|
|
100
|
+
secondaryColor: z,
|
|
101
|
+
strokeWidth: W,
|
|
102
|
+
strokeLinecap: N,
|
|
103
|
+
strokeLinejoin: V
|
|
104
|
+
}, C = I.glyph.nodes.map((K, X) => A(K, X, H)), G = u.role || (m ? "presentation" : "img"), $ = m ? !0 : void 0, q = m ? void 0 : y || p || t;
|
|
105
|
+
return /* @__PURE__ */ _(
|
|
106
|
+
"svg",
|
|
107
|
+
{
|
|
108
|
+
ref: O,
|
|
109
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
110
|
+
width: h,
|
|
111
|
+
height: h,
|
|
112
|
+
viewBox: I.viewBox,
|
|
113
|
+
fill: "none",
|
|
114
|
+
color: w,
|
|
115
|
+
shapeRendering: "geometricPrecision",
|
|
116
|
+
className: E,
|
|
117
|
+
role: G,
|
|
118
|
+
"aria-hidden": $,
|
|
119
|
+
"aria-label": q,
|
|
120
|
+
...u,
|
|
121
|
+
children: [
|
|
122
|
+
p ? /* @__PURE__ */ g("title", { children: p }) : null,
|
|
123
|
+
k ? /* @__PURE__ */ g("g", { transform: k, children: C }) : C,
|
|
124
|
+
M
|
|
125
|
+
]
|
|
126
|
+
}
|
|
127
|
+
);
|
|
128
|
+
});
|
|
129
|
+
L.displayName = "Icon";
|
|
130
|
+
function o(c, t) {
|
|
131
|
+
const n = a.forwardRef(function(e, l) {
|
|
132
|
+
return /* @__PURE__ */ g(L, { ref: l, name: c, ...e });
|
|
133
|
+
});
|
|
134
|
+
return n.displayName = t || `${io(c)}Icon`, n;
|
|
135
|
+
}
|
|
136
|
+
function io(c) {
|
|
137
|
+
return c.split(/[-_\s]+/g).filter(Boolean).map((t) => t.charAt(0).toUpperCase() + t.slice(1)).join("");
|
|
138
|
+
}
|
|
139
|
+
const so = o("check", "CheckIcon"), ao = o("x", "XIcon"), lo = o("plus", "PlusIcon"), Io = o("minus", "MinusIcon"), po = o("dot", "DotIcon"), uo = o("circle", "CircleIcon"), go = o("square", "SquareIcon"), ho = o("diamond", "DiamondIcon"), mo = o("chevron-down", "ChevronDownIcon"), fo = o("chevron-up", "ChevronUpIcon"), bo = o("chevron-left", "ChevronLeftIcon"), wo = o("chevron-right", "ChevronRightIcon"), yo = o("chevrons-down", "ChevronsDownIcon"), ko = o("chevrons-up", "ChevronsUpIcon"), Co = o("chevrons-left", "ChevronsLeftIcon"), vo = o("chevrons-right", "ChevronsRightIcon"), So = o("caret-down", "CaretDownIcon"), Ao = o("caret-up", "CaretUpIcon"), Lo = o("caret-left", "CaretLeftIcon"), Do = o("caret-right", "CaretRightIcon"), Ro = o("arrow-up", "ArrowUpIcon"), Bo = o("arrow-down", "ArrowDownIcon"), Po = o("arrow-left", "ArrowLeftIcon"), To = o("arrow-right", "ArrowRightIcon"), xo = o("arrow-up-right", "ArrowUpRightIcon"), Uo = o("arrow-up-left", "ArrowUpLeftIcon"), Fo = o("arrow-down-right", "ArrowDownRightIcon"), Mo = o("arrow-down-left", "ArrowDownLeftIcon"), Oo = o("external-link", "ExternalLinkIcon"), jo = o("menu", "MenuIcon"), zo = o("more-horizontal", "MoreHorizontalIcon"), No = o("more-vertical", "MoreVerticalIcon"), Vo = o("search", "SearchIcon"), Wo = o("search-plus", "SearchPlusIcon"), Eo = o("search-minus", "SearchMinusIcon"), Ho = o("filter", "FilterIcon"), Go = o("sort", "SortIcon"), $o = o("sort-asc", "SortAscIcon"), qo = o("sort-desc", "SortDescIcon"), Ko = o("sliders", "SlidersIcon"), Xo = o("settings", "SettingsIcon"), _o = o("home", "HomeIcon"), Qo = o("dashboard", "DashboardIcon"), Yo = o("app-grid", "AppGridIcon"), Zo = o("layout", "LayoutIcon"), Jo = o("layout-list", "LayoutListIcon"), on = o("layout-sidebar", "LayoutSidebarIcon"), nn = o("columns", "ColumnsIcon"), cn = o("rows", "RowsIcon"), tn = o("sidebar-left", "SidebarLeftIcon"), en = o("sidebar-right", "SidebarRightIcon"), rn = o("panel-left", "PanelLeftIcon"), sn = o("panel-right", "PanelRightIcon"), an = o("panel-top", "PanelTopIcon"), ln = o("panel-bottom", "PanelBottomIcon"), In = o("list-view", "ListViewIcon"), dn = o("table", "TableIcon"), pn = o("table-alt", "TableAltIcon"), un = o("columns-alt", "ColumnsAltIcon"), gn = o("row", "RowIcon"), hn = o("folder", "FolderIcon"), mn = o("folder-open", "FolderOpenIcon"), fn = o("file", "FileIcon"), bn = o("copy", "CopyIcon"), wn = o("clipboard", "ClipboardIcon"), yn = o("clipboard-check", "ClipboardCheckIcon"), kn = o("paste", "PasteIcon"), Cn = o("cut", "CutIcon"), vn = o("save", "SaveIcon"), Sn = o("trash", "TrashIcon"), An = o("edit", "EditIcon"), Ln = o("pencil", "PencilIcon"), Dn = o("link", "LinkIcon"), Rn = o("unlink", "UnlinkIcon"), Bn = o("share", "ShareIcon"), Pn = o("share-2", "Share2Icon"), Tn = o("user", "UserIcon"), xn = o("users", "UsersIcon"), Un = o("user-plus", "UserPlusIcon"), Fn = o("user-remove", "UserRemoveIcon"), Mn = o("user-check", "UserCheckIcon"), On = o("user-x", "UserXIcon"), jn = o("bell", "BellIcon"), zn = o("bell-off", "BellOffIcon"), Nn = o("mail", "MailIcon"), Vn = o("inbox", "InboxIcon"), Wn = o("archive", "ArchiveIcon"), En = o("phone", "PhoneIcon"), Hn = o("map-pin", "MapPinIcon"), Gn = o("map", "MapIcon"), $n = o("location-arrow", "LocationArrowIcon"), qn = o("compass", "CompassIcon"), Kn = o("navigation", "NavigationIcon"), Xn = o("nav", "NavIcon"), _n = o("navigation-icon", "NavigationMenuIcon"), Qn = o("route", "RouteIcon"), Yn = o("globe", "GlobeIcon"), Zn = o("calendar", "CalendarIcon"), Jn = o("clock", "ClockIcon"), oc = o("alarm", "AlarmIcon"), nc = o("history", "HistoryIcon"), cc = o("signal", "SignalIcon"), tc = o("battery", "BatteryIcon"), ec = o("battery-full", "BatteryFullIcon"), rc = o("battery-low", "BatteryLowIcon"), ic = o("battery-charging", "BatteryChargingIcon"), sc = o("power", "PowerIcon"), ac = o("power-off", "PowerOffIcon"), lc = o("chart-bar", "ChartBarIcon"), Ic = o("chart-line", "ChartLineIcon"), dc = o("chart-pie", "ChartPieIcon"), pc = o("activity", "ActivityIcon"), uc = o("trending-up", "TrendingUpIcon"), gc = o("trending-down", "TrendingDownIcon"), hc = o("star", "StarIcon"), mc = o("heart", "HeartIcon"), fc = o("bookmark", "BookmarkIcon"), bc = o("tag", "TagIcon"), wc = o("flag", "FlagIcon"), yc = o("tags", "TagsIcon"), kc = o("lock", "LockIcon"), Cc = o("unlock", "UnlockIcon"), vc = o("shield", "ShieldIcon"), Sc = o("info", "InfoIcon"), Ac = o("alert-triangle", "AlertTriangleIcon"), Lc = o("alert-circle", "AlertCircleIcon"), Dc = o("help-circle", "HelpCircleIcon"), Rc = o("check-circle", "CheckCircleIcon"), Bc = o("x-circle", "XCircleIcon"), Pc = o("eye", "EyeIcon"), Tc = o("eye-off", "EyeOffIcon"), xc = o("camera", "CameraIcon"), Uc = o("camera-off", "CameraOffIcon"), Fc = o("video", "VideoIcon"), Mc = o("video-off", "VideoOffIcon"), Oc = o("image", "ImageIcon"), jc = o("play", "PlayIcon"), zc = o("play-circle", "PlayCircleIcon"), Nc = o("pause", "PauseIcon"), Vc = o("pause-circle", "PauseCircleIcon"), Wc = o("stop-circle", "StopCircleIcon"), Ec = o("forward", "ForwardIcon"), Hc = o("rewind", "RewindIcon"), Gc = o("skip-next", "SkipNextIcon"), $c = o("skip-previous", "SkipPreviousIcon"), qc = o("volume", "VolumeIcon"), Kc = o("volume-up", "VolumeUpIcon"), Xc = o("volume-down", "VolumeDownIcon"), _c = o("volume-mute", "VolumeMuteIcon"), Qc = o("mic", "MicIcon"), Yc = o("mic-off", "MicOffIcon"), Zc = o("download", "DownloadIcon"), Jc = o("upload", "UploadIcon"), ot = o("cloud", "CloudIcon"), nt = o("cloud-upload", "CloudUploadIcon"), ct = o("cloud-download", "CloudDownloadIcon"), tt = o("cloud-sync", "CloudSyncIcon"), et = o("refresh-cw", "RefreshCwIcon"), rt = o("refresh-ccw", "RefreshCcwIcon"), it = o("terminal", "TerminalIcon"), st = o("code", "CodeIcon"), at = o("sparkles", "SparklesIcon"), lt = o("bolt", "BoltIcon"), It = o("sun", "SunIcon"), dt = o("moon", "MoonIcon"), pt = o("wifi", "WifiIcon"), ut = o("wifi-off", "WifiOffIcon"), gt = o("login", "LoginIcon"), ht = o("logout", "LogoutIcon"), mt = o("key", "KeyIcon"), ft = o("fingerprint", "FingerprintIcon"), bt = o("dislike", "DislikeIcon"), wt = o("file-plus", "FilePlusIcon"), yt = o("file-minus", "FileMinusIcon"), kt = o("file-check", "FileCheckIcon"), Ct = o("file-x", "FileXIcon"), vt = o("stop", "StopIcon"), St = o("crop", "CropIcon"), At = o("flip-horizontal", "FlipHorizontalIcon"), Lt = o("flip-vertical", "FlipVerticalIcon"), Dt = o("maximize", "MaximizeIcon"), Rt = o("minimize", "MinimizeIcon"), Bt = o("check-square", "CheckSquareIcon"), Pt = o("bug", "BugIcon"), Tt = o("bracket", "BracketIcon"), xt = o("cpu", "CpuIcon"), Ut = o("server", "ServerIcon"), Ft = o("database", "DatabaseIcon"), Mt = o("database-add", "DatabaseAddIcon"), Ot = o("database-remove", "DatabaseRemoveIcon"), jt = o("hard-drive", "HardDriveIcon"), zt = o("network", "NetworkIcon"), Nt = o("chart-area", "ChartAreaIcon"), Vt = o("wallet", "WalletIcon"), Wt = o("credit-card", "CreditCardIcon"), Et = o("invoice", "InvoiceIcon"), Ht = o("receipt", "ReceiptIcon"), Gt = o("cart", "CartIcon"), $t = o("building", "BuildingIcon"), qt = o("car", "CarIcon"), Kt = o("airplane", "AirplaneIcon"), Xt = o("airplan", "AirplanIcon"), _t = o("cloud-sun", "CloudSunIcon"), Qt = o("cloud-moon", "CloudMoonIcon"), Yt = o("rain", "RainIcon"), Zt = o("snow", "SnowIcon"), Jt = o("storm", "StormIcon"), oe = o("umbrella", "UmbrellaIcon"), ne = o("fire", "FireIcon"), ce = o("leaf", "LeafIcon"), te = o("gift", "GiftIcon"), ee = o("trophy", "TrophyIcon"), re = o("crown", "CrownIcon"), ie = o("rocket", "RocketIcon"), se = o("coffee", "CoffeeIcon"), ae = o("phone-call", "PhoneCallIcon"), le = o("phone-missed", "PhoneMissedIcon"), Ie = o("chat", "ChatIcon"), de = o("comments", "CommentsIcon"), pe = o("megaphone", "MegaphoneIcon"), ue = o("printer", "PrinterIcon"), ge = o("monitor", "MonitorIcon"), he = o("laptop", "LaptopIcon"), me = o("tablet", "TabletIcon"), fe = o("smartphone", "SmartphoneIcon"), be = o("qr-code", "QrCodeIcon"), we = o("barcode", "BarcodeIcon"), ye = o("ticket", "TicketIcon"), ke = o("id-card", "IdCardIcon"), Ce = o("briefcase", "BriefcaseIcon"), ve = o("book", "BookIcon"), Se = o("graduation", "GraduationIcon"), Ae = o("brain", "BrainIcon"), Le = o("target", "TargetIcon"), De = o("layers", "LayersIcon"), Re = o("box", "BoxIcon"), Be = o("cube", "CubeIcon"), Pe = o("toggle-left", "ToggleLeftIcon"), Te = o("toggle-right", "ToggleRightIcon"), xe = o("drag", "DragIcon"), Ue = o("resize", "ResizeIcon"), Fe = o("align-left", "AlignLeftIcon"), Me = o("align-center", "AlignCenterIcon"), Oe = o("align-right", "AlignRightIcon"), je = o("align-top", "AlignTopIcon"), ze = o("align-middle", "AlignMiddleIcon"), Ne = o("align-bottom", "AlignBottomIcon"), Ve = o("bold", "BoldIcon"), We = o("italic", "ItalicIcon"), Ee = o("underline", "UnderlineIcon"), He = o("strikethrough", "StrikethroughIcon"), Ge = o("list-ordered", "ListOrderedIcon"), $e = o("list-unordered", "ListUnorderedIcon"), qe = o("keyboard", "KeyboardIcon"), Ke = o("branch", "BranchIcon"), Xe = o("accessibility", "AccessibilityIcon"), _e = o("contrast", "ContrastIcon"), Qe = o("palette", "PaletteIcon"), Ye = o("border", "BorderIcon"), Ze = o("shadow", "ShadowIcon"), Je = o("spinner", "SpinnerIcon"), or = o("tooltip", "TooltipIcon"), nr = o("dropdown", "DropdownIcon"), cr = o("select", "SelectIcon"), tr = o("radio", "RadioIcon"), er = o("checkbox", "CheckboxIcon"), rr = o("switch-on", "SwitchOnIcon"), ir = o("switch-off", "SwitchOffIcon"), sr = o("input", "InputIcon"), ar = o("form", "FormIcon"), lr = o("validation", "ValidationIcon"), Ir = o("error-state", "ErrorStateIcon"), dr = o("empty-state", "EmptyStateIcon"), pr = o("success-state", "SuccessStateIcon"), ur = o("hover-state", "HoverStateIcon"), gr = o("divider", "DividerIcon"), hr = o("responsive", "ResponsiveIcon"), mr = o("aspect-ratio", "AspectRatioIcon"), fr = o("expand-horizontal", "ExpandHorizontalIcon"), br = o("layout-stack", "LayoutStackIcon"), wr = o("layer-lock", "LayerLockIcon"), yr = o("frame", "FrameIcon"), kr = o("interaction", "InteractionIcon"), Cr = o("animation", "AnimationIcon"), vr = o("scroll", "ScrollIcon"), Sr = o("anchor", "AnchorIcon"), Ar = o("design-token", "DesignTokenIcon"), Lr = o("alignment", "AlignmentIcon"), Dr = o("preview", "PreviewIcon"), Rr = o("inspect", "InspectIcon"), Br = o("object-sphere", "ObjectSphereIcon"), Pr = o("object-cylinder", "ObjectCylinderIcon"), Tr = o("object-cone", "ObjectConeIcon"), xr = o("object-pyramid", "ObjectPyramidIcon"), Ur = o("object-prism", "ObjectPrismIcon"), Fr = o("object-cube-wire", "ObjectCubeWireIcon"), Mr = o("object-ring", "ObjectRingIcon"), Or = o("object-orbital", "ObjectOrbitalIcon"), jr = o("abstract-waves", "AbstractWavesIcon"), zr = o("abstract-spiral", "AbstractSpiralIcon"), Nr = o("abstract-blob", "AbstractBlobIcon"), Vr = o("abstract-orbit", "AbstractOrbitIcon"), Wr = o("abstract-mesh", "AbstractMeshIcon"), Er = o("abstract-fractal", "AbstractFractalIcon"), Hr = o("logo-github", "LogoGithubIcon"), Gr = o("logo-gitlab", "LogoGitlabIcon"), $r = o("logo-bitbucket", "LogoBitbucketIcon"), qr = o("logo-figma", "LogoFigmaIcon"), Kr = o("logo-slack", "LogoSlackIcon"), Xr = o("logo-discord", "LogoDiscordIcon"), _r = o("logo-linkedin", "LogoLinkedinIcon"), Qr = o("logo-youtube", "LogoYoutubeIcon"), Yr = o("align-h-center-distribute", "AlignHCenterDistributeIcon"), Zr = o("align-v-center-distribute", "AlignVCenterDistributeIcon"), Jr = o("align-baseline-typography", "AlignBaselineTypographyIcon"), oi = o("align-stretch-box", "AlignStretchBoxIcon"), ni = o("align-pack-start", "AlignPackStartIcon"), ci = o("align-pack-end", "AlignPackEndIcon"), ti = o("border-style-dashed", "BorderStyleDashedIcon"), ei = o("border-style-dotted", "BorderStyleDottedIcon"), ri = o("border-style-double", "BorderStyleDoubleIcon"), ii = o("border-radius-all", "BorderRadiusAllIcon"), si = o("border-radius-corners", "BorderRadiusCornersIcon"), ai = o("corner-cut-style", "CornerCutStyleIcon"), li = o("arrow-bend-up-right", "ArrowBendUpRightIcon"), Ii = o("arrow-bend-down-right", "ArrowBendDownRightIcon"), di = o("arrow-uturn-left", "ArrowUturnLeftIcon"), pi = o("arrow-uturn-right", "ArrowUturnRightIcon"), ui = o("arrow-swap-horizontal", "ArrowSwapHorizontalIcon"), gi = o("arrow-swap-vertical", "ArrowSwapVerticalIcon"), hi = o("arrow-circle-cw", "ArrowCircleCwIcon"), mi = o("arrow-circle-ccw", "ArrowCircleCcwIcon"), fi = o("design-pen-tool", "DesignPenToolIcon"), bi = o("design-eyedropper", "DesignEyedropperIcon"), wi = o("design-grid-layout", "DesignGridLayoutIcon"), yi = o("design-prototype-link", "DesignPrototypeLinkIcon"), ki = o("design-magic-wand", "DesignMagicWandIcon"), Ci = o("design-ruler-tool", "DesignRulerToolIcon"), vi = o("design-vector-node", "DesignVectorNodeIcon"), Si = o("type-uppercase", "TypeUppercaseIcon"), Ai = o("type-lowercase", "TypeLowercaseIcon"), Li = o("type-superscript", "TypeSuperscriptIcon"), Di = o("type-subscript", "TypeSubscriptIcon"), Ri = o("type-letter-spacing", "TypeLetterSpacingIcon"), Bi = o("type-line-height", "TypeLineHeightIcon"), Pi = o("type-text-direction", "TypeTextDirectionIcon"), Ti = o("admin-panel", "AdminPanelIcon"), xi = o("role", "RoleIcon"), Ui = o("audit-log", "AuditLogIcon"), Fi = o("report", "ReportIcon"), Mi = o("kpi", "KpiIcon"), Oi = o("revenue", "RevenueIcon"), ji = o("conversion", "ConversionIcon"), zi = o("forecast", "ForecastIcon"), Ni = o("budget", "BudgetIcon"), Vi = o("subscription", "SubscriptionIcon"), Wi = o("tax", "TaxIcon"), Ei = o("payout", "PayoutIcon"), Hi = o("api-key", "ApiKeyIcon"), Gi = o("integration", "IntegrationIcon"), $i = o("support-ticket", "SupportTicketIcon"), qi = o("maintenance", "MaintenanceIcon"), Ki = o("compliance", "ComplianceIcon"), Xi = o("risk", "RiskIcon"), _i = o("monitoring", "MonitoringIcon"), Qi = o("deployment", "DeploymentIcon"), Yi = o("feature-flag", "FeatureFlagIcon"), Zi = o("crm", "CrmIcon"), Ji = o("workflow", "WorkflowIcon"), os = o("roadmap", "RoadmapIcon"), ns = o("product", "ProductIcon"), cs = o("inventory", "InventoryIcon"), ts = o("order", "OrderIcon"), es = o("shipment", "ShipmentIcon"), rs = o("payment", "PaymentIcon"), is = o("transaction", "TransactionIcon"), ss = o("refund", "RefundIcon"), as = o("loyalty", "LoyaltyIcon"), ls = o("fintech", "FintechIcon"), Is = o("productivity", "ProductivityIcon"), ds = o("marketing", "MarketingIcon"), ps = o("semantic-ui", "SemanticUiIcon"), us = o("semantic-admin", "SemanticAdminIcon"), gs = o("semantic-business", "SemanticBusinessIcon"), hs = o("link-2", "Link2Icon"), ms = o("command", "CommandIcon"), b = {
|
|
140
|
+
check: so,
|
|
141
|
+
x: ao,
|
|
142
|
+
plus: lo,
|
|
143
|
+
minus: Io,
|
|
144
|
+
dot: po,
|
|
145
|
+
circle: uo,
|
|
146
|
+
square: go,
|
|
147
|
+
diamond: ho,
|
|
148
|
+
"chevron-down": mo,
|
|
149
|
+
"chevron-up": fo,
|
|
150
|
+
"chevron-left": bo,
|
|
151
|
+
"chevron-right": wo,
|
|
152
|
+
"chevrons-down": yo,
|
|
153
|
+
"chevrons-up": ko,
|
|
154
|
+
"chevrons-left": Co,
|
|
155
|
+
"chevrons-right": vo,
|
|
156
|
+
"caret-down": So,
|
|
157
|
+
"caret-up": Ao,
|
|
158
|
+
"caret-left": Lo,
|
|
159
|
+
"caret-right": Do,
|
|
160
|
+
"arrow-up": Ro,
|
|
161
|
+
"arrow-down": Bo,
|
|
162
|
+
"arrow-left": Po,
|
|
163
|
+
"arrow-right": To,
|
|
164
|
+
"arrow-up-right": xo,
|
|
165
|
+
"arrow-up-left": Uo,
|
|
166
|
+
"arrow-down-right": Fo,
|
|
167
|
+
"arrow-down-left": Mo,
|
|
168
|
+
"external-link": Oo,
|
|
169
|
+
menu: jo,
|
|
170
|
+
"more-horizontal": zo,
|
|
171
|
+
"more-vertical": No,
|
|
172
|
+
search: Vo,
|
|
173
|
+
"search-plus": Wo,
|
|
174
|
+
"search-minus": Eo,
|
|
175
|
+
filter: Ho,
|
|
176
|
+
sort: Go,
|
|
177
|
+
"sort-asc": $o,
|
|
178
|
+
"sort-desc": qo,
|
|
179
|
+
sliders: Ko,
|
|
180
|
+
settings: Xo,
|
|
181
|
+
home: _o,
|
|
182
|
+
dashboard: Qo,
|
|
183
|
+
"app-grid": Yo,
|
|
184
|
+
layout: Zo,
|
|
185
|
+
"layout-list": Jo,
|
|
186
|
+
"layout-sidebar": on,
|
|
187
|
+
columns: nn,
|
|
188
|
+
rows: cn,
|
|
189
|
+
"sidebar-left": tn,
|
|
190
|
+
"sidebar-right": en,
|
|
191
|
+
"panel-left": rn,
|
|
192
|
+
"panel-right": sn,
|
|
193
|
+
"panel-top": an,
|
|
194
|
+
"panel-bottom": ln,
|
|
195
|
+
"list-view": In,
|
|
196
|
+
table: dn,
|
|
197
|
+
"table-alt": pn,
|
|
198
|
+
"columns-alt": un,
|
|
199
|
+
row: gn,
|
|
200
|
+
folder: hn,
|
|
201
|
+
"folder-open": mn,
|
|
202
|
+
file: fn,
|
|
203
|
+
copy: bn,
|
|
204
|
+
clipboard: wn,
|
|
205
|
+
"clipboard-check": yn,
|
|
206
|
+
paste: kn,
|
|
207
|
+
cut: Cn,
|
|
208
|
+
save: vn,
|
|
209
|
+
trash: Sn,
|
|
210
|
+
edit: An,
|
|
211
|
+
pencil: Ln,
|
|
212
|
+
link: Dn,
|
|
213
|
+
unlink: Rn,
|
|
214
|
+
share: Bn,
|
|
215
|
+
"share-2": Pn,
|
|
216
|
+
user: Tn,
|
|
217
|
+
users: xn,
|
|
218
|
+
"user-plus": Un,
|
|
219
|
+
"user-remove": Fn,
|
|
220
|
+
"user-check": Mn,
|
|
221
|
+
"user-x": On,
|
|
222
|
+
bell: jn,
|
|
223
|
+
"bell-off": zn,
|
|
224
|
+
mail: Nn,
|
|
225
|
+
inbox: Vn,
|
|
226
|
+
archive: Wn,
|
|
227
|
+
phone: En,
|
|
228
|
+
"map-pin": Hn,
|
|
229
|
+
map: Gn,
|
|
230
|
+
"location-arrow": $n,
|
|
231
|
+
compass: qn,
|
|
232
|
+
navigation: Kn,
|
|
233
|
+
nav: Xn,
|
|
234
|
+
"navigation-icon": _n,
|
|
235
|
+
route: Qn,
|
|
236
|
+
globe: Yn,
|
|
237
|
+
calendar: Zn,
|
|
238
|
+
clock: Jn,
|
|
239
|
+
alarm: oc,
|
|
240
|
+
history: nc,
|
|
241
|
+
signal: cc,
|
|
242
|
+
battery: tc,
|
|
243
|
+
"battery-full": ec,
|
|
244
|
+
"battery-low": rc,
|
|
245
|
+
"battery-charging": ic,
|
|
246
|
+
power: sc,
|
|
247
|
+
"power-off": ac,
|
|
248
|
+
"chart-bar": lc,
|
|
249
|
+
"chart-line": Ic,
|
|
250
|
+
"chart-pie": dc,
|
|
251
|
+
activity: pc,
|
|
252
|
+
"trending-up": uc,
|
|
253
|
+
"trending-down": gc,
|
|
254
|
+
star: hc,
|
|
255
|
+
heart: mc,
|
|
256
|
+
bookmark: fc,
|
|
257
|
+
tag: bc,
|
|
258
|
+
flag: wc,
|
|
259
|
+
tags: yc,
|
|
260
|
+
lock: kc,
|
|
261
|
+
unlock: Cc,
|
|
262
|
+
shield: vc,
|
|
263
|
+
info: Sc,
|
|
264
|
+
"alert-triangle": Ac,
|
|
265
|
+
"alert-circle": Lc,
|
|
266
|
+
"help-circle": Dc,
|
|
267
|
+
"check-circle": Rc,
|
|
268
|
+
"x-circle": Bc,
|
|
269
|
+
eye: Pc,
|
|
270
|
+
"eye-off": Tc,
|
|
271
|
+
camera: xc,
|
|
272
|
+
"camera-off": Uc,
|
|
273
|
+
video: Fc,
|
|
274
|
+
"video-off": Mc,
|
|
275
|
+
image: Oc,
|
|
276
|
+
play: jc,
|
|
277
|
+
"play-circle": zc,
|
|
278
|
+
pause: Nc,
|
|
279
|
+
"pause-circle": Vc,
|
|
280
|
+
"stop-circle": Wc,
|
|
281
|
+
forward: Ec,
|
|
282
|
+
rewind: Hc,
|
|
283
|
+
"skip-next": Gc,
|
|
284
|
+
"skip-previous": $c,
|
|
285
|
+
volume: qc,
|
|
286
|
+
"volume-up": Kc,
|
|
287
|
+
"volume-down": Xc,
|
|
288
|
+
"volume-mute": _c,
|
|
289
|
+
mic: Qc,
|
|
290
|
+
"mic-off": Yc,
|
|
291
|
+
download: Zc,
|
|
292
|
+
upload: Jc,
|
|
293
|
+
cloud: ot,
|
|
294
|
+
"cloud-upload": nt,
|
|
295
|
+
"cloud-download": ct,
|
|
296
|
+
"cloud-sync": tt,
|
|
297
|
+
"refresh-cw": et,
|
|
298
|
+
"refresh-ccw": rt,
|
|
299
|
+
terminal: it,
|
|
300
|
+
code: st,
|
|
301
|
+
sparkles: at,
|
|
302
|
+
bolt: lt,
|
|
303
|
+
sun: It,
|
|
304
|
+
moon: dt,
|
|
305
|
+
wifi: pt,
|
|
306
|
+
"wifi-off": ut,
|
|
307
|
+
login: gt,
|
|
308
|
+
logout: ht,
|
|
309
|
+
key: mt,
|
|
310
|
+
fingerprint: ft,
|
|
311
|
+
dislike: bt,
|
|
312
|
+
"file-plus": wt,
|
|
313
|
+
"file-minus": yt,
|
|
314
|
+
"file-check": kt,
|
|
315
|
+
"file-x": Ct,
|
|
316
|
+
stop: vt,
|
|
317
|
+
crop: St,
|
|
318
|
+
"flip-horizontal": At,
|
|
319
|
+
"flip-vertical": Lt,
|
|
320
|
+
maximize: Dt,
|
|
321
|
+
minimize: Rt,
|
|
322
|
+
"check-square": Bt,
|
|
323
|
+
bug: Pt,
|
|
324
|
+
bracket: Tt,
|
|
325
|
+
cpu: xt,
|
|
326
|
+
server: Ut,
|
|
327
|
+
database: Ft,
|
|
328
|
+
"database-add": Mt,
|
|
329
|
+
"database-remove": Ot,
|
|
330
|
+
"hard-drive": jt,
|
|
331
|
+
network: zt,
|
|
332
|
+
"chart-area": Nt,
|
|
333
|
+
wallet: Vt,
|
|
334
|
+
"credit-card": Wt,
|
|
335
|
+
invoice: Et,
|
|
336
|
+
receipt: Ht,
|
|
337
|
+
cart: Gt,
|
|
338
|
+
building: $t,
|
|
339
|
+
car: qt,
|
|
340
|
+
airplane: Kt,
|
|
341
|
+
airplan: Xt,
|
|
342
|
+
"cloud-sun": _t,
|
|
343
|
+
"cloud-moon": Qt,
|
|
344
|
+
rain: Yt,
|
|
345
|
+
snow: Zt,
|
|
346
|
+
storm: Jt,
|
|
347
|
+
umbrella: oe,
|
|
348
|
+
fire: ne,
|
|
349
|
+
leaf: ce,
|
|
350
|
+
gift: te,
|
|
351
|
+
trophy: ee,
|
|
352
|
+
crown: re,
|
|
353
|
+
rocket: ie,
|
|
354
|
+
coffee: se,
|
|
355
|
+
"phone-call": ae,
|
|
356
|
+
"phone-missed": le,
|
|
357
|
+
chat: Ie,
|
|
358
|
+
comments: de,
|
|
359
|
+
megaphone: pe,
|
|
360
|
+
printer: ue,
|
|
361
|
+
monitor: ge,
|
|
362
|
+
laptop: he,
|
|
363
|
+
tablet: me,
|
|
364
|
+
smartphone: fe,
|
|
365
|
+
"qr-code": be,
|
|
366
|
+
barcode: we,
|
|
367
|
+
ticket: ye,
|
|
368
|
+
"id-card": ke,
|
|
369
|
+
briefcase: Ce,
|
|
370
|
+
book: ve,
|
|
371
|
+
graduation: Se,
|
|
372
|
+
brain: Ae,
|
|
373
|
+
target: Le,
|
|
374
|
+
layers: De,
|
|
375
|
+
box: Re,
|
|
376
|
+
cube: Be,
|
|
377
|
+
"toggle-left": Pe,
|
|
378
|
+
"toggle-right": Te,
|
|
379
|
+
drag: xe,
|
|
380
|
+
resize: Ue,
|
|
381
|
+
"align-left": Fe,
|
|
382
|
+
"align-center": Me,
|
|
383
|
+
"align-right": Oe,
|
|
384
|
+
"align-top": je,
|
|
385
|
+
"align-middle": ze,
|
|
386
|
+
"align-bottom": Ne,
|
|
387
|
+
bold: Ve,
|
|
388
|
+
italic: We,
|
|
389
|
+
underline: Ee,
|
|
390
|
+
strikethrough: He,
|
|
391
|
+
"list-ordered": Ge,
|
|
392
|
+
"list-unordered": $e,
|
|
393
|
+
keyboard: qe,
|
|
394
|
+
branch: Ke,
|
|
395
|
+
accessibility: Xe,
|
|
396
|
+
contrast: _e,
|
|
397
|
+
palette: Qe,
|
|
398
|
+
border: Ye,
|
|
399
|
+
shadow: Ze,
|
|
400
|
+
spinner: Je,
|
|
401
|
+
tooltip: or,
|
|
402
|
+
dropdown: nr,
|
|
403
|
+
select: cr,
|
|
404
|
+
radio: tr,
|
|
405
|
+
checkbox: er,
|
|
406
|
+
"switch-on": rr,
|
|
407
|
+
"switch-off": ir,
|
|
408
|
+
input: sr,
|
|
409
|
+
form: ar,
|
|
410
|
+
validation: lr,
|
|
411
|
+
"error-state": Ir,
|
|
412
|
+
"empty-state": dr,
|
|
413
|
+
"success-state": pr,
|
|
414
|
+
"hover-state": ur,
|
|
415
|
+
divider: gr,
|
|
416
|
+
responsive: hr,
|
|
417
|
+
"aspect-ratio": mr,
|
|
418
|
+
"expand-horizontal": fr,
|
|
419
|
+
"layout-stack": br,
|
|
420
|
+
"layer-lock": wr,
|
|
421
|
+
frame: yr,
|
|
422
|
+
interaction: kr,
|
|
423
|
+
animation: Cr,
|
|
424
|
+
scroll: vr,
|
|
425
|
+
anchor: Sr,
|
|
426
|
+
"design-token": Ar,
|
|
427
|
+
alignment: Lr,
|
|
428
|
+
preview: Dr,
|
|
429
|
+
inspect: Rr,
|
|
430
|
+
"object-sphere": Br,
|
|
431
|
+
"object-cylinder": Pr,
|
|
432
|
+
"object-cone": Tr,
|
|
433
|
+
"object-pyramid": xr,
|
|
434
|
+
"object-prism": Ur,
|
|
435
|
+
"object-cube-wire": Fr,
|
|
436
|
+
"object-ring": Mr,
|
|
437
|
+
"object-orbital": Or,
|
|
438
|
+
"abstract-waves": jr,
|
|
439
|
+
"abstract-spiral": zr,
|
|
440
|
+
"abstract-blob": Nr,
|
|
441
|
+
"abstract-orbit": Vr,
|
|
442
|
+
"abstract-mesh": Wr,
|
|
443
|
+
"abstract-fractal": Er,
|
|
444
|
+
"logo-github": Hr,
|
|
445
|
+
"logo-gitlab": Gr,
|
|
446
|
+
"logo-bitbucket": $r,
|
|
447
|
+
"logo-figma": qr,
|
|
448
|
+
"logo-slack": Kr,
|
|
449
|
+
"logo-discord": Xr,
|
|
450
|
+
"logo-linkedin": _r,
|
|
451
|
+
"logo-youtube": Qr,
|
|
452
|
+
"align-h-center-distribute": Yr,
|
|
453
|
+
"align-v-center-distribute": Zr,
|
|
454
|
+
"align-baseline-typography": Jr,
|
|
455
|
+
"align-stretch-box": oi,
|
|
456
|
+
"align-pack-start": ni,
|
|
457
|
+
"align-pack-end": ci,
|
|
458
|
+
"border-style-dashed": ti,
|
|
459
|
+
"border-style-dotted": ei,
|
|
460
|
+
"border-style-double": ri,
|
|
461
|
+
"border-radius-all": ii,
|
|
462
|
+
"border-radius-corners": si,
|
|
463
|
+
"corner-cut-style": ai,
|
|
464
|
+
"arrow-bend-up-right": li,
|
|
465
|
+
"arrow-bend-down-right": Ii,
|
|
466
|
+
"arrow-uturn-left": di,
|
|
467
|
+
"arrow-uturn-right": pi,
|
|
468
|
+
"arrow-swap-horizontal": ui,
|
|
469
|
+
"arrow-swap-vertical": gi,
|
|
470
|
+
"arrow-circle-cw": hi,
|
|
471
|
+
"arrow-circle-ccw": mi,
|
|
472
|
+
"design-pen-tool": fi,
|
|
473
|
+
"design-eyedropper": bi,
|
|
474
|
+
"design-grid-layout": wi,
|
|
475
|
+
"design-prototype-link": yi,
|
|
476
|
+
"design-magic-wand": ki,
|
|
477
|
+
"design-ruler-tool": Ci,
|
|
478
|
+
"design-vector-node": vi,
|
|
479
|
+
"type-uppercase": Si,
|
|
480
|
+
"type-lowercase": Ai,
|
|
481
|
+
"type-superscript": Li,
|
|
482
|
+
"type-subscript": Di,
|
|
483
|
+
"type-letter-spacing": Ri,
|
|
484
|
+
"type-line-height": Bi,
|
|
485
|
+
"type-text-direction": Pi,
|
|
486
|
+
"admin-panel": Ti,
|
|
487
|
+
role: xi,
|
|
488
|
+
"audit-log": Ui,
|
|
489
|
+
report: Fi,
|
|
490
|
+
kpi: Mi,
|
|
491
|
+
revenue: Oi,
|
|
492
|
+
conversion: ji,
|
|
493
|
+
forecast: zi,
|
|
494
|
+
budget: Ni,
|
|
495
|
+
subscription: Vi,
|
|
496
|
+
tax: Wi,
|
|
497
|
+
payout: Ei,
|
|
498
|
+
"api-key": Hi,
|
|
499
|
+
integration: Gi,
|
|
500
|
+
"support-ticket": $i,
|
|
501
|
+
maintenance: qi,
|
|
502
|
+
compliance: Ki,
|
|
503
|
+
risk: Xi,
|
|
504
|
+
monitoring: _i,
|
|
505
|
+
deployment: Qi,
|
|
506
|
+
"feature-flag": Yi,
|
|
507
|
+
crm: Zi,
|
|
508
|
+
workflow: Ji,
|
|
509
|
+
roadmap: os,
|
|
510
|
+
product: ns,
|
|
511
|
+
inventory: cs,
|
|
512
|
+
order: ts,
|
|
513
|
+
shipment: es,
|
|
514
|
+
payment: rs,
|
|
515
|
+
transaction: is,
|
|
516
|
+
refund: ss,
|
|
517
|
+
loyalty: as,
|
|
518
|
+
fintech: ls,
|
|
519
|
+
productivity: Is,
|
|
520
|
+
marketing: ds,
|
|
521
|
+
"semantic-ui": ps,
|
|
522
|
+
"semantic-admin": us,
|
|
523
|
+
"semantic-business": gs,
|
|
524
|
+
"link-2": hs,
|
|
525
|
+
command: ms
|
|
526
|
+
}, ks = Object.keys(b), Cs = b;
|
|
527
|
+
function vs(c) {
|
|
528
|
+
return b[c];
|
|
529
|
+
}
|
|
530
|
+
export {
|
|
531
|
+
Nr as AbstractBlobIcon,
|
|
532
|
+
Er as AbstractFractalIcon,
|
|
533
|
+
Wr as AbstractMeshIcon,
|
|
534
|
+
Vr as AbstractOrbitIcon,
|
|
535
|
+
zr as AbstractSpiralIcon,
|
|
536
|
+
jr as AbstractWavesIcon,
|
|
537
|
+
Xe as AccessibilityIcon,
|
|
538
|
+
pc as ActivityIcon,
|
|
539
|
+
Ti as AdminPanelIcon,
|
|
540
|
+
Xt as AirplanIcon,
|
|
541
|
+
Kt as AirplaneIcon,
|
|
542
|
+
oc as AlarmIcon,
|
|
543
|
+
Lc as AlertCircleIcon,
|
|
544
|
+
Ac as AlertTriangleIcon,
|
|
545
|
+
Jr as AlignBaselineTypographyIcon,
|
|
546
|
+
Ne as AlignBottomIcon,
|
|
547
|
+
Me as AlignCenterIcon,
|
|
548
|
+
Yr as AlignHCenterDistributeIcon,
|
|
549
|
+
Fe as AlignLeftIcon,
|
|
550
|
+
ze as AlignMiddleIcon,
|
|
551
|
+
ci as AlignPackEndIcon,
|
|
552
|
+
ni as AlignPackStartIcon,
|
|
553
|
+
Oe as AlignRightIcon,
|
|
554
|
+
oi as AlignStretchBoxIcon,
|
|
555
|
+
je as AlignTopIcon,
|
|
556
|
+
Zr as AlignVCenterDistributeIcon,
|
|
557
|
+
Lr as AlignmentIcon,
|
|
558
|
+
Sr as AnchorIcon,
|
|
559
|
+
Cr as AnimationIcon,
|
|
560
|
+
Hi as ApiKeyIcon,
|
|
561
|
+
Yo as AppGridIcon,
|
|
562
|
+
Wn as ArchiveIcon,
|
|
563
|
+
Ii as ArrowBendDownRightIcon,
|
|
564
|
+
li as ArrowBendUpRightIcon,
|
|
565
|
+
mi as ArrowCircleCcwIcon,
|
|
566
|
+
hi as ArrowCircleCwIcon,
|
|
567
|
+
Bo as ArrowDownIcon,
|
|
568
|
+
Mo as ArrowDownLeftIcon,
|
|
569
|
+
Fo as ArrowDownRightIcon,
|
|
570
|
+
Po as ArrowLeftIcon,
|
|
571
|
+
To as ArrowRightIcon,
|
|
572
|
+
ui as ArrowSwapHorizontalIcon,
|
|
573
|
+
gi as ArrowSwapVerticalIcon,
|
|
574
|
+
Ro as ArrowUpIcon,
|
|
575
|
+
Uo as ArrowUpLeftIcon,
|
|
576
|
+
xo as ArrowUpRightIcon,
|
|
577
|
+
di as ArrowUturnLeftIcon,
|
|
578
|
+
pi as ArrowUturnRightIcon,
|
|
579
|
+
mr as AspectRatioIcon,
|
|
580
|
+
Ui as AuditLogIcon,
|
|
581
|
+
we as BarcodeIcon,
|
|
582
|
+
ic as BatteryChargingIcon,
|
|
583
|
+
ec as BatteryFullIcon,
|
|
584
|
+
tc as BatteryIcon,
|
|
585
|
+
rc as BatteryLowIcon,
|
|
586
|
+
jn as BellIcon,
|
|
587
|
+
zn as BellOffIcon,
|
|
588
|
+
Ve as BoldIcon,
|
|
589
|
+
lt as BoltIcon,
|
|
590
|
+
ve as BookIcon,
|
|
591
|
+
fc as BookmarkIcon,
|
|
592
|
+
Ye as BorderIcon,
|
|
593
|
+
ii as BorderRadiusAllIcon,
|
|
594
|
+
si as BorderRadiusCornersIcon,
|
|
595
|
+
ti as BorderStyleDashedIcon,
|
|
596
|
+
ei as BorderStyleDottedIcon,
|
|
597
|
+
ri as BorderStyleDoubleIcon,
|
|
598
|
+
Re as BoxIcon,
|
|
599
|
+
Tt as BracketIcon,
|
|
600
|
+
Ae as BrainIcon,
|
|
601
|
+
Ke as BranchIcon,
|
|
602
|
+
Ce as BriefcaseIcon,
|
|
603
|
+
Ni as BudgetIcon,
|
|
604
|
+
Pt as BugIcon,
|
|
605
|
+
$t as BuildingIcon,
|
|
606
|
+
Zn as CalendarIcon,
|
|
607
|
+
xc as CameraIcon,
|
|
608
|
+
Uc as CameraOffIcon,
|
|
609
|
+
qt as CarIcon,
|
|
610
|
+
So as CaretDownIcon,
|
|
611
|
+
Lo as CaretLeftIcon,
|
|
612
|
+
Do as CaretRightIcon,
|
|
613
|
+
Ao as CaretUpIcon,
|
|
614
|
+
Gt as CartIcon,
|
|
615
|
+
Nt as ChartAreaIcon,
|
|
616
|
+
lc as ChartBarIcon,
|
|
617
|
+
Ic as ChartLineIcon,
|
|
618
|
+
dc as ChartPieIcon,
|
|
619
|
+
Ie as ChatIcon,
|
|
620
|
+
Rc as CheckCircleIcon,
|
|
621
|
+
so as CheckIcon,
|
|
622
|
+
Bt as CheckSquareIcon,
|
|
623
|
+
er as CheckboxIcon,
|
|
624
|
+
mo as ChevronDownIcon,
|
|
625
|
+
bo as ChevronLeftIcon,
|
|
626
|
+
wo as ChevronRightIcon,
|
|
627
|
+
fo as ChevronUpIcon,
|
|
628
|
+
yo as ChevronsDownIcon,
|
|
629
|
+
Co as ChevronsLeftIcon,
|
|
630
|
+
vo as ChevronsRightIcon,
|
|
631
|
+
ko as ChevronsUpIcon,
|
|
632
|
+
uo as CircleIcon,
|
|
633
|
+
yn as ClipboardCheckIcon,
|
|
634
|
+
wn as ClipboardIcon,
|
|
635
|
+
Jn as ClockIcon,
|
|
636
|
+
ct as CloudDownloadIcon,
|
|
637
|
+
ot as CloudIcon,
|
|
638
|
+
Qt as CloudMoonIcon,
|
|
639
|
+
_t as CloudSunIcon,
|
|
640
|
+
tt as CloudSyncIcon,
|
|
641
|
+
nt as CloudUploadIcon,
|
|
642
|
+
st as CodeIcon,
|
|
643
|
+
se as CoffeeIcon,
|
|
644
|
+
un as ColumnsAltIcon,
|
|
645
|
+
nn as ColumnsIcon,
|
|
646
|
+
ms as CommandIcon,
|
|
647
|
+
de as CommentsIcon,
|
|
648
|
+
qn as CompassIcon,
|
|
649
|
+
Ki as ComplianceIcon,
|
|
650
|
+
_e as ContrastIcon,
|
|
651
|
+
ji as ConversionIcon,
|
|
652
|
+
bn as CopyIcon,
|
|
653
|
+
ai as CornerCutStyleIcon,
|
|
654
|
+
xt as CpuIcon,
|
|
655
|
+
Wt as CreditCardIcon,
|
|
656
|
+
Zi as CrmIcon,
|
|
657
|
+
St as CropIcon,
|
|
658
|
+
re as CrownIcon,
|
|
659
|
+
Be as CubeIcon,
|
|
660
|
+
Cn as CutIcon,
|
|
661
|
+
Qo as DashboardIcon,
|
|
662
|
+
Mt as DatabaseAddIcon,
|
|
663
|
+
Ft as DatabaseIcon,
|
|
664
|
+
Ot as DatabaseRemoveIcon,
|
|
665
|
+
Qi as DeploymentIcon,
|
|
666
|
+
bi as DesignEyedropperIcon,
|
|
667
|
+
wi as DesignGridLayoutIcon,
|
|
668
|
+
ki as DesignMagicWandIcon,
|
|
669
|
+
fi as DesignPenToolIcon,
|
|
670
|
+
yi as DesignPrototypeLinkIcon,
|
|
671
|
+
Ci as DesignRulerToolIcon,
|
|
672
|
+
Ar as DesignTokenIcon,
|
|
673
|
+
vi as DesignVectorNodeIcon,
|
|
674
|
+
ho as DiamondIcon,
|
|
675
|
+
bt as DislikeIcon,
|
|
676
|
+
gr as DividerIcon,
|
|
677
|
+
po as DotIcon,
|
|
678
|
+
Zc as DownloadIcon,
|
|
679
|
+
xe as DragIcon,
|
|
680
|
+
nr as DropdownIcon,
|
|
681
|
+
An as EditIcon,
|
|
682
|
+
dr as EmptyStateIcon,
|
|
683
|
+
Ir as ErrorStateIcon,
|
|
684
|
+
fr as ExpandHorizontalIcon,
|
|
685
|
+
Oo as ExternalLinkIcon,
|
|
686
|
+
Pc as EyeIcon,
|
|
687
|
+
Tc as EyeOffIcon,
|
|
688
|
+
Yi as FeatureFlagIcon,
|
|
689
|
+
kt as FileCheckIcon,
|
|
690
|
+
fn as FileIcon,
|
|
691
|
+
yt as FileMinusIcon,
|
|
692
|
+
wt as FilePlusIcon,
|
|
693
|
+
Ct as FileXIcon,
|
|
694
|
+
Ho as FilterIcon,
|
|
695
|
+
ft as FingerprintIcon,
|
|
696
|
+
ls as FintechIcon,
|
|
697
|
+
ne as FireIcon,
|
|
698
|
+
wc as FlagIcon,
|
|
699
|
+
At as FlipHorizontalIcon,
|
|
700
|
+
Lt as FlipVerticalIcon,
|
|
701
|
+
hn as FolderIcon,
|
|
702
|
+
mn as FolderOpenIcon,
|
|
703
|
+
zi as ForecastIcon,
|
|
704
|
+
ar as FormIcon,
|
|
705
|
+
Ec as ForwardIcon,
|
|
706
|
+
yr as FrameIcon,
|
|
707
|
+
te as GiftIcon,
|
|
708
|
+
Yn as GlobeIcon,
|
|
709
|
+
Se as GraduationIcon,
|
|
710
|
+
jt as HardDriveIcon,
|
|
711
|
+
mc as HeartIcon,
|
|
712
|
+
Dc as HelpCircleIcon,
|
|
713
|
+
nc as HistoryIcon,
|
|
714
|
+
_o as HomeIcon,
|
|
715
|
+
ur as HoverStateIcon,
|
|
716
|
+
L as Icon,
|
|
717
|
+
f as IconContext,
|
|
718
|
+
ys as IconProvider,
|
|
719
|
+
Cs as Icons,
|
|
720
|
+
ke as IdCardIcon,
|
|
721
|
+
Oc as ImageIcon,
|
|
722
|
+
Vn as InboxIcon,
|
|
723
|
+
Sc as InfoIcon,
|
|
724
|
+
sr as InputIcon,
|
|
725
|
+
Rr as InspectIcon,
|
|
726
|
+
Gi as IntegrationIcon,
|
|
727
|
+
kr as InteractionIcon,
|
|
728
|
+
cs as InventoryIcon,
|
|
729
|
+
Et as InvoiceIcon,
|
|
730
|
+
We as ItalicIcon,
|
|
731
|
+
mt as KeyIcon,
|
|
732
|
+
qe as KeyboardIcon,
|
|
733
|
+
Mi as KpiIcon,
|
|
734
|
+
he as LaptopIcon,
|
|
735
|
+
wr as LayerLockIcon,
|
|
736
|
+
De as LayersIcon,
|
|
737
|
+
Zo as LayoutIcon,
|
|
738
|
+
Jo as LayoutListIcon,
|
|
739
|
+
on as LayoutSidebarIcon,
|
|
740
|
+
br as LayoutStackIcon,
|
|
741
|
+
ce as LeafIcon,
|
|
742
|
+
hs as Link2Icon,
|
|
743
|
+
Dn as LinkIcon,
|
|
744
|
+
Ge as ListOrderedIcon,
|
|
745
|
+
$e as ListUnorderedIcon,
|
|
746
|
+
In as ListViewIcon,
|
|
747
|
+
$n as LocationArrowIcon,
|
|
748
|
+
kc as LockIcon,
|
|
749
|
+
gt as LoginIcon,
|
|
750
|
+
$r as LogoBitbucketIcon,
|
|
751
|
+
Xr as LogoDiscordIcon,
|
|
752
|
+
qr as LogoFigmaIcon,
|
|
753
|
+
Hr as LogoGithubIcon,
|
|
754
|
+
Gr as LogoGitlabIcon,
|
|
755
|
+
_r as LogoLinkedinIcon,
|
|
756
|
+
Kr as LogoSlackIcon,
|
|
757
|
+
Qr as LogoYoutubeIcon,
|
|
758
|
+
ht as LogoutIcon,
|
|
759
|
+
as as LoyaltyIcon,
|
|
760
|
+
Nn as MailIcon,
|
|
761
|
+
qi as MaintenanceIcon,
|
|
762
|
+
Gn as MapIcon,
|
|
763
|
+
Hn as MapPinIcon,
|
|
764
|
+
ds as MarketingIcon,
|
|
765
|
+
Dt as MaximizeIcon,
|
|
766
|
+
pe as MegaphoneIcon,
|
|
767
|
+
jo as MenuIcon,
|
|
768
|
+
Qc as MicIcon,
|
|
769
|
+
Yc as MicOffIcon,
|
|
770
|
+
Rt as MinimizeIcon,
|
|
771
|
+
Io as MinusIcon,
|
|
772
|
+
ge as MonitorIcon,
|
|
773
|
+
_i as MonitoringIcon,
|
|
774
|
+
dt as MoonIcon,
|
|
775
|
+
zo as MoreHorizontalIcon,
|
|
776
|
+
No as MoreVerticalIcon,
|
|
777
|
+
Xn as NavIcon,
|
|
778
|
+
Kn as NavigationIcon,
|
|
779
|
+
_n as NavigationMenuIcon,
|
|
780
|
+
zt as NetworkIcon,
|
|
781
|
+
Tr as ObjectConeIcon,
|
|
782
|
+
Fr as ObjectCubeWireIcon,
|
|
783
|
+
Pr as ObjectCylinderIcon,
|
|
784
|
+
Or as ObjectOrbitalIcon,
|
|
785
|
+
Ur as ObjectPrismIcon,
|
|
786
|
+
xr as ObjectPyramidIcon,
|
|
787
|
+
Mr as ObjectRingIcon,
|
|
788
|
+
Br as ObjectSphereIcon,
|
|
789
|
+
ts as OrderIcon,
|
|
790
|
+
Qe as PaletteIcon,
|
|
791
|
+
ln as PanelBottomIcon,
|
|
792
|
+
rn as PanelLeftIcon,
|
|
793
|
+
sn as PanelRightIcon,
|
|
794
|
+
an as PanelTopIcon,
|
|
795
|
+
kn as PasteIcon,
|
|
796
|
+
Vc as PauseCircleIcon,
|
|
797
|
+
Nc as PauseIcon,
|
|
798
|
+
rs as PaymentIcon,
|
|
799
|
+
Ei as PayoutIcon,
|
|
800
|
+
Ln as PencilIcon,
|
|
801
|
+
ae as PhoneCallIcon,
|
|
802
|
+
En as PhoneIcon,
|
|
803
|
+
le as PhoneMissedIcon,
|
|
804
|
+
zc as PlayCircleIcon,
|
|
805
|
+
jc as PlayIcon,
|
|
806
|
+
lo as PlusIcon,
|
|
807
|
+
sc as PowerIcon,
|
|
808
|
+
ac as PowerOffIcon,
|
|
809
|
+
Dr as PreviewIcon,
|
|
810
|
+
ue as PrinterIcon,
|
|
811
|
+
ns as ProductIcon,
|
|
812
|
+
Is as ProductivityIcon,
|
|
813
|
+
be as QrCodeIcon,
|
|
814
|
+
tr as RadioIcon,
|
|
815
|
+
Yt as RainIcon,
|
|
816
|
+
Ht as ReceiptIcon,
|
|
817
|
+
rt as RefreshCcwIcon,
|
|
818
|
+
et as RefreshCwIcon,
|
|
819
|
+
ss as RefundIcon,
|
|
820
|
+
Fi as ReportIcon,
|
|
821
|
+
Ue as ResizeIcon,
|
|
822
|
+
hr as ResponsiveIcon,
|
|
823
|
+
Oi as RevenueIcon,
|
|
824
|
+
Hc as RewindIcon,
|
|
825
|
+
Xi as RiskIcon,
|
|
826
|
+
os as RoadmapIcon,
|
|
827
|
+
ie as RocketIcon,
|
|
828
|
+
xi as RoleIcon,
|
|
829
|
+
Qn as RouteIcon,
|
|
830
|
+
gn as RowIcon,
|
|
831
|
+
cn as RowsIcon,
|
|
832
|
+
vn as SaveIcon,
|
|
833
|
+
vr as ScrollIcon,
|
|
834
|
+
Vo as SearchIcon,
|
|
835
|
+
Eo as SearchMinusIcon,
|
|
836
|
+
Wo as SearchPlusIcon,
|
|
837
|
+
cr as SelectIcon,
|
|
838
|
+
us as SemanticAdminIcon,
|
|
839
|
+
gs as SemanticBusinessIcon,
|
|
840
|
+
ps as SemanticUiIcon,
|
|
841
|
+
Ut as ServerIcon,
|
|
842
|
+
Xo as SettingsIcon,
|
|
843
|
+
Ze as ShadowIcon,
|
|
844
|
+
Pn as Share2Icon,
|
|
845
|
+
Bn as ShareIcon,
|
|
846
|
+
vc as ShieldIcon,
|
|
847
|
+
es as ShipmentIcon,
|
|
848
|
+
tn as SidebarLeftIcon,
|
|
849
|
+
en as SidebarRightIcon,
|
|
850
|
+
cc as SignalIcon,
|
|
851
|
+
Gc as SkipNextIcon,
|
|
852
|
+
$c as SkipPreviousIcon,
|
|
853
|
+
Ko as SlidersIcon,
|
|
854
|
+
fe as SmartphoneIcon,
|
|
855
|
+
Zt as SnowIcon,
|
|
856
|
+
$o as SortAscIcon,
|
|
857
|
+
qo as SortDescIcon,
|
|
858
|
+
Go as SortIcon,
|
|
859
|
+
at as SparklesIcon,
|
|
860
|
+
Je as SpinnerIcon,
|
|
861
|
+
go as SquareIcon,
|
|
862
|
+
hc as StarIcon,
|
|
863
|
+
Wc as StopCircleIcon,
|
|
864
|
+
vt as StopIcon,
|
|
865
|
+
Jt as StormIcon,
|
|
866
|
+
He as StrikethroughIcon,
|
|
867
|
+
Vi as SubscriptionIcon,
|
|
868
|
+
pr as SuccessStateIcon,
|
|
869
|
+
It as SunIcon,
|
|
870
|
+
$i as SupportTicketIcon,
|
|
871
|
+
ir as SwitchOffIcon,
|
|
872
|
+
rr as SwitchOnIcon,
|
|
873
|
+
pn as TableAltIcon,
|
|
874
|
+
dn as TableIcon,
|
|
875
|
+
me as TabletIcon,
|
|
876
|
+
bc as TagIcon,
|
|
877
|
+
yc as TagsIcon,
|
|
878
|
+
Le as TargetIcon,
|
|
879
|
+
Wi as TaxIcon,
|
|
880
|
+
it as TerminalIcon,
|
|
881
|
+
ye as TicketIcon,
|
|
882
|
+
Pe as ToggleLeftIcon,
|
|
883
|
+
Te as ToggleRightIcon,
|
|
884
|
+
or as TooltipIcon,
|
|
885
|
+
is as TransactionIcon,
|
|
886
|
+
Sn as TrashIcon,
|
|
887
|
+
gc as TrendingDownIcon,
|
|
888
|
+
uc as TrendingUpIcon,
|
|
889
|
+
ee as TrophyIcon,
|
|
890
|
+
Ri as TypeLetterSpacingIcon,
|
|
891
|
+
Bi as TypeLineHeightIcon,
|
|
892
|
+
Ai as TypeLowercaseIcon,
|
|
893
|
+
Di as TypeSubscriptIcon,
|
|
894
|
+
Li as TypeSuperscriptIcon,
|
|
895
|
+
Pi as TypeTextDirectionIcon,
|
|
896
|
+
Si as TypeUppercaseIcon,
|
|
897
|
+
oe as UmbrellaIcon,
|
|
898
|
+
Ee as UnderlineIcon,
|
|
899
|
+
Rn as UnlinkIcon,
|
|
900
|
+
Cc as UnlockIcon,
|
|
901
|
+
Jc as UploadIcon,
|
|
902
|
+
Mn as UserCheckIcon,
|
|
903
|
+
Tn as UserIcon,
|
|
904
|
+
Un as UserPlusIcon,
|
|
905
|
+
Fn as UserRemoveIcon,
|
|
906
|
+
On as UserXIcon,
|
|
907
|
+
xn as UsersIcon,
|
|
908
|
+
lr as ValidationIcon,
|
|
909
|
+
Fc as VideoIcon,
|
|
910
|
+
Mc as VideoOffIcon,
|
|
911
|
+
Xc as VolumeDownIcon,
|
|
912
|
+
qc as VolumeIcon,
|
|
913
|
+
_c as VolumeMuteIcon,
|
|
914
|
+
Kc as VolumeUpIcon,
|
|
915
|
+
Vt as WalletIcon,
|
|
916
|
+
pt as WifiIcon,
|
|
917
|
+
ut as WifiOffIcon,
|
|
918
|
+
Ji as WorkflowIcon,
|
|
919
|
+
Bc as XCircleIcon,
|
|
920
|
+
ao as XIcon,
|
|
921
|
+
o as createIcon,
|
|
922
|
+
Y as defaultIconContext,
|
|
923
|
+
vs as getIconComponent,
|
|
924
|
+
ks as iconNames,
|
|
925
|
+
b as icons,
|
|
926
|
+
Z as useIconContext
|
|
927
|
+
};
|