@storybook/core
Version:
Storybook framework-agnostic API
1,566 lines (1,560 loc) • 375 kB
JavaScript
"use strict";
var O0 = Object.create;
var Ee = Object.defineProperty;
var B0 = Object.getOwnPropertyDescriptor;
var D0 = Object.getOwnPropertyNames;
var V0 = Object.getPrototypeOf, N0 = Object.prototype.hasOwnProperty;
var o = (e, t) => Ee(e, "name", { value: t, configurable: !0 });
var te = (e, t) => () => (t || e((t = { exports: {} }).exports, t), t.exports), O = (e, t) => {
for (var r in t)
Ee(e, r, { get: t[r], enumerable: !0 });
}, Qt = (e, t, r, n) => {
if (t && typeof t == "object" || typeof t == "function")
for (let l of D0(t))
!N0.call(e, l) && l !== r && Ee(e, l, { get: () => t[l], enumerable: !(n = B0(t, l)) || n.enumerable });
return e;
};
var b = (e, t, r) => (r = e != null ? O0(V0(e)) : {}, Qt(
// If the importer is in node compatibility mode or this is not an ESM
// file that has been converted to a CommonJS file using a Babel-
// compatible transform (i.e. "__esModule" has not been set), then set
// "default" to the CommonJS "module.exports" for node compatibility.
t || !e || !e.__esModule ? Ee(r, "default", { value: e, enumerable: !0 }) : r,
e
)), k0 = (e) => Qt(Ee({}, "__esModule", { value: !0 }), e);
// ../node_modules/@storybook/global/dist/index.js
var q = te((Ni, Cr) => {
"use strict";
var ft = Object.defineProperty, j0 = Object.getOwnPropertyDescriptor, F0 = Object.getOwnPropertyNames, G0 = Object.prototype.hasOwnProperty,
$0 = /* @__PURE__ */ o((e, t) => {
for (var r in t)
ft(e, r, { get: t[r], enumerable: !0 });
}, "__export"), W0 = /* @__PURE__ */ o((e, t, r, n) => {
if (t && typeof t == "object" || typeof t == "function")
for (let l of F0(t))
!G0.call(e, l) && l !== r && ft(e, l, { get: /* @__PURE__ */ o(() => t[l], "get"), enumerable: !(n = j0(t, l)) || n.enumerable });
return e;
}, "__copyProps"), K0 = /* @__PURE__ */ o((e) => W0(ft({}, "__esModule", { value: !0 }), e), "__toCommonJS"), br = {};
$0(br, {
global: /* @__PURE__ */ o(() => q0, "global")
});
Cr.exports = K0(br);
var q0 = (() => {
let e;
return typeof window < "u" ? e = window : typeof globalThis < "u" ? e = globalThis : typeof global < "u" ? e = global : typeof self < "u" ?
e = self : e = {}, e;
})();
});
// ../node_modules/ts-dedent/dist/index.js
var Pe = te((_e) => {
"use strict";
Object.defineProperty(_e, "__esModule", { value: !0 });
_e.dedent = void 0;
function Br(e) {
for (var t = [], r = 1; r < arguments.length; r++)
t[r - 1] = arguments[r];
var n = Array.from(typeof e == "string" ? [e] : e);
n[n.length - 1] = n[n.length - 1].replace(/\r?\n([\t ]*)$/, "");
var l = n.reduce(function(s, d) {
var h = d.match(/\n([\t ]+|(?!\s).)/g);
return h ? s.concat(h.map(function(p) {
var v, m;
return (m = (v = p.match(/[\t ]/g)) === null || v === void 0 ? void 0 : v.length) !== null && m !== void 0 ? m : 0;
})) : s;
}, []);
if (l.length) {
var i = new RegExp(`
[ ]{` + Math.min.apply(Math, l) + "}", "g");
n = n.map(function(s) {
return s.replace(i, `
`);
});
}
n[0] = n[0].replace(/^\r?\n/, "");
var c = n[0];
return t.forEach(function(s, d) {
var h = c.match(/(?:^|\n)( *)$/), p = h ? h[1] : "", v = s;
typeof s == "string" && s.includes(`
`) && (v = String(s).split(`
`).map(function(m, g) {
return g === 0 ? m : "" + p + m;
}).join(`
`)), c += v + n[d + 1];
}), c;
}
o(Br, "dedent");
_e.dedent = Br;
_e.default = Br;
});
// ../node_modules/map-or-similar/src/similar.js
var Vr = te((rs, Dr) => {
function ne() {
return this.list = [], this.lastItem = void 0, this.size = 0, this;
}
o(ne, "Similar");
ne.prototype.get = function(e) {
var t;
if (this.lastItem && this.isEqual(this.lastItem.key, e))
return this.lastItem.val;
if (t = this.indexOf(e), t >= 0)
return this.lastItem = this.list[t], this.list[t].val;
};
ne.prototype.set = function(e, t) {
var r;
return this.lastItem && this.isEqual(this.lastItem.key, e) ? (this.lastItem.val = t, this) : (r = this.indexOf(e), r >= 0 ? (this.lastItem =
this.list[r], this.list[r].val = t, this) : (this.lastItem = { key: e, val: t }, this.list.push(this.lastItem), this.size++, this));
};
ne.prototype.delete = function(e) {
var t;
if (this.lastItem && this.isEqual(this.lastItem.key, e) && (this.lastItem = void 0), t = this.indexOf(e), t >= 0)
return this.size--, this.list.splice(t, 1)[0];
};
ne.prototype.has = function(e) {
var t;
return this.lastItem && this.isEqual(this.lastItem.key, e) ? !0 : (t = this.indexOf(e), t >= 0 ? (this.lastItem = this.list[t], !0) : !1);
};
ne.prototype.forEach = function(e, t) {
var r;
for (r = 0; r < this.size; r++)
e.call(t || this, this.list[r].val, this.list[r].key, this);
};
ne.prototype.indexOf = function(e) {
var t;
for (t = 0; t < this.size; t++)
if (this.isEqual(this.list[t].key, e))
return t;
return -1;
};
ne.prototype.isEqual = function(e, t) {
return e === t || e !== e && t !== t;
};
Dr.exports = ne;
});
// ../node_modules/map-or-similar/src/map-or-similar.js
var kr = te((as, Nr) => {
Nr.exports = function(e) {
if (typeof Map != "function" || e) {
var t = Vr();
return new t();
} else
return /* @__PURE__ */ new Map();
};
});
// ../node_modules/memoizerific/src/memoizerific.js
var Ge = te((os, jr) => {
var Ur = kr();
jr.exports = function(e) {
var t = new Ur(process.env.FORCE_SIMILAR_INSTEAD_OF_MAP === "true"), r = [];
return function(n) {
var l = /* @__PURE__ */ o(function() {
var i = t, c, s, d = arguments.length - 1, h = Array(d + 1), p = !0, v;
if ((l.numArgs || l.numArgs === 0) && l.numArgs !== d + 1)
throw new Error("Memoizerific functions should always be called with the same number of arguments");
for (v = 0; v < d; v++) {
if (h[v] = {
cacheItem: i,
arg: arguments[v]
}, i.has(arguments[v])) {
i = i.get(arguments[v]);
continue;
}
p = !1, c = new Ur(process.env.FORCE_SIMILAR_INSTEAD_OF_MAP === "true"), i.set(arguments[v], c), i = c;
}
return p && (i.has(arguments[d]) ? s = i.get(arguments[d]) : p = !1), p || (s = n.apply(null, arguments), i.set(arguments[d], s)), e >
0 && (h[d] = {
cacheItem: i,
arg: arguments[d]
}, p ? tn(r, h) : r.push(h), r.length > e && rn(r.shift())), l.wasMemoized = p, l.numArgs = d + 1, s;
}, "memoizerific");
return l.limit = e, l.wasMemoized = !1, l.cache = t, l.lru = r, l;
};
};
function tn(e, t) {
var r = e.length, n = t.length, l, i, c;
for (i = 0; i < r; i++) {
for (l = !0, c = 0; c < n; c++)
if (!nn(e[i][c].arg, t[c].arg)) {
l = !1;
break;
}
if (l)
break;
}
e.push(e.splice(i, 1)[0]);
}
o(tn, "moveToMostRecentLru");
function rn(e) {
var t = e.length, r = e[t - 1], n, l;
for (r.cacheItem.delete(r.arg), l = t - 2; l >= 0 && (r = e[l], n = r.cacheItem.get(r.arg), !n || !n.size); l--)
r.cacheItem.delete(r.arg);
}
o(rn, "removeCachedResult");
function nn(e, t) {
return e === t || e !== e && t !== t;
}
o(nn, "isEqual");
});
// ../node_modules/@storybook/icons/dist/index.js
var w0 = te((u) => {
"use strict";
var On = require("react");
function Bn(e) {
if (e && e.__esModule) return e;
var t = /* @__PURE__ */ Object.create(null);
return e && Object.keys(e).forEach(function(r) {
if (r !== "default") {
var n = Object.getOwnPropertyDescriptor(e, r);
Object.defineProperty(t, r, n.get ? n : {
enumerable: !0,
get: /* @__PURE__ */ o(function() {
return e[r];
}, "get")
});
}
}), t.default = e, Object.freeze(t);
}
o(Bn, "_interopNamespace");
var a = /* @__PURE__ */ Bn(On), Dn = [
{
name: "Images",
icons: [
"PhotoIcon",
"ComponentIcon",
"GridIcon",
"OutlineIcon",
"PhotoDragIcon",
"PhotoStabilizeIcon",
"CameraStabilizeIcon",
"GridAltIcon",
"SearchIcon",
"ZoomIcon",
"ZoomOutIcon",
"ZoomResetIcon",
"EyeIcon",
"EyeCloseIcon",
"LightningIcon",
"LightningOffIcon",
"MirrorIcon",
"GrowIcon",
"ContrastIcon",
"SwitchAltIcon",
"ContrastIgnoredIcon",
"PaintBrushIcon",
"RulerIcon",
"CameraIcon",
"VideoIcon",
"SpeakerIcon",
"PlayIcon",
"PlayBackIcon",
"PlayNextIcon",
"RewindIcon",
"FastForwardIcon",
"StopAltIcon",
"SunIcon",
"MoonIcon",
"StopAltHollowIcon",
"PlayHollowIcon",
"PlayAllHollowIcon",
"StopIcon",
"SideBySideIcon",
"StackedIcon"
]
},
{
name: "Documents",
icons: [
"BookIcon",
"DocumentIcon",
"CopyIcon",
"CategoryIcon",
"FolderIcon",
"PrintIcon",
"GraphLineIcon",
"CalendarIcon",
"GraphBarIcon",
"AlignLeftIcon",
"AlignRightIcon",
"FilterIcon",
"DocChartIcon",
"DocListIcon",
"DragIcon",
"MenuIcon"
]
},
{
name: "Editing",
icons: [
"MarkupIcon",
"BoldIcon",
"ItalicIcon",
"PaperClipIcon",
"ListOrderedIcon",
"ListUnorderedIcon",
"ParagraphIcon",
"MarkdownIcon"
]
},
{
name: "Git",
icons: [
"RepoIcon",
"CommitIcon",
"BranchIcon",
"PullRequestIcon",
"MergeIcon"
]
},
{
name: "OS",
icons: [
"AppleIcon",
"LinuxIcon",
"UbuntuIcon",
"WindowsIcon",
"ChromeIcon"
]
},
{
name: "Logos",
icons: [
"StorybookIcon",
"AzureDevOpsIcon",
"BitbucketIcon",
"ChromaticIcon",
"ComponentDrivenIcon",
"DiscordIcon",
"FacebookIcon",
"FigmaIcon",
"GDriveIcon",
"GithubIcon",
"GitlabIcon",
"GoogleIcon",
"GraphqlIcon",
"MediumIcon",
"ReduxIcon",
"TwitterIcon",
"YoutubeIcon",
"VSCodeIcon",
"LinkedinIcon",
"XIcon"
]
},
{
name: "Devices",
icons: [
"BrowserIcon",
"TabletIcon",
"MobileIcon",
"WatchIcon",
"SidebarIcon",
"SidebarAltIcon",
"SidebarAltToggleIcon",
"SidebarToggleIcon",
"BottomBarIcon",
"BottomBarToggleIcon",
"CPUIcon",
"DatabaseIcon",
"MemoryIcon",
"StructureIcon",
"BoxIcon",
"PowerIcon"
]
},
{
name: "CRUD",
icons: [
"EditIcon",
"CogIcon",
"NutIcon",
"WrenchIcon",
"EllipsisIcon",
"WandIcon",
"SweepIcon",
"CheckIcon",
"FormIcon",
"BatchDenyIcon",
"BatchAcceptIcon",
"ControlsIcon",
"PlusIcon",
"CloseAltIcon",
"CrossIcon",
"TrashIcon",
"PinAltIcon",
"UnpinIcon",
"AddIcon",
"SubtractIcon",
"CloseIcon",
"DeleteIcon",
"PassedIcon",
"ChangedIcon",
"FailedIcon",
"ClearIcon",
"CommentIcon",
"CommentAddIcon",
"RequestChangeIcon",
"CommentsIcon",
"ChatIcon",
"LockIcon",
"UnlockIcon",
"KeyIcon",
"OutboxIcon",
"CreditIcon",
"ButtonIcon",
"TypeIcon",
"PointerDefaultIcon",
"PointerHandIcon",
"CommandIcon",
"SaveIcon"
]
},
{
name: "Communicate",
icons: [
"InfoIcon",
"QuestionIcon",
"SupportIcon",
"AlertIcon",
"AlertAltIcon",
"EmailIcon",
"PhoneIcon",
"LinkIcon",
"LinkBrokenIcon",
"BellIcon",
"RSSIcon",
"ShareAltIcon",
"ShareIcon",
"JumpToIcon",
"CircleHollowIcon",
"CircleIcon",
"BookmarkHollowIcon",
"BookmarkIcon",
"DiamondIcon",
"HeartHollowIcon",
"HeartIcon",
"StarHollowIcon",
"StarIcon",
"CertificateIcon",
"VerifiedIcon",
"ThumbsUpIcon",
"ShieldIcon",
"BasketIcon",
"BeakerIcon",
"HourglassIcon",
"FlagIcon",
"CloudHollowIcon",
"CloudIcon",
"StickerIcon",
"StatusFailIcon",
"StatusIcon",
"StatusWarnIcon",
"StatusPassIcon"
]
},
{
name: "Wayfinding",
icons: [
"ChevronUpIcon",
"ChevronDownIcon",
"ChevronLeftIcon",
"ChevronRightIcon",
"ChevronSmallUpIcon",
"ChevronSmallDownIcon",
"ChevronSmallLeftIcon",
"ChevronSmallRightIcon",
"ArrowUpIcon",
"ArrowDownIcon",
"ArrowLeftIcon",
"ArrowRightIcon",
"ArrowTopLeftIcon",
"ArrowTopRightIcon",
"ArrowBottomLeftIcon",
"ArrowBottomRightIcon",
"ArrowSolidUpIcon",
"ArrowSolidDownIcon",
"ArrowSolidLeftIcon",
"ArrowSolidRightIcon",
"ExpandAltIcon",
"CollapseIcon",
"ExpandIcon",
"UnfoldIcon",
"TransferIcon",
"RedirectIcon",
"UndoIcon",
"ReplyIcon",
"SyncIcon",
"UploadIcon",
"DownloadIcon",
"BackIcon",
"ProceedIcon",
"RefreshIcon",
"GlobeIcon",
"CompassIcon",
"LocationIcon",
"PinIcon",
"TimeIcon",
"DashboardIcon",
"TimerIcon",
"HomeIcon",
"AdminIcon",
"DirectionIcon"
]
},
{
name: "People",
icons: [
"UserIcon",
"UserAltIcon",
"UserAddIcon",
"UsersIcon",
"ProfileIcon",
"FaceHappyIcon",
"FaceNeutralIcon",
"FaceSadIcon",
"AccessibilityIcon",
"AccessibilityAltIcon",
"AccessibilityIgnoredIcon"
]
}
], Vn = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M6.25 4.254a1.25 1.25 0 11-2.5 0 1.25 1.25 0 012.5 0zm-.5 0a.75.75 0 11-1.5 0 .75.75 0 011.5 0z",
fill: e
}
),
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M13 1.504v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11a.5.5 0 01.5-.5h11a.5.5 0 01.5.5zM2 9.297V2.004h10v5.293L9.854 5.15a.5.5 0 00\
-.708 0L6.5 7.797 5.354 6.65a.5.5 0 00-.708 0L2 9.297zM9.5 6.21l2.5 2.5v3.293H2V10.71l3-3 3.146 3.146a.5.5 0 00.708-.707L7.207 8.504 9.5 6.2\
1z",
fill: e
}
)
)), Nn = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M3.5 1.004a2.5 2.5 0 00-2.5 2.5v7a2.5 2.5 0 002.5 2.5h7a2.5 2.5 0 002.5-2.5v-7a2.5 2.5 0 00-2.5-2.5h-7zm8.5 5.5H7.5v-4.5h3a1.5 1\
.5 0 011.5 1.5v3zm0 1v3a1.5 1.5 0 01-1.5 1.5h-3v-4.5H12zm-5.5 4.5v-4.5H2v3a1.5 1.5 0 001.5 1.5h3zM2 6.504h4.5v-4.5h-3a1.5 1.5 0 00-1.5 1.5v3\
z",
fill: e
}
)
)), kn = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M1 1.504a.5.5 0 01.5-.5H6a.5.5 0 01.5.5v4.5a.5.5 0 01-.5.5H1.5a.5.5 0 01-.5-.5v-4.5zm1 4v-3.5h3.5v3.5H2zM7.5 1.504a.5.5 0 01.5-.\
5h4.5a.5.5 0 01.5.5v4.5a.5.5 0 01-.5.5H8a.5.5 0 01-.5-.5v-4.5zm1 4v-3.5H12v3.5H8.5zM1.5 7.504a.5.5 0 00-.5.5v4.5a.5.5 0 00.5.5H6a.5.5 0 00.5\
-.5v-4.5a.5.5 0 00-.5-.5H1.5zm.5 1v3.5h3.5v-3.5H2zM7.5 8.004a.5.5 0 01.5-.5h4.5a.5.5 0 01.5.5v4.5a.5.5 0 01-.5.5H8a.5.5 0 01-.5-.5v-4.5zm1 4\
v-3.5H12v3.5H8.5z",
fill: e
}
)
)), Un = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
d: "M2 2.004v2H1v-2.5a.5.5 0 01.5-.5H4v1H2zM1 9.004v-4h1v4H1zM1 10.004v2.5a.5.5 0 00.5.5H4v-1H2v-2H1zM10 13.004h2.5a.5.5 0 00.5-.5v-\
2.5h-1v2h-2v1zM12 4.004h1v-2.5a.5.5 0 00-.5-.5H10v1h2v2zM9 12.004v1H5v-1h4zM9 1.004v1H5v-1h4zM13 9.004h-1v-4h1v4zM7 8.004a1 1 0 100-2 1 1 0 \
000 2z",
fill: e
}
)
)), jn = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 15",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M8.25 3.254a1.25 1.25 0 11-2.5 0 1.25 1.25 0 012.5 0zm-.5 0a.75.75 0 11-1.5 0 .75.75 0 011.5 0z",
fill: e
}
),
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M14 7.003v-6.5a.5.5 0 00-.5-.5h-10a.5.5 0 00-.5.5v2.5H.5a.5.5 0 00-.5.5v2.5h1v-2h2v6.5a.5.5 0 00.5.5H10v2H8v1h2.5a.5.5 0 00.5-.5\
v-2.5h2.5a.5.5 0 00.5-.5v-3.5zm-10-6v5.794L5.646 5.15a.5.5 0 01.708 0L7.5 6.297l2.646-2.647a.5.5 0 01.708 0L13 5.797V1.004H4zm9 6.208l-2.5-2\
.5-2.293 2.293L9.354 8.15a.5.5 0 11-.708.707L6 6.211l-2 2v1.793h9V7.21z",
fill: e
}
),
/* @__PURE__ */ a.createElement(
"path",
{
d: "M0 10.004v-3h1v3H0zM0 13.504v-2.5h1v2h2v1H.5a.5.5 0 01-.5-.5zM7 14.004H4v-1h3v1z",
fill: e
}
)
)), Fn = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
d: "M2.5 1H4V0H2.5A2.5 2.5 0 000 2.5V4h1V2.5A1.5 1.5 0 012.5 1z",
fill: e
}
),
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M7.25 5.25a1.25 1.25 0 11-2.5 0 1.25 1.25 0 012.5 0zm-.5 0a.75.75 0 11-1.5 0 .75.75 0 011.5 0z",
fill: e
}
),
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M12 2.5v9a.5.5 0 01-.5.5h-9a.5.5 0 01-.5-.5v-9a.5.5 0 01.5-.5h9a.5.5 0 01.5.5zM3 8.793V3h8v3.793L9.854 5.646a.5.5 0 00-.708 0L6.\
5 8.293 5.354 7.146a.5.5 0 00-.708 0L3 8.793zm6.5-2.086l1.5 1.5V11H3v-.793l2-2 2.146 2.147a.5.5 0 00.708-.708L7.207 9 9.5 6.707z",
fill: e
}
),
/* @__PURE__ */ a.createElement(
"path",
{
d: "M10 1h1.5A1.5 1.5 0 0113 2.5V4h1V2.5A2.5 2.5 0 0011.5 0H10v1zM2.5 13H4v1H2.5A2.5 2.5 0 010 11.5V10h1v1.5A1.5 1.5 0 002.5 13zM10 \
13h1.5a1.5 1.5 0 001.5-1.5V10h1v1.5a2.5 2.5 0 01-2.5 2.5H10v-1z",
fill: e
}
)
)), Gn = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement("g", { clipPath: "url(#prefix__clip0_2484_400)" }, /* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M2.5 1A1.5 1.5 0 001 2.5v1a.5.5 0 01-1 0v-1A2.5 2.5 0 012.5 0h1a.5.5 0 010 1h-1zm3.352 1.223A.5.5 0 016.268 2h1.464a.5.5 0 01.41\
6.223L9.333 4H11.5a.5.5 0 01.5.5v5a.5.5 0 01-.5.5h-9a.5.5 0 01-.5-.5v-5a.5.5 0 01.5-.5h2.167l1.185-1.777zM11.5 1A1.5 1.5 0 0113 2.5v1a.5.5 0\
001 0v-1A2.5 2.5 0 0011.5 0h-1a.5.5 0 000 1h1zm-9 12A1.5 1.5 0 011 11.5v-1a.5.5 0 00-1 0v1A2.5 2.5 0 002.5 14h1a.5.5 0 000-1h-1zm9 0a1.5 1.\
5 0 001.5-1.5v-1a.5.5 0 011 0v1a2.5 2.5 0 01-2.5 2.5h-1a.5.5 0 010-1h1zM8 7a1 1 0 11-2 0 1 1 0 012 0zm1 0a2 2 0 11-4 0 2 2 0 014 0z",
fill: e
}
)),
/* @__PURE__ */ a.createElement("defs", null, /* @__PURE__ */ a.createElement("clipPath", { id: "prefix__clip0_2484_400" }, /* @__PURE__ */ a.
createElement("path", { fill: "#fff", d: "M0 0h14v14H0z" })))
)), $n = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
d: "M4 3V1h1v2H4zM4 6v2h1V6H4zM4 11v2h1v-2H4zM9 11v2h1v-2H9zM9 8V6h1v2H9zM9 1v2h1V1H9zM13 5h-2V4h2v1zM11 10h2V9h-2v1zM3 10H1V9h2v1zM\
1 5h2V4H1v1zM8 5H6V4h2v1zM6 10h2V9H6v1zM4 4h1v1H4V4zM10 4H9v1h1V4zM9 9h1v1H9V9zM5 9H4v1h1V9z",
fill: e
}
)
)), Wn = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M9.544 10.206a5.5 5.5 0 11.662-.662.5.5 0 01.148.102l3 3a.5.5 0 01-.708.708l-3-3a.5.5 0 01-.102-.148zM10.5 6a4.5 4.5 0 11-9 0 4.\
5 4.5 0 019 0z",
fill: e
}
)
)), Kn = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
d: "M6 3.5a.5.5 0 01.5.5v1.5H8a.5.5 0 010 1H6.5V8a.5.5 0 01-1 0V6.5H4a.5.5 0 010-1h1.5V4a.5.5 0 01.5-.5z",
fill: e
}
),
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M9.544 10.206a5.5 5.5 0 11.662-.662.5.5 0 01.148.102l3 3a.5.5 0 01-.708.708l-3-3a.5.5 0 01-.102-.148zM10.5 6a4.5 4.5 0 11-9 0 4.\
5 4.5 0 019 0z",
fill: e
}
)
)), qn = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement("path", { d: "M4 5.5a.5.5 0 000 1h4a.5.5 0 000-1H4z", fill: e }),
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M6 11.5c1.35 0 2.587-.487 3.544-1.294a.5.5 0 00.102.148l3 3a.5.5 0 00.708-.708l-3-3a.5.5 0 00-.148-.102A5.5 5.5 0 106 11.5zm0-1a\
4.5 4.5 0 100-9 4.5 4.5 0 000 9z",
fill: e
}
)
)), Jn = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
d: "M1.5 2.837V1.5a.5.5 0 00-1 0V4a.5.5 0 00.5.5h2.5a.5.5 0 000-1H2.258a4.5 4.5 0 11-.496 4.016.5.5 0 10-.942.337 5.502 5.502 0 008.\
724 2.353.5.5 0 00.102.148l3 3a.5.5 0 00.708-.708l-3-3a.5.5 0 00-.148-.102A5.5 5.5 0 101.5 2.837z",
fill: e
}
)
)), Yn = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement("path", { d: "M7 9.5a2.5 2.5 0 100-5 2.5 2.5 0 000 5z", fill: e }),
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M14 7l-.21.293C13.669 7.465 10.739 11.5 7 11.5S.332 7.465.21 7.293L0 7l.21-.293C.331 6.536 3.261 2.5 7 2.5s6.668 4.036 6.79 4.20\
7L14 7zM2.896 5.302A12.725 12.725 0 001.245 7c.296.37.874 1.04 1.65 1.698C4.043 9.67 5.482 10.5 7 10.5c1.518 0 2.958-.83 4.104-1.802A12.72 1\
2.72 0 0012.755 7c-.297-.37-.875-1.04-1.65-1.698C9.957 4.33 8.517 3.5 7 3.5c-1.519 0-2.958.83-4.104 1.802z",
fill: e
}
)
)), Qn = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
d: "M1.854 1.146a.5.5 0 10-.708.708l11 11a.5.5 0 00.708-.708l-11-11zM11.104 8.698c-.177.15-.362.298-.553.439l.714.714a13.25 13.25 0 \
002.526-2.558L14 7l-.21-.293C13.669 6.536 10.739 2.5 7 2.5c-.89 0-1.735.229-2.506.58l.764.763A4.859 4.859 0 017 3.5c1.518 0 2.958.83 4.104 1\
.802A12.724 12.724 0 0112.755 7a12.72 12.72 0 01-1.65 1.698zM.21 6.707c.069-.096 1.03-1.42 2.525-2.558l.714.714c-.191.141-.376.288-.553.439A\
12.725 12.725 0 001.245 7c.296.37.874 1.04 1.65 1.698C4.043 9.67 5.482 10.5 7 10.5a4.86 4.86 0 001.742-.344l.764.764c-.772.351-1.616.58-2.50\
6.58C3.262 11.5.332 7.465.21 7.293L0 7l.21-.293z",
fill: e
}
),
/* @__PURE__ */ a.createElement(
"path",
{
d: "M4.5 7c0-.322.061-.63.172-.914l3.242 3.242A2.5 2.5 0 014.5 7zM9.328 7.914L6.086 4.672a2.5 2.5 0 013.241 3.241z",
fill: e
}
)
)), Xn = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M2.522 6.6a.566.566 0 00-.176.544.534.534 0 00.382.41l2.781.721-1.493 5.013a.563.563 0 00.216.627.496.496 0 00.63-.06l6.637-6.45\
3a.568.568 0 00.151-.54.534.534 0 00-.377-.396l-2.705-.708 2.22-4.976a.568.568 0 00-.15-.666.497.497 0 00-.648.008L2.522 6.6zm7.72.63l-3.067\
-.804L9.02 2.29 3.814 6.803l2.95.764-1.277 4.285 4.754-4.622zM4.51 13.435l.037.011-.037-.011z",
fill: e
}
)
)), Zn = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
d: "M10.139 8.725l1.36-1.323a.568.568 0 00.151-.54.534.534 0 00-.377-.396l-2.705-.708 2.22-4.976a.568.568 0 00-.15-.666.497.497 0 00\
-.648.008L5.464 4.05l.708.71 2.848-2.47-1.64 3.677.697.697 2.164.567-.81.787.708.708zM2.523 6.6a.566.566 0 00-.177.544.534.534 0 00.382.41l2\
.782.721-1.494 5.013a.563.563 0 00.217.627.496.496 0 00.629-.06l3.843-3.736-.708-.707-2.51 2.44 1.137-3.814-.685-.685-2.125-.55.844-.731-.71\
-.71L2.524 6.6zM1.854 1.146a.5.5 0 10-.708.708l11 11a.5.5 0 00.708-.708l-11-11z",
fill: e
}
)
)), ea = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M1 1.504a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11zm1 10.5h10v-10l-10 10z",
fill: e
}
)
)), ta = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
d: "M1.5 1.004a.5.5 0 100 1H12v10.5a.5.5 0 001 0v-10.5a1 1 0 00-1-1H1.5z",
fill: e
}
),
/* @__PURE__ */ a.createElement(
"path",
{
d: "M1 3.504a.5.5 0 01.5-.5H10a1 1 0 011 1v8.5a.5.5 0 01-1 0v-8.5H1.5a.5.5 0 01-.5-.5z",
fill: e
}
),
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M1.5 5.004a.5.5 0 00-.5.5v7a.5.5 0 00.5.5h7a.5.5 0 00.5-.5v-7a.5.5 0 00-.5-.5h-7zm.5 1v6h6v-6H2z",
fill: e
}
)
)), ra = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 15",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M3 3.004H.5a.5.5 0 00-.5.5v10a.5.5 0 00.5.5h10a.5.5 0 00.5-.5v-2.5h2.5a.5.5 0 00.5-.5v-10a.5.5 0 00-.5-.5h-10a.5.5 0 00-.5.5v2.5\
zm1 1v2.293l2.293-2.293H4zm-1 0v6.5a.499.499 0 00.497.5H10v2H1v-9h2zm1-1h6.5a.499.499 0 01.5.5v6.5h2v-9H4v2zm6 7V7.71l-2.293 2.293H10zm0-3.7\
07V4.71l-5.293 5.293h1.586L10 6.297zm-.707-2.293H7.707L4 7.71v1.586l5.293-5.293z",
fill: e
}
)
)), na = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 15",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M3 3.004v-2.5a.5.5 0 01.5-.5h10a.5.5 0 01.5.5v10a.5.5 0 01-.5.5H11v2.5a.5.5 0 01-.5.5H.5a.5.5 0 01-.5-.5v-10a.5.5 0 01.5-.5H3zm1\
0v-2h9v9h-2v-6.5a.5.5 0 00-.5-.5H4zm6 8v2H1v-9h2v6.5a.5.5 0 00.5.5H10zm0-1H4v-6h6v6z",
fill: e
}
)
)), aa = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"g",
{
clipPath: "url(#prefix__clip0_2359_559)",
fillRule: "evenodd",
clipRule: "evenodd",
fill: e
},
/* @__PURE__ */ a.createElement("path", { d: "M3 3.004H.5a.5.5 0 00-.5.5v10a.5.5 0 00.5.5h7.176a4.526 4.526 0 01-.916-1H1v-9h2v6.5a.49\
9.499 0 00.497.5h2.531a4.548 4.548 0 01-.001-1h-1.32l2.16-2.16c.274-.374.603-.703.977-.977L10 4.711v1.316a4.552 4.552 0 011 0V3.504a.48.48 0\
00-.038-.191.5.5 0 00-.462-.31H4v-2h9v5.755c.378.253.715.561 1 .913V.504a.5.5 0 00-.5-.5h-10a.5.5 0 00-.5.5v2.5zm1 1v2.293l2.293-2.293H4zm5\
.293 0H7.707L4 7.71v1.586l5.293-5.293z" }),
/* @__PURE__ */ a.createElement("path", { d: "M14 10.5a3.5 3.5 0 11-7 0 3.5 3.5 0 017 0zm-5.5 0A.5.5 0 019 10h3a.5.5 0 010 1H9a.5.5 0 \
01-.5-.5z" })
),
/* @__PURE__ */ a.createElement("defs", null, /* @__PURE__ */ a.createElement("clipPath", { id: "prefix__clip0_2359_559" }, /* @__PURE__ */ a.
createElement("path", { fill: "#fff", d: "M0 0h14v14H0z" })))
)), oa = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M11.854.146a.5.5 0 00-.708 0L2.983 8.31a2.24 2.24 0 00-1.074.6C.677 10.14.24 11.902.085 12.997 0 13.6 0 14 0 14s.4 0 1.002-.085c\
1.095-.155 2.857-.592 4.089-1.824a2.24 2.24 0 00.6-1.074l8.163-8.163a.5.5 0 000-.708l-2-2zM5.6 9.692l.942-.942L5.25 7.457l-.942.943A2.242 2.\
242 0 015.6 9.692zm1.649-1.65L12.793 2.5 11.5 1.207 5.957 6.75 7.25 8.043zM4.384 9.617a1.25 1.25 0 010 1.768c-.767.766-1.832 1.185-2.78 1.40\
3-.17.04-.335.072-.49.098.027-.154.06-.318.099-.49.219-.947.637-2.012 1.403-2.779a1.25 1.25 0 011.768 0z",
fill: e
}
)
)), la = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
d: "M1.5 1.004a.5.5 0 01.5.5v.5h10v-.5a.5.5 0 011 0v2a.5.5 0 01-1 0v-.5H2v.5a.5.5 0 01-1 0v-2a.5.5 0 01.5-.5z",
fill: e
}
),
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M1.5 6a.5.5 0 00-.5.5v6a.5.5 0 00.5.5h11a.5.5 0 00.5-.5v-6a.5.5 0 00-.5-.5h-11zM2 7v5h10V7h-1v2.5a.5.5 0 01-1 0V7h-.75v1a.5.5 0 \
01-1 0V7H7.5v2.5a.5.5 0 01-1 0V7h-.75v1a.5.5 0 01-1 0V7H4v2.5a.5.5 0 01-1 0V7H2z",
fill: e
}
)
)), ia = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M10 7a3 3 0 11-6 0 3 3 0 016 0zM9 7a2 2 0 11-4 0 2 2 0 014 0z",
fill: e
}
),
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M2.5 1a.5.5 0 00-.5.5v.504H.5a.5.5 0 00-.5.5v9a.5.5 0 00.5.5h13a.5.5 0 00.5-.5v-9a.5.5 0 00-.5-.5H6V1.5a.5.5 0 00-.5-.5h-3zM1 3.\
004v8h12v-8H1z",
fill: e
}
)
)), sa = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement("path", { d: "M2.5 10a.5.5 0 100-1 .5.5 0 000 1z", fill: e }),
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M0 4a2 2 0 012-2h6a2 2 0 012 2v.5l3.189-2.391A.5.5 0 0114 2.5v9a.5.5 0 01-.804.397L10 9.5v.5a2 2 0 01-2 2H2a2 2 0 01-2-2V4zm9 0v\
1.5a.5.5 0 00.8.4L13 3.5v7L9.8 8.1a.5.5 0 00-.8.4V10a1 1 0 01-1 1H2a1 1 0 01-1-1V4a1 1 0 011-1h6a1 1 0 011 1z",
fill: e
}
)
)), ca = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M1 4.5v5a.5.5 0 00.5.5H4l3.17 2.775a.5.5 0 00.83-.377V1.602a.5.5 0 00-.83-.376L4 4H1.5a.5.5 0 00-.5.5zM4 9V5H2v4h2zm.998.545A.50\
4.504 0 005 9.5v-5c0-.015 0-.03-.002-.044L7 2.704v8.592L4.998 9.545z",
fill: e
}
),
/* @__PURE__ */ a.createElement(
"path",
{
d: "M10.15 1.752a.5.5 0 00-.3.954 4.502 4.502 0 010 8.588.5.5 0 00.3.954 5.502 5.502 0 000-10.496z",
fill: e
}
),
/* @__PURE__ */ a.createElement(
"path",
{
d: "M10.25 3.969a.5.5 0 00-.5.865 2.499 2.499 0 010 4.332.5.5 0 10.5.866 3.499 3.499 0 000-6.063z",
fill: e
}
)
)), fa = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
d: "M12.813 7.425l-9.05 5.603A.5.5 0 013 12.603V1.398a.5.5 0 01.763-.425l9.05 5.602a.5.5 0 010 .85z",
fill: e
}
)
)), da = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
d: "M11.24 12.035L3.697 7.427A.494.494 0 013.5 7.2v4.05a.75.75 0 01-1.5 0v-8.5a.75.75 0 011.5 0V6.8a.494.494 0 01.198-.227l7.541-4.6\
08A.5.5 0 0112 2.39v9.217a.5.5 0 01-.76.427z",
fill: e
}
)
)), ha = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
d: "M2.76 12.035l7.542-4.608A.495.495 0 0010.5 7.2v4.05a.75.75 0 001.5 0v-8.5a.75.75 0 00-1.5 0V6.8a.495.495 0 00-.198-.227L2.76 1.9\
65A.5.5 0 002 2.39v9.217a.5.5 0 00.76.427z",
fill: e
}
)
)), ua = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
d: "M9 2.42v2.315l4.228-2.736a.5.5 0 01.772.42v9.162a.5.5 0 01-.772.42L9 9.263v2.317a.5.5 0 01-.772.42L1.5 7.647v3.603a.75.75 0 01-1\
.5 0v-8.5a.75.75 0 011.5 0v3.603L8.228 2A.5.5 0 019 2.42z",
fill: e
}
)
)), pa = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
d: "M5 2.42v2.315L.772 1.999a.5.5 0 00-.772.42v9.162a.5.5 0 00.772.42L5 9.263v2.317a.5.5 0 00.772.42L12.5 7.647v3.603a.75.75 0 001.5\
0v-8.5a.75.75 0 00-1.5 0v3.603L5.772 2A.5.5 0 005 2.42z",
fill: e
}
)
)), va = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
d: "M1 1.504a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11z",
fill: e
}
)
)), ma = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement("g", { clipPath: "url(#prefix__clip0_1107_3492)", fill: e }, /* @__PURE__ */ a.createElement("path", { d: "\
M7.5.5a.5.5 0 00-1 0V2a.5.5 0 001 0V.5z" }), /* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M7 10a3 3 0 100-6 3 3 0 000 6zm0-1a2 2 0 100-4 2 2 0 000 4z"
}
), /* @__PURE__ */ a.createElement("path", { d: "M7 11.5a.5.5 0 01.5.5v1.5a.5.5 0 01-1 0V12a.5.5 0 01.5-.5zM11.5 7a.5.5 0 01.5-.5h1.5a.5\
.5 0 010 1H12a.5.5 0 01-.5-.5zM.5 6.5a.5.5 0 000 1H2a.5.5 0 000-1H.5zM3.818 10.182a.5.5 0 010 .707l-1.06 1.06a.5.5 0 11-.708-.706l1.06-1.06a\
.5.5 0 01.708 0zM11.95 2.757a.5.5 0 10-.707-.707l-1.061 1.061a.5.5 0 10.707.707l1.06-1.06zM10.182 10.182a.5.5 0 01.707 0l1.06 1.06a.5.5 0 11\
-.706.708l-1.061-1.06a.5.5 0 010-.708zM2.757 2.05a.5.5 0 10-.707.707l1.06 1.061a.5.5 0 00.708-.707l-1.06-1.06z" })),
/* @__PURE__ */ a.createElement("defs", null, /* @__PURE__ */ a.createElement("clipPath", { id: "prefix__clip0_1107_3492" }, /* @__PURE__ */ a.
createElement("path", { fill: "#fff", d: "M0 0h14v14H0z" })))
)), ga = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 15 15",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement("g", { clipPath: "url(#prefix__clip0_1107_3493)" }, /* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M8.335.047l-.15-.015a7.499 7.499 0 106.14 10.577c.103-.229-.156-.447-.386-.346a5.393 5.393 0 01-.771.27A5.356 5.356 0 019.153.69\
1C9.37.568 9.352.23 9.106.175a7.545 7.545 0 00-.77-.128zM6.977 1.092a6.427 6.427 0 005.336 10.671A6.427 6.427 0 116.977 1.092z",
fill: e
}
)),
/* @__PURE__ */ a.createElement("defs", null, /* @__PURE__ */ a.createElement("clipPath", { id: "prefix__clip0_1107_3493" }, /* @__PURE__ */ a.
createElement(
"path",
{
fill: "#fff",
transform: "scale(1.07124)",
d: "M0 0h14.001v14.002H0z"
}
)))
)), wa = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M2.2 2.204v9.6h9.6v-9.6H2.2zm-.7-1.2a.5.5 0 00-.5.5v11a.5.5 0 00.5.5h11a.5.5 0 00.5-.5v-11a.5.5 0 00-.5-.5h-11z",
fill: e
}
)
)), ya = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M4.2 10.88L10.668 7 4.2 3.12v7.76zM3 2.414v9.174a.8.8 0 001.212.686l7.645-4.587a.8.8 0 000-1.372L4.212 1.727A.8.8 0 003 2.413z",
fill: e
}
)
)), Sa = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M5.2 10.88L11.668 7 5.2 3.12v7.76zM4 2.414v9.174a.8.8 0 001.212.686l7.645-4.587a.8.8 0 000-1.372L5.212 1.727A.8.8 0 004 2.413zM1\
.5 1.6a.6.6 0 01.6.6v9.6a.6.6 0 11-1.2 0V2.2a.6.6 0 01.6-.6z",
fill: e
}
),
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M.963 1.932a.6.6 0 01.805-.268l1 .5a.6.6 0 01-.536 1.073l-1-.5a.6.6 0 01-.269-.805zM3.037 11.132a.6.6 0 01-.269.805l-1 .5a.6.6 0\
01-.536-1.073l1-.5a.6.6 0 01.805.268z",
fill: e
}
)
)), Ia = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
d: "M4.5 4a.5.5 0 00-.5.5v5a.5.5 0 00.5.5h5a.5.5 0 00.5-.5v-5a.5.5 0 00-.5-.5h-5z",
fill: e
}
),
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z",
fill: e
}
)
)), Ea = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M1 1.504a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11zm1 10.5v-10h5v10H2z",
fill: e
}
)
)), xa = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M12.5 1.004a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11a.5.5 0 01.5-.5h11zm-10.5 1h10v5H2v-5z",
fill: e
}
)
)), Aa = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M13 2a2 2 0 00-2-2H1.5a.5.5 0 00-.5.5v13a.5.5 0 00.5.5H11a2 2 0 002-2V2zM3 13h8a1 1 0 001-1V2a1 1 0 00-1-1H7v6.004a.5.5 0 01-.85\
6.352l-.002-.002L5.5 6.71l-.645.647A.5.5 0 014 7.009V1H3v12zM5 1v4.793l.146-.146a.5.5 0 01.743.039l.111.11V1H5z",
fill: e
}
)
)), _a = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
d: "M4 5.5a.5.5 0 01.5-.5h5a.5.5 0 010 1h-5a.5.5 0 01-.5-.5zM4.5 7.5a.5.5 0 000 1h5a.5.5 0 000-1h-5zM4 10.5a.5.5 0 01.5-.5h5a.5.5 0 \
010 1h-5a.5.5 0 01-.5-.5z",
fill: e
}
),
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M1.5 0a.5.5 0 00-.5.5v13a.5.5 0 00.5.5h11a.5.5 0 00.5-.5V3.207a.5.5 0 00-.146-.353L10.146.146A.5.5 0 009.793 0H1.5zM2 1h7.5v2a.5\
.5 0 00.5.5h2V13H2V1z",
fill: e
}
)
)), Pa = /* @__PURE__ */ a.forwardRef(({ color: e = "currentColor", size: t = 14, ...r }, n) => /* @__PURE__ */ a.createElement(
"svg",
{
width: t,
height: t,
viewBox: "0 0 14 15",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
ref: n,
...r
},
/* @__PURE__ */ a.createElement(
"path",
{
fillRule: "evenodd",
clipRule: "evenodd",
d: "M11.746.07A.5.5 0 0011.5.003h-6a.5.5 0 00-.5.5v2.5H.5a.5.5 0 00-.5.5v10a.5.5 0 00.5