@okshaun/components 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/dist/index.js ADDED
@@ -0,0 +1,3425 @@
1
+ import * as React from "react";
2
+ import { forwardRef, useMemo, createElement, useEffect, createContext, useState, useContext, useRef } from "react";
3
+ import { jsx, jsxs, Fragment } from "react/jsx-runtime";
4
+ function isObject(value) {
5
+ return typeof value === "object" && value != null && !Array.isArray(value);
6
+ }
7
+ var isObjectOrArray = (obj) => typeof obj === "object" && obj !== null;
8
+ function compact(value) {
9
+ return Object.fromEntries(Object.entries(value ?? {}).filter(([_, value2]) => value2 !== void 0));
10
+ }
11
+ var isBaseCondition = (v) => v === "base";
12
+ function filterBaseConditions(c) {
13
+ return c.slice().filter((v) => !isBaseCondition(v));
14
+ }
15
+ function toChar(code2) {
16
+ return String.fromCharCode(code2 + (code2 > 25 ? 39 : 97));
17
+ }
18
+ function toName(code2) {
19
+ let name = "";
20
+ let x;
21
+ for (x = Math.abs(code2); x > 52; x = x / 52 | 0) name = toChar(x % 52) + name;
22
+ return toChar(x % 52) + name;
23
+ }
24
+ function toPhash(h, x) {
25
+ let i = x.length;
26
+ while (i) h = h * 33 ^ x.charCodeAt(--i);
27
+ return h;
28
+ }
29
+ function toHash(value) {
30
+ return toName(toPhash(5381, value) >>> 0);
31
+ }
32
+ var importantRegex = /\s*!(important)?/i;
33
+ function isImportant(value) {
34
+ return typeof value === "string" ? importantRegex.test(value) : false;
35
+ }
36
+ function withoutImportant(value) {
37
+ return typeof value === "string" ? value.replace(importantRegex, "").trim() : value;
38
+ }
39
+ function withoutSpace(str) {
40
+ return typeof str === "string" ? str.replaceAll(" ", "_") : str;
41
+ }
42
+ var memo = (fn) => {
43
+ const cache = /* @__PURE__ */ new Map();
44
+ const get = (...args) => {
45
+ const key = JSON.stringify(args);
46
+ if (cache.has(key)) {
47
+ return cache.get(key);
48
+ }
49
+ const result = fn(...args);
50
+ cache.set(key, result);
51
+ return result;
52
+ };
53
+ return get;
54
+ };
55
+ var MERGE_OMIT = /* @__PURE__ */ new Set(["__proto__", "constructor", "prototype"]);
56
+ function mergeProps(...sources) {
57
+ return sources.reduce((prev, obj) => {
58
+ if (!obj) return prev;
59
+ Object.keys(obj).forEach((key) => {
60
+ if (MERGE_OMIT.has(key)) return;
61
+ const prevValue = prev[key];
62
+ const value = obj[key];
63
+ if (isObject(prevValue) && isObject(value)) {
64
+ prev[key] = mergeProps(prevValue, value);
65
+ } else {
66
+ prev[key] = value;
67
+ }
68
+ });
69
+ return prev;
70
+ }, {});
71
+ }
72
+ var isNotNullish = (element) => element != null;
73
+ function walkObject(target, predicate, options = {}) {
74
+ const { stop, getKey } = options;
75
+ function inner(value, path = []) {
76
+ if (isObjectOrArray(value)) {
77
+ const result = {};
78
+ for (const [prop, child] of Object.entries(value)) {
79
+ const key = (getKey == null ? void 0 : getKey(prop, child)) ?? prop;
80
+ const childPath = [...path, key];
81
+ if (stop == null ? void 0 : stop(value, childPath)) {
82
+ return predicate(value, path);
83
+ }
84
+ const next = inner(child, childPath);
85
+ if (isNotNullish(next)) {
86
+ result[key] = next;
87
+ }
88
+ }
89
+ return result;
90
+ }
91
+ return predicate(value, path);
92
+ }
93
+ return inner(target);
94
+ }
95
+ function mapObject(obj, fn) {
96
+ if (Array.isArray(obj)) return obj.map((value) => fn(value));
97
+ if (!isObject(obj)) return fn(obj);
98
+ return walkObject(obj, (value) => fn(value));
99
+ }
100
+ function toResponsiveObject(values, breakpoints) {
101
+ return values.reduce(
102
+ (acc, current, index) => {
103
+ const key = breakpoints[index];
104
+ if (current != null) {
105
+ acc[key] = current;
106
+ }
107
+ return acc;
108
+ },
109
+ {}
110
+ );
111
+ }
112
+ function normalizeStyleObject(styles, context2, shorthand = true) {
113
+ const { utility, conditions: conditions2 } = context2;
114
+ const { hasShorthand, resolveShorthand: resolveShorthand2 } = utility;
115
+ return walkObject(
116
+ styles,
117
+ (value) => {
118
+ return Array.isArray(value) ? toResponsiveObject(value, conditions2.breakpoints.keys) : value;
119
+ },
120
+ {
121
+ stop: (value) => Array.isArray(value),
122
+ getKey: shorthand ? (prop) => hasShorthand ? resolveShorthand2(prop) : prop : void 0
123
+ }
124
+ );
125
+ }
126
+ var fallbackCondition = {
127
+ shift: (v) => v,
128
+ finalize: (v) => v,
129
+ breakpoints: { keys: [] }
130
+ };
131
+ var sanitize = (value) => typeof value === "string" ? value.replaceAll(/[\n\s]+/g, " ") : value;
132
+ function createCss(context2) {
133
+ const { utility, hash, conditions: conds = fallbackCondition } = context2;
134
+ const formatClassName = (str) => [utility.prefix, str].filter(Boolean).join("-");
135
+ const hashFn = (conditions2, className) => {
136
+ let result;
137
+ if (hash) {
138
+ const baseArray = [...conds.finalize(conditions2), className];
139
+ result = formatClassName(utility.toHash(baseArray, toHash));
140
+ } else {
141
+ const baseArray = [...conds.finalize(conditions2), formatClassName(className)];
142
+ result = baseArray.join(":");
143
+ }
144
+ return result;
145
+ };
146
+ return memo(({ base, ...styles } = {}) => {
147
+ const styleObject = Object.assign(styles, base);
148
+ const normalizedObject = normalizeStyleObject(styleObject, context2);
149
+ const classNames = /* @__PURE__ */ new Set();
150
+ walkObject(normalizedObject, (value, paths) => {
151
+ if (value == null) return;
152
+ const important = isImportant(value);
153
+ const [prop, ...allConditions] = conds.shift(paths);
154
+ const conditions2 = filterBaseConditions(allConditions);
155
+ const transformed = utility.transform(prop, withoutImportant(sanitize(value)));
156
+ let className = hashFn(conditions2, transformed.className);
157
+ if (important) className = `${className}!`;
158
+ classNames.add(className);
159
+ });
160
+ return Array.from(classNames).join(" ");
161
+ });
162
+ }
163
+ function compactStyles(...styles) {
164
+ return styles.flat().filter((style) => isObject(style) && Object.keys(compact(style)).length > 0);
165
+ }
166
+ function createMergeCss(context2) {
167
+ function resolve(styles) {
168
+ const allStyles = compactStyles(...styles);
169
+ if (allStyles.length === 1) return allStyles;
170
+ return allStyles.map((style) => normalizeStyleObject(style, context2));
171
+ }
172
+ function mergeCss2(...styles) {
173
+ return mergeProps(...resolve(styles));
174
+ }
175
+ function assignCss(...styles) {
176
+ return Object.assign({}, ...resolve(styles));
177
+ }
178
+ return { mergeCss: memo(mergeCss2), assignCss };
179
+ }
180
+ var wordRegex = /([A-Z])/g;
181
+ var msRegex = /^ms-/;
182
+ var hypenateProperty = memo((property) => {
183
+ if (property.startsWith("--")) return property;
184
+ return property.replace(wordRegex, "-$1").replace(msRegex, "-ms-").toLowerCase();
185
+ });
186
+ var fns = ["min", "max", "clamp", "calc"];
187
+ var fnRegExp = new RegExp(`^(${fns.join("|")})\\(.*\\)`);
188
+ var isCssFunction = (v) => typeof v === "string" && fnRegExp.test(v);
189
+ var lengthUnits = "cm,mm,Q,in,pc,pt,px,em,ex,ch,rem,lh,rlh,vw,vh,vmin,vmax,vb,vi,svw,svh,lvw,lvh,dvw,dvh,cqw,cqh,cqi,cqb,cqmin,cqmax,%";
190
+ var lengthUnitsPattern = `(?:${lengthUnits.split(",").join("|")})`;
191
+ var lengthRegExp = new RegExp(`^[+-]?[0-9]*.?[0-9]+(?:[eE][+-]?[0-9]+)?${lengthUnitsPattern}$`);
192
+ var isCssUnit = (v) => typeof v === "string" && lengthRegExp.test(v);
193
+ var isCssVar = (v) => typeof v === "string" && /^var\(--.+\)$/.test(v);
194
+ var patternFns = {
195
+ map: mapObject,
196
+ isCssFunction,
197
+ isCssVar,
198
+ isCssUnit
199
+ };
200
+ var getPatternStyles = (pattern, styles) => {
201
+ if (!(pattern == null ? void 0 : pattern.defaultValues)) return styles;
202
+ const defaults2 = typeof pattern.defaultValues === "function" ? pattern.defaultValues(styles) : pattern.defaultValues;
203
+ return Object.assign({}, defaults2, compact(styles));
204
+ };
205
+ var getSlotCompoundVariant = (compoundVariants, slotName) => compoundVariants.filter((compoundVariant) => compoundVariant.css[slotName]).map((compoundVariant) => ({ ...compoundVariant, css: compoundVariant.css[slotName] }));
206
+ function splitProps$1(props, ...keys) {
207
+ const descriptors = Object.getOwnPropertyDescriptors(props);
208
+ const dKeys = Object.keys(descriptors);
209
+ const split = (k) => {
210
+ const clone = {};
211
+ for (let i = 0; i < k.length; i++) {
212
+ const key = k[i];
213
+ if (descriptors[key]) {
214
+ Object.defineProperty(clone, key, descriptors[key]);
215
+ delete descriptors[key];
216
+ }
217
+ }
218
+ return clone;
219
+ };
220
+ const fn = (key) => split(Array.isArray(key) ? key : dKeys.filter(key));
221
+ return keys.map(fn).concat(split(dKeys));
222
+ }
223
+ var uniq = (...items) => {
224
+ const set = items.reduce((acc, currItems) => {
225
+ if (currItems) {
226
+ currItems.forEach((item) => acc.add(item));
227
+ }
228
+ return acc;
229
+ }, /* @__PURE__ */ new Set([]));
230
+ return Array.from(set);
231
+ };
232
+ var htmlProps = ["htmlSize", "htmlTranslate", "htmlWidth", "htmlHeight"];
233
+ function convert(key) {
234
+ return htmlProps.includes(key) ? key.replace("html", "").toLowerCase() : key;
235
+ }
236
+ function normalizeHTMLProps(props) {
237
+ return Object.fromEntries(Object.entries(props).map(([key, value]) => [convert(key), value]));
238
+ }
239
+ normalizeHTMLProps.keys = htmlProps;
240
+ const conditionsStr = "_hover,_focus,_focusWithin,_focusVisible,_disabled,_active,_visited,_target,_readOnly,_readWrite,_empty,_checked,_enabled,_expanded,_highlighted,_complete,_incomplete,_dragging,_before,_after,_firstLetter,_firstLine,_marker,_selection,_file,_backdrop,_first,_last,_only,_even,_odd,_firstOfType,_lastOfType,_onlyOfType,_peerFocus,_peerHover,_peerActive,_peerFocusWithin,_peerFocusVisible,_peerDisabled,_peerChecked,_peerInvalid,_peerExpanded,_peerPlaceholderShown,_groupFocus,_groupHover,_groupActive,_groupFocusWithin,_groupFocusVisible,_groupDisabled,_groupChecked,_groupExpanded,_groupInvalid,_indeterminate,_required,_valid,_invalid,_autofill,_inRange,_outOfRange,_placeholder,_placeholderShown,_pressed,_selected,_grabbed,_underValue,_overValue,_atValue,_default,_optional,_open,_closed,_fullscreen,_loading,_hidden,_current,_currentPage,_currentStep,_today,_unavailable,_rangeStart,_rangeEnd,_now,_topmost,_motionReduce,_motionSafe,_print,_landscape,_portrait,_dark,_light,_osDark,_osLight,_highContrast,_lessContrast,_moreContrast,_ltr,_rtl,_scrollbar,_scrollbarThumb,_scrollbarTrack,_horizontal,_vertical,_icon,_starting,_noscript,_invertedColors,_collapsed,xs,xsOnly,xsDown,sm,smOnly,smDown,md,mdOnly,mdDown,lg,lgOnly,lgDown,xl,xlOnly,xlDown,2xl,2xlOnly,2xlDown,xsToSm,xsToMd,xsToLg,xsToXl,xsTo2xl,smToMd,smToLg,smToXl,smTo2xl,mdToLg,mdToXl,mdTo2xl,lgToXl,lgTo2xl,xlTo2xl,@/xs,@/sm,@/md,@/lg,@/xl,@/2xl,@/3xl,@/4xl,@/5xl,@/6xl,@/7xl,@/8xl,base";
241
+ const conditions = new Set(conditionsStr.split(","));
242
+ const conditionRegex = /^@|&|&$/;
243
+ function isCondition(value) {
244
+ return conditions.has(value) || conditionRegex.test(value);
245
+ }
246
+ const underscoreRegex = /^_/;
247
+ const conditionsSelectorRegex = /&|@/;
248
+ function finalizeConditions(paths) {
249
+ return paths.map((path) => {
250
+ if (conditions.has(path)) {
251
+ return path.replace(underscoreRegex, "");
252
+ }
253
+ if (conditionsSelectorRegex.test(path)) {
254
+ return `[${withoutSpace(path.trim())}]`;
255
+ }
256
+ return path;
257
+ });
258
+ }
259
+ function sortConditions(paths) {
260
+ return paths.sort((a, b) => {
261
+ const aa = isCondition(a);
262
+ const bb = isCondition(b);
263
+ if (aa && !bb) return 1;
264
+ if (!aa && bb) return -1;
265
+ return 0;
266
+ });
267
+ }
268
+ const utilities = "aspectRatio:asp,boxDecorationBreak:bx-db,zIndex:z,boxSizing:bx-s,objectPosition:obj-p,objectFit:obj-f,overscrollBehavior:ovs-b,overscrollBehaviorX:ovs-bx,overscrollBehaviorY:ovs-by,position:pos/1,top:top,left:left,inset:inset,insetInline:inset-x/insetX,insetBlock:inset-y/insetY,insetBlockEnd:inset-be,insetBlockStart:inset-bs,insetInlineEnd:inset-e/insetEnd/end,insetInlineStart:inset-s/insetStart/start,right:right,bottom:bottom,float:float,visibility:vis,display:d,hideFrom:hide,hideBelow:show,flexBasis:flex-b,flex:flex,flexDirection:flex-d/flexDir,flexGrow:flex-g,flexShrink:flex-sh,gridTemplateColumns:grid-tc,gridTemplateRows:grid-tr,gridColumn:grid-c,gridRow:grid-r,gridColumnStart:grid-cs,gridColumnEnd:grid-ce,gridAutoFlow:grid-af,gridAutoColumns:grid-ac,gridAutoRows:grid-ar,gap:gap,gridGap:grid-g,gridRowGap:grid-rg,gridColumnGap:grid-cg,rowGap:rg,columnGap:cg,justifyContent:jc,alignContent:ac,alignItems:ai,alignSelf:as,padding:p/1,paddingLeft:pl/1,paddingRight:pr/1,paddingTop:pt/1,paddingBottom:pb/1,paddingBlock:py/1/paddingY,paddingBlockEnd:pbe,paddingBlockStart:pbs,paddingInline:px/paddingX/1,paddingInlineEnd:pe/1/paddingEnd,paddingInlineStart:ps/1/paddingStart,marginLeft:ml/1,marginRight:mr/1,marginTop:mt/1,marginBottom:mb/1,margin:m/1,marginBlock:my/1/marginY,marginBlockEnd:mbe,marginBlockStart:mbs,marginInline:mx/1/marginX,marginInlineEnd:me/1/marginEnd,marginInlineStart:ms/1/marginStart,spaceX:sx,spaceY:sy,outlineWidth:ring-w/ringWidth,outlineColor:ring-c/ringColor,outline:ring/1,outlineOffset:ring-o/ringOffset,focusRing:focus-ring,focusVisibleRing:focus-v-ring,focusRingColor:focus-ring-c,focusRingOffset:focus-ring-o,focusRingWidth:focus-ring-w,focusRingStyle:focus-ring-s,divideX:dvd-x,divideY:dvd-y,divideColor:dvd-c,divideStyle:dvd-s,width:w/1,inlineSize:w-is,minWidth:min-w/minW,minInlineSize:min-w-is,maxWidth:max-w/maxW,maxInlineSize:max-w-is,height:h/1,blockSize:h-bs,minHeight:min-h/minH,minBlockSize:min-h-bs,maxHeight:max-h/maxH,maxBlockSize:max-b,boxSize:size,color:c,fontFamily:ff,fontSize:fs,fontSizeAdjust:fs-a,fontPalette:fp,fontKerning:fk,fontFeatureSettings:ff-s,fontWeight:fw,fontSmoothing:fsmt,fontVariant:fv,fontVariantAlternates:fv-alt,fontVariantCaps:fv-caps,fontVariationSettings:fv-s,fontVariantNumeric:fv-num,letterSpacing:ls,lineHeight:lh,textAlign:ta,textDecoration:td,textDecorationColor:td-c,textEmphasisColor:te-c,textDecorationStyle:td-s,textDecorationThickness:td-t,textUnderlineOffset:tu-o,textTransform:tt,textIndent:ti,textShadow:tsh,textShadowColor:tsh-c/textShadowColor,textOverflow:tov,verticalAlign:va,wordBreak:wb,textWrap:tw,truncate:trunc,lineClamp:lc,listStyleType:li-t,listStylePosition:li-pos,listStyleImage:li-img,listStyle:li-s,backgroundPosition:bg-p/bgPosition,backgroundPositionX:bg-p-x/bgPositionX,backgroundPositionY:bg-p-y/bgPositionY,backgroundAttachment:bg-a/bgAttachment,backgroundClip:bg-cp/bgClip,background:bg/1,backgroundColor:bg-c/bgColor,backgroundOrigin:bg-o/bgOrigin,backgroundImage:bg-i/bgImage,backgroundRepeat:bg-r/bgRepeat,backgroundBlendMode:bg-bm/bgBlendMode,backgroundSize:bg-s/bgSize,backgroundGradient:bg-grad/bgGradient,backgroundLinear:bg-linear/bgLinear,backgroundRadial:bg-radial/bgRadial,backgroundConic:bg-conic/bgConic,textGradient:txt-grad,gradientFromPosition:grad-from-pos,gradientToPosition:grad-to-pos,gradientFrom:grad-from,gradientTo:grad-to,gradientVia:grad-via,gradientViaPosition:grad-via-pos,borderRadius:bdr/rounded,borderTopLeftRadius:bdr-tl/roundedTopLeft,borderTopRightRadius:bdr-tr/roundedTopRight,borderBottomRightRadius:bdr-br/roundedBottomRight,borderBottomLeftRadius:bdr-bl/roundedBottomLeft,borderTopRadius:bdr-t/roundedTop,borderRightRadius:bdr-r/roundedRight,borderBottomRadius:bdr-b/roundedBottom,borderLeftRadius:bdr-l/roundedLeft,borderStartStartRadius:bdr-ss/roundedStartStart,borderStartEndRadius:bdr-se/roundedStartEnd,borderStartRadius:bdr-s/roundedStart,borderEndStartRadius:bdr-es/roundedEndStart,borderEndEndRadius:bdr-ee/roundedEndEnd,borderEndRadius:bdr-e/roundedEnd,border:bd,borderWidth:bd-w,borderTopWidth:bd-t-w,borderLeftWidth:bd-l-w,borderRightWidth:bd-r-w,borderBottomWidth:bd-b-w,borderBlockStartWidth:bd-bs-w,borderBlockEndWidth:bd-be-w,borderColor:bd-c,borderInline:bd-x/borderX,borderInlineWidth:bd-x-w/borderXWidth,borderInlineColor:bd-x-c/borderXColor,borderBlock:bd-y/borderY,borderBlockWidth:bd-y-w/borderYWidth,borderBlockColor:bd-y-c/borderYColor,borderLeft:bd-l,borderLeftColor:bd-l-c,borderInlineStart:bd-s/borderStart,borderInlineStartWidth:bd-s-w/borderStartWidth,borderInlineStartColor:bd-s-c/borderStartColor,borderRight:bd-r,borderRightColor:bd-r-c,borderInlineEnd:bd-e/borderEnd,borderInlineEndWidth:bd-e-w/borderEndWidth,borderInlineEndColor:bd-e-c/borderEndColor,borderTop:bd-t,borderTopColor:bd-t-c,borderBottom:bd-b,borderBottomColor:bd-b-c,borderBlockEnd:bd-be,borderBlockEndColor:bd-be-c,borderBlockStart:bd-bs,borderBlockStartColor:bd-bs-c,opacity:op,boxShadow:bx-sh/shadow,boxShadowColor:bx-sh-c/shadowColor,mixBlendMode:mix-bm,filter:filter,brightness:brightness,contrast:contrast,grayscale:grayscale,hueRotate:hue-rotate,invert:invert,saturate:saturate,sepia:sepia,dropShadow:drop-shadow,blur:blur,backdropFilter:bkdp,backdropBlur:bkdp-blur,backdropBrightness:bkdp-brightness,backdropContrast:bkdp-contrast,backdropGrayscale:bkdp-grayscale,backdropHueRotate:bkdp-hue-rotate,backdropInvert:bkdp-invert,backdropOpacity:bkdp-opacity,backdropSaturate:bkdp-saturate,backdropSepia:bkdp-sepia,borderCollapse:bd-cl,borderSpacing:bd-sp,borderSpacingX:bd-sx,borderSpacingY:bd-sy,tableLayout:tbl,transitionTimingFunction:trs-tmf,transitionDelay:trs-dly,transitionDuration:trs-dur,transitionProperty:trs-prop,transition:trs,animation:anim,animationName:anim-n,animationTimingFunction:anim-tmf,animationDuration:anim-dur,animationDelay:anim-dly,animationPlayState:anim-ps,animationComposition:anim-comp,animationFillMode:anim-fm,animationDirection:anim-dir,animationIterationCount:anim-ic,animationRange:anim-r,animationState:anim-s,animationRangeStart:anim-rs,animationRangeEnd:anim-re,animationTimeline:anim-tl,transformOrigin:trf-o,transformBox:trf-b,transformStyle:trf-s,transform:trf,rotate:rotate,rotateX:rotate-x,rotateY:rotate-y,rotateZ:rotate-z,scale:scale,scaleX:scale-x,scaleY:scale-y,translate:translate,translateX:translate-x/x,translateY:translate-y/y,translateZ:translate-z/z,accentColor:ac-c,caretColor:ca-c,scrollBehavior:scr-bhv,scrollbar:scr-bar,scrollbarColor:scr-bar-c,scrollbarGutter:scr-bar-g,scrollbarWidth:scr-bar-w,scrollMargin:scr-m,scrollMarginLeft:scr-ml,scrollMarginRight:scr-mr,scrollMarginTop:scr-mt,scrollMarginBottom:scr-mb,scrollMarginBlock:scr-my/scrollMarginY,scrollMarginBlockEnd:scr-mbe,scrollMarginBlockStart:scr-mbt,scrollMarginInline:scr-mx/scrollMarginX,scrollMarginInlineEnd:scr-me,scrollMarginInlineStart:scr-ms,scrollPadding:scr-p,scrollPaddingBlock:scr-py/scrollPaddingY,scrollPaddingBlockStart:scr-pbs,scrollPaddingBlockEnd:scr-pbe,scrollPaddingInline:scr-px/scrollPaddingX,scrollPaddingInlineEnd:scr-pe,scrollPaddingInlineStart:scr-ps,scrollPaddingLeft:scr-pl,scrollPaddingRight:scr-pr,scrollPaddingTop:scr-pt,scrollPaddingBottom:scr-pb,scrollSnapAlign:scr-sa,scrollSnapStop:scrs-s,scrollSnapType:scrs-t,scrollSnapStrictness:scrs-strt,scrollSnapMargin:scrs-m,scrollSnapMarginTop:scrs-mt,scrollSnapMarginBottom:scrs-mb,scrollSnapMarginLeft:scrs-ml,scrollSnapMarginRight:scrs-mr,scrollSnapCoordinate:scrs-c,scrollSnapDestination:scrs-d,scrollSnapPointsX:scrs-px,scrollSnapPointsY:scrs-py,scrollSnapTypeX:scrs-tx,scrollSnapTypeY:scrs-ty,scrollTimeline:scrtl,scrollTimelineAxis:scrtl-a,scrollTimelineName:scrtl-n,touchAction:tch-a,userSelect:us,overflow:ov,overflowWrap:ov-wrap,overflowX:ov-x,overflowY:ov-y,overflowAnchor:ov-a,overflowBlock:ov-b,overflowInline:ov-i,overflowClipBox:ovcp-bx,overflowClipMargin:ovcp-m,overscrollBehaviorBlock:ovs-bb,overscrollBehaviorInline:ovs-bi,fill:fill,stroke:stk,strokeWidth:stk-w,strokeDasharray:stk-dsh,strokeDashoffset:stk-do,strokeLinecap:stk-lc,strokeLinejoin:stk-lj,strokeMiterlimit:stk-ml,strokeOpacity:stk-op,srOnly:sr,debug:debug,appearance:ap,backfaceVisibility:bfv,clipPath:cp-path,hyphens:hy,mask:msk,maskImage:msk-i,maskSize:msk-s,textSizeAdjust:txt-adj,container:cq,containerName:cq-n,containerType:cq-t,cursor:cursor,textStyle:textStyle";
269
+ const classNameByProp = /* @__PURE__ */ new Map();
270
+ const shorthands = /* @__PURE__ */ new Map();
271
+ utilities.split(",").forEach((utility) => {
272
+ const [prop, meta] = utility.split(":");
273
+ const [className, ...shorthandList] = meta.split("/");
274
+ classNameByProp.set(prop, className);
275
+ if (shorthandList.length) {
276
+ shorthandList.forEach((shorthand) => {
277
+ shorthands.set(shorthand === "1" ? className : shorthand, prop);
278
+ });
279
+ }
280
+ });
281
+ const resolveShorthand = (prop) => shorthands.get(prop) || prop;
282
+ const context = {
283
+ conditions: {
284
+ shift: sortConditions,
285
+ finalize: finalizeConditions,
286
+ breakpoints: { keys: ["base", "xs", "sm", "md", "lg", "xl", "2xl"] }
287
+ },
288
+ utility: {
289
+ prefix: "oks",
290
+ transform: (prop, value) => {
291
+ const key = resolveShorthand(prop);
292
+ const propKey = classNameByProp.get(key) || hypenateProperty(key);
293
+ return { className: `${propKey}_${withoutSpace(value)}` };
294
+ },
295
+ hasShorthand: true,
296
+ toHash: (path, hashFn) => hashFn(path.join(":")),
297
+ resolveShorthand
298
+ }
299
+ };
300
+ const cssFn = createCss(context);
301
+ const css = (...styles) => cssFn(mergeCss(...styles));
302
+ css.raw = (...styles) => mergeCss(...styles);
303
+ const { mergeCss } = createMergeCss(context);
304
+ const defaults = (conf) => ({
305
+ base: {},
306
+ variants: {},
307
+ defaultVariants: {},
308
+ compoundVariants: [],
309
+ ...conf
310
+ });
311
+ function cva(config) {
312
+ const { base, variants, defaultVariants, compoundVariants } = defaults(config);
313
+ const getVariantProps2 = (variants2) => ({ ...defaultVariants, ...compact(variants2) });
314
+ function resolve(props = {}) {
315
+ var _a;
316
+ const computedVariants = getVariantProps2(props);
317
+ let variantCss = { ...base };
318
+ for (const [key, value] of Object.entries(computedVariants)) {
319
+ if ((_a = variants[key]) == null ? void 0 : _a[value]) {
320
+ variantCss = mergeCss(variantCss, variants[key][value]);
321
+ }
322
+ }
323
+ const compoundVariantCss = getCompoundVariantCss(compoundVariants, computedVariants);
324
+ return mergeCss(variantCss, compoundVariantCss);
325
+ }
326
+ function merge(__cva) {
327
+ const override = defaults(__cva.config);
328
+ const variantKeys2 = uniq(__cva.variantKeys, Object.keys(variants));
329
+ return cva({
330
+ base: mergeCss(base, override.base),
331
+ variants: Object.fromEntries(
332
+ variantKeys2.map((key) => [key, mergeCss(variants[key], override.variants[key])])
333
+ ),
334
+ defaultVariants: mergeProps(defaultVariants, override.defaultVariants),
335
+ compoundVariants: [...compoundVariants, ...override.compoundVariants]
336
+ });
337
+ }
338
+ function cvaFn(props) {
339
+ return css(resolve(props));
340
+ }
341
+ const variantKeys = Object.keys(variants);
342
+ function splitVariantProps(props) {
343
+ return splitProps$1(props, variantKeys);
344
+ }
345
+ const variantMap = Object.fromEntries(Object.entries(variants).map(([key, value]) => [key, Object.keys(value)]));
346
+ return Object.assign(memo(cvaFn), {
347
+ __cva__: true,
348
+ variantMap,
349
+ variantKeys,
350
+ raw: resolve,
351
+ config,
352
+ merge,
353
+ splitVariantProps,
354
+ getVariantProps: getVariantProps2
355
+ });
356
+ }
357
+ function getCompoundVariantCss(compoundVariants, variantMap) {
358
+ let result = {};
359
+ compoundVariants.forEach((compoundVariant) => {
360
+ const isMatching = Object.entries(compoundVariant).every(([key, value]) => {
361
+ if (key === "css") return true;
362
+ const values = Array.isArray(value) ? value : [value];
363
+ return values.some((value2) => variantMap[key] === value2);
364
+ });
365
+ if (isMatching) {
366
+ result = mergeCss(result, compoundVariant.css);
367
+ }
368
+ });
369
+ return result;
370
+ }
371
+ function assertCompoundVariant(name, compoundVariants, variants, prop) {
372
+ if (compoundVariants.length > 0 && typeof (variants == null ? void 0 : variants[prop]) === "object") {
373
+ throw new Error(`[recipe:${name}:${prop}] Conditions are not supported when using compound variants.`);
374
+ }
375
+ }
376
+ function cx() {
377
+ let str = "", i = 0, arg;
378
+ for (; i < arguments.length; ) {
379
+ if ((arg = arguments[i++]) && typeof arg === "string") {
380
+ str && (str += " ");
381
+ str += arg;
382
+ }
383
+ }
384
+ return str;
385
+ }
386
+ const createRecipe = (name, defaultVariants, compoundVariants) => {
387
+ const getVariantProps2 = (variants) => {
388
+ return {
389
+ [name]: "__ignore__",
390
+ ...defaultVariants,
391
+ ...compact(variants)
392
+ };
393
+ };
394
+ const recipeFn = (variants, withCompoundVariants = true) => {
395
+ const transform = (prop, value) => {
396
+ assertCompoundVariant(name, compoundVariants, variants, prop);
397
+ if (value === "__ignore__") {
398
+ return { className: name };
399
+ }
400
+ value = withoutSpace(value);
401
+ return { className: `${name}--${prop}_${value}` };
402
+ };
403
+ const recipeCss = createCss({
404
+ conditions: {
405
+ shift: sortConditions,
406
+ finalize: finalizeConditions,
407
+ breakpoints: { keys: ["base", "xs", "sm", "md", "lg", "xl", "2xl"] }
408
+ },
409
+ utility: {
410
+ prefix: "oks",
411
+ toHash: (path, hashFn) => hashFn(path.join(":")),
412
+ transform
413
+ }
414
+ });
415
+ const recipeStyles = getVariantProps2(variants);
416
+ if (withCompoundVariants) {
417
+ const compoundVariantStyles = getCompoundVariantCss(compoundVariants, recipeStyles);
418
+ return cx(recipeCss(recipeStyles), css(compoundVariantStyles));
419
+ }
420
+ return recipeCss(recipeStyles);
421
+ };
422
+ return {
423
+ recipeFn,
424
+ getVariantProps: getVariantProps2,
425
+ __getCompoundVariantCss__: (variants) => {
426
+ return getCompoundVariantCss(compoundVariants, getVariantProps2(variants));
427
+ }
428
+ };
429
+ };
430
+ const mergeRecipes = (recipeA, recipeB) => {
431
+ if (recipeA && !recipeB) return recipeA;
432
+ if (!recipeA && recipeB) return recipeB;
433
+ const recipeFn = (...args) => cx(recipeA(...args), recipeB(...args));
434
+ const variantKeys = uniq(recipeA.variantKeys, recipeB.variantKeys);
435
+ const variantMap = variantKeys.reduce((acc, key) => {
436
+ acc[key] = uniq(recipeA.variantMap[key], recipeB.variantMap[key]);
437
+ return acc;
438
+ }, {});
439
+ return Object.assign(recipeFn, {
440
+ __recipe__: true,
441
+ __name__: `${recipeA.__name__} ${recipeB.__name__}`,
442
+ raw: (props) => props,
443
+ variantKeys,
444
+ variantMap,
445
+ splitVariantProps(props) {
446
+ return splitProps$1(props, variantKeys);
447
+ }
448
+ });
449
+ };
450
+ const badgeFn = /* @__PURE__ */ createRecipe("badge", {
451
+ "variant": "subtle",
452
+ "size": "md"
453
+ }, []);
454
+ const badgeVariantMap = {
455
+ "variant": [
456
+ "solid",
457
+ "subtle",
458
+ "outline"
459
+ ],
460
+ "size": [
461
+ "sm",
462
+ "md",
463
+ "lg"
464
+ ]
465
+ };
466
+ const badgeVariantKeys = Object.keys(badgeVariantMap);
467
+ const badge = /* @__PURE__ */ Object.assign(memo(badgeFn.recipeFn), {
468
+ __recipe__: true,
469
+ __name__: "badge",
470
+ __getCompoundVariantCss__: badgeFn.__getCompoundVariantCss__,
471
+ raw: (props) => props,
472
+ variantKeys: badgeVariantKeys,
473
+ variantMap: badgeVariantMap,
474
+ merge(recipe) {
475
+ return mergeRecipes(this, recipe);
476
+ },
477
+ splitVariantProps(props) {
478
+ return splitProps$1(props, badgeVariantKeys);
479
+ },
480
+ getVariantProps: badgeFn.getVariantProps
481
+ });
482
+ const boxFn = /* @__PURE__ */ createRecipe("box", {}, []);
483
+ const boxVariantMap = {};
484
+ const boxVariantKeys = Object.keys(boxVariantMap);
485
+ const box = /* @__PURE__ */ Object.assign(memo(boxFn.recipeFn), {
486
+ __recipe__: true,
487
+ __name__: "box",
488
+ __getCompoundVariantCss__: boxFn.__getCompoundVariantCss__,
489
+ raw: (props) => props,
490
+ variantKeys: boxVariantKeys,
491
+ variantMap: boxVariantMap,
492
+ merge(recipe) {
493
+ return mergeRecipes(this, recipe);
494
+ },
495
+ splitVariantProps(props) {
496
+ return splitProps$1(props, boxVariantKeys);
497
+ },
498
+ getVariantProps: boxFn.getVariantProps
499
+ });
500
+ const breadcrumbsFn = /* @__PURE__ */ createRecipe("breadcrumbs", {}, []);
501
+ const breadcrumbsVariantMap = {};
502
+ const breadcrumbsVariantKeys = Object.keys(breadcrumbsVariantMap);
503
+ const breadcrumbs = /* @__PURE__ */ Object.assign(memo(breadcrumbsFn.recipeFn), {
504
+ __recipe__: true,
505
+ __name__: "breadcrumbs",
506
+ __getCompoundVariantCss__: breadcrumbsFn.__getCompoundVariantCss__,
507
+ raw: (props) => props,
508
+ variantKeys: breadcrumbsVariantKeys,
509
+ variantMap: breadcrumbsVariantMap,
510
+ merge(recipe) {
511
+ return mergeRecipes(this, recipe);
512
+ },
513
+ splitVariantProps(props) {
514
+ return splitProps$1(props, breadcrumbsVariantKeys);
515
+ },
516
+ getVariantProps: breadcrumbsFn.getVariantProps
517
+ });
518
+ const buttonFn = /* @__PURE__ */ createRecipe("button", {
519
+ "variant": "standard",
520
+ "size": "standard"
521
+ }, []);
522
+ const buttonVariantMap = {
523
+ "variant": [
524
+ "primary",
525
+ "standard",
526
+ "hollow",
527
+ "ghost",
528
+ "cta",
529
+ "danger"
530
+ ],
531
+ "size": [
532
+ "standard",
533
+ "large",
534
+ "small"
535
+ ]
536
+ };
537
+ const buttonVariantKeys = Object.keys(buttonVariantMap);
538
+ const button = /* @__PURE__ */ Object.assign(memo(buttonFn.recipeFn), {
539
+ __recipe__: true,
540
+ __name__: "button",
541
+ __getCompoundVariantCss__: buttonFn.__getCompoundVariantCss__,
542
+ raw: (props) => props,
543
+ variantKeys: buttonVariantKeys,
544
+ variantMap: buttonVariantMap,
545
+ merge(recipe) {
546
+ return mergeRecipes(this, recipe);
547
+ },
548
+ splitVariantProps(props) {
549
+ return splitProps$1(props, buttonVariantKeys);
550
+ },
551
+ getVariantProps: buttonFn.getVariantProps
552
+ });
553
+ const cardFn = /* @__PURE__ */ createRecipe("card", {
554
+ "variant": "default"
555
+ }, []);
556
+ const cardVariantMap = {
557
+ "variant": [
558
+ "default",
559
+ "flat"
560
+ ]
561
+ };
562
+ const cardVariantKeys = Object.keys(cardVariantMap);
563
+ const card = /* @__PURE__ */ Object.assign(memo(cardFn.recipeFn), {
564
+ __recipe__: true,
565
+ __name__: "card",
566
+ __getCompoundVariantCss__: cardFn.__getCompoundVariantCss__,
567
+ raw: (props) => props,
568
+ variantKeys: cardVariantKeys,
569
+ variantMap: cardVariantMap,
570
+ merge(recipe) {
571
+ return mergeRecipes(this, recipe);
572
+ },
573
+ splitVariantProps(props) {
574
+ return splitProps$1(props, cardVariantKeys);
575
+ },
576
+ getVariantProps: cardFn.getVariantProps
577
+ });
578
+ const checkboxInputFn = /* @__PURE__ */ createRecipe("checkbox-input", {}, []);
579
+ const checkboxInputVariantMap = {};
580
+ const checkboxInputVariantKeys = Object.keys(checkboxInputVariantMap);
581
+ const checkboxInput = /* @__PURE__ */ Object.assign(memo(checkboxInputFn.recipeFn), {
582
+ __recipe__: true,
583
+ __name__: "checkboxInput",
584
+ __getCompoundVariantCss__: checkboxInputFn.__getCompoundVariantCss__,
585
+ raw: (props) => props,
586
+ variantKeys: checkboxInputVariantKeys,
587
+ variantMap: checkboxInputVariantMap,
588
+ merge(recipe) {
589
+ return mergeRecipes(this, recipe);
590
+ },
591
+ splitVariantProps(props) {
592
+ return splitProps$1(props, checkboxInputVariantKeys);
593
+ },
594
+ getVariantProps: checkboxInputFn.getVariantProps
595
+ });
596
+ const codeFn = /* @__PURE__ */ createRecipe("code", {}, []);
597
+ const codeVariantMap = {};
598
+ const codeVariantKeys = Object.keys(codeVariantMap);
599
+ const code = /* @__PURE__ */ Object.assign(memo(codeFn.recipeFn), {
600
+ __recipe__: true,
601
+ __name__: "code",
602
+ __getCompoundVariantCss__: codeFn.__getCompoundVariantCss__,
603
+ raw: (props) => props,
604
+ variantKeys: codeVariantKeys,
605
+ variantMap: codeVariantMap,
606
+ merge(recipe) {
607
+ return mergeRecipes(this, recipe);
608
+ },
609
+ splitVariantProps(props) {
610
+ return splitProps$1(props, codeVariantKeys);
611
+ },
612
+ getVariantProps: codeFn.getVariantProps
613
+ });
614
+ const dividerFn = /* @__PURE__ */ createRecipe("divider", {
615
+ "direction": "horizontal",
616
+ "weight": "thin"
617
+ }, []);
618
+ const dividerVariantMap = {
619
+ "direction": [
620
+ "horizontal",
621
+ "vertical"
622
+ ],
623
+ "weight": [
624
+ "thin",
625
+ "medium",
626
+ "thick",
627
+ "thicker"
628
+ ]
629
+ };
630
+ const dividerVariantKeys = Object.keys(dividerVariantMap);
631
+ const divider = /* @__PURE__ */ Object.assign(memo(dividerFn.recipeFn), {
632
+ __recipe__: true,
633
+ __name__: "divider",
634
+ __getCompoundVariantCss__: dividerFn.__getCompoundVariantCss__,
635
+ raw: (props) => props,
636
+ variantKeys: dividerVariantKeys,
637
+ variantMap: dividerVariantMap,
638
+ merge(recipe) {
639
+ return mergeRecipes(this, recipe);
640
+ },
641
+ splitVariantProps(props) {
642
+ return splitProps$1(props, dividerVariantKeys);
643
+ },
644
+ getVariantProps: dividerFn.getVariantProps
645
+ });
646
+ const headingFn = /* @__PURE__ */ createRecipe("heading", {
647
+ "level": "h2"
648
+ }, []);
649
+ const headingVariantMap = {
650
+ "level": [
651
+ "h1",
652
+ "h2",
653
+ "h3",
654
+ "h4"
655
+ ]
656
+ };
657
+ const headingVariantKeys = Object.keys(headingVariantMap);
658
+ const heading = /* @__PURE__ */ Object.assign(memo(headingFn.recipeFn), {
659
+ __recipe__: true,
660
+ __name__: "heading",
661
+ __getCompoundVariantCss__: headingFn.__getCompoundVariantCss__,
662
+ raw: (props) => props,
663
+ variantKeys: headingVariantKeys,
664
+ variantMap: headingVariantMap,
665
+ merge(recipe) {
666
+ return mergeRecipes(this, recipe);
667
+ },
668
+ splitVariantProps(props) {
669
+ return splitProps$1(props, headingVariantKeys);
670
+ },
671
+ getVariantProps: headingFn.getVariantProps
672
+ });
673
+ const iconButtonFn = /* @__PURE__ */ createRecipe("icon-button", {
674
+ "variant": "standard",
675
+ "size": "standard"
676
+ }, []);
677
+ const iconButtonVariantMap = {
678
+ "variant": [
679
+ "primary",
680
+ "standard",
681
+ "hollow",
682
+ "ghost",
683
+ "cta",
684
+ "danger"
685
+ ],
686
+ "size": [
687
+ "standard",
688
+ "large",
689
+ "small"
690
+ ]
691
+ };
692
+ const iconButtonVariantKeys = Object.keys(iconButtonVariantMap);
693
+ const iconButton = /* @__PURE__ */ Object.assign(memo(iconButtonFn.recipeFn), {
694
+ __recipe__: true,
695
+ __name__: "iconButton",
696
+ __getCompoundVariantCss__: iconButtonFn.__getCompoundVariantCss__,
697
+ raw: (props) => props,
698
+ variantKeys: iconButtonVariantKeys,
699
+ variantMap: iconButtonVariantMap,
700
+ merge(recipe) {
701
+ return mergeRecipes(this, recipe);
702
+ },
703
+ splitVariantProps(props) {
704
+ return splitProps$1(props, iconButtonVariantKeys);
705
+ },
706
+ getVariantProps: iconButtonFn.getVariantProps
707
+ });
708
+ const labelFn = /* @__PURE__ */ createRecipe("label", {
709
+ "family": "sans"
710
+ }, []);
711
+ const labelVariantMap = {
712
+ "family": [
713
+ "sans",
714
+ "serif",
715
+ "mono"
716
+ ],
717
+ "bold": [
718
+ "true"
719
+ ],
720
+ "italic": [
721
+ "true"
722
+ ],
723
+ "underline": [
724
+ "true"
725
+ ],
726
+ "_disabled": [
727
+ "true"
728
+ ]
729
+ };
730
+ const labelVariantKeys = Object.keys(labelVariantMap);
731
+ const label = /* @__PURE__ */ Object.assign(memo(labelFn.recipeFn), {
732
+ __recipe__: true,
733
+ __name__: "label",
734
+ __getCompoundVariantCss__: labelFn.__getCompoundVariantCss__,
735
+ raw: (props) => props,
736
+ variantKeys: labelVariantKeys,
737
+ variantMap: labelVariantMap,
738
+ merge(recipe) {
739
+ return mergeRecipes(this, recipe);
740
+ },
741
+ splitVariantProps(props) {
742
+ return splitProps$1(props, labelVariantKeys);
743
+ },
744
+ getVariantProps: labelFn.getVariantProps
745
+ });
746
+ const linkFn = /* @__PURE__ */ createRecipe("link", {
747
+ "family": "sans"
748
+ }, []);
749
+ const linkVariantMap = {
750
+ "family": [
751
+ "sans",
752
+ "serif",
753
+ "mono"
754
+ ],
755
+ "bold": [
756
+ "true"
757
+ ],
758
+ "italic": [
759
+ "true"
760
+ ],
761
+ "underline": [
762
+ "true"
763
+ ],
764
+ "_disabled": [
765
+ "true"
766
+ ]
767
+ };
768
+ const linkVariantKeys = Object.keys(linkVariantMap);
769
+ const link = /* @__PURE__ */ Object.assign(memo(linkFn.recipeFn), {
770
+ __recipe__: true,
771
+ __name__: "link",
772
+ __getCompoundVariantCss__: linkFn.__getCompoundVariantCss__,
773
+ raw: (props) => props,
774
+ variantKeys: linkVariantKeys,
775
+ variantMap: linkVariantMap,
776
+ merge(recipe) {
777
+ return mergeRecipes(this, recipe);
778
+ },
779
+ splitVariantProps(props) {
780
+ return splitProps$1(props, linkVariantKeys);
781
+ },
782
+ getVariantProps: linkFn.getVariantProps
783
+ });
784
+ const preFn = /* @__PURE__ */ createRecipe("pre", {}, []);
785
+ const preVariantMap = {};
786
+ const preVariantKeys = Object.keys(preVariantMap);
787
+ const pre = /* @__PURE__ */ Object.assign(memo(preFn.recipeFn), {
788
+ __recipe__: true,
789
+ __name__: "pre",
790
+ __getCompoundVariantCss__: preFn.__getCompoundVariantCss__,
791
+ raw: (props) => props,
792
+ variantKeys: preVariantKeys,
793
+ variantMap: preVariantMap,
794
+ merge(recipe) {
795
+ return mergeRecipes(this, recipe);
796
+ },
797
+ splitVariantProps(props) {
798
+ return splitProps$1(props, preVariantKeys);
799
+ },
800
+ getVariantProps: preFn.getVariantProps
801
+ });
802
+ const radioInputFn = /* @__PURE__ */ createRecipe("radio-input", {}, []);
803
+ const radioInputVariantMap = {};
804
+ const radioInputVariantKeys = Object.keys(radioInputVariantMap);
805
+ const radioInput = /* @__PURE__ */ Object.assign(memo(radioInputFn.recipeFn), {
806
+ __recipe__: true,
807
+ __name__: "radioInput",
808
+ __getCompoundVariantCss__: radioInputFn.__getCompoundVariantCss__,
809
+ raw: (props) => props,
810
+ variantKeys: radioInputVariantKeys,
811
+ variantMap: radioInputVariantMap,
812
+ merge(recipe) {
813
+ return mergeRecipes(this, recipe);
814
+ },
815
+ splitVariantProps(props) {
816
+ return splitProps$1(props, radioInputVariantKeys);
817
+ },
818
+ getVariantProps: radioInputFn.getVariantProps
819
+ });
820
+ const spinnerFn = /* @__PURE__ */ createRecipe("spinner", {
821
+ "size": "standard"
822
+ }, []);
823
+ const spinnerVariantMap = {
824
+ "size": [
825
+ "standard",
826
+ "small",
827
+ "large"
828
+ ]
829
+ };
830
+ const spinnerVariantKeys = Object.keys(spinnerVariantMap);
831
+ const spinner = /* @__PURE__ */ Object.assign(memo(spinnerFn.recipeFn), {
832
+ __recipe__: true,
833
+ __name__: "spinner",
834
+ __getCompoundVariantCss__: spinnerFn.__getCompoundVariantCss__,
835
+ raw: (props) => props,
836
+ variantKeys: spinnerVariantKeys,
837
+ variantMap: spinnerVariantMap,
838
+ merge(recipe) {
839
+ return mergeRecipes(this, recipe);
840
+ },
841
+ splitVariantProps(props) {
842
+ return splitProps$1(props, spinnerVariantKeys);
843
+ },
844
+ getVariantProps: spinnerFn.getVariantProps
845
+ });
846
+ const tagFn = /* @__PURE__ */ createRecipe("tag", {
847
+ "variant": "default",
848
+ "hue": "slate",
849
+ "iconPosition": "left",
850
+ "hasIcon": false
851
+ }, [
852
+ {
853
+ "hue": "slate",
854
+ "variant": "default",
855
+ "css": {
856
+ "color": {
857
+ "base": "gray.70",
858
+ "_dark": "gray.20"
859
+ },
860
+ "bg": {
861
+ "base": "gray.10",
862
+ "_dark": "gray.70"
863
+ }
864
+ }
865
+ },
866
+ {
867
+ "hue": "slate",
868
+ "variant": "bold",
869
+ "css": {
870
+ "color": {
871
+ "base": "gray.0",
872
+ "_dark": "gray.80"
873
+ },
874
+ "bg": {
875
+ "base": "gray.50",
876
+ "_dark": "gray.20"
877
+ }
878
+ }
879
+ },
880
+ {
881
+ "hue": "tan",
882
+ "variant": "default",
883
+ "css": {
884
+ "color": {
885
+ "base": "tan.70",
886
+ "_dark": "tan.20"
887
+ },
888
+ "bg": {
889
+ "base": "tan.10",
890
+ "_dark": "tan.70"
891
+ }
892
+ }
893
+ },
894
+ {
895
+ "hue": "tan",
896
+ "variant": "bold",
897
+ "css": {
898
+ "color": {
899
+ "base": "gray.0",
900
+ "_dark": "tan.80"
901
+ },
902
+ "bg": {
903
+ "base": "tan.50",
904
+ "_dark": "tan.20"
905
+ }
906
+ }
907
+ },
908
+ {
909
+ "hue": "red",
910
+ "variant": "default",
911
+ "css": {
912
+ "color": {
913
+ "base": "red.70",
914
+ "_dark": "red.10"
915
+ },
916
+ "bg": {
917
+ "base": "red.10",
918
+ "_dark": "red.70"
919
+ }
920
+ }
921
+ },
922
+ {
923
+ "hue": "red",
924
+ "variant": "bold",
925
+ "css": {
926
+ "color": {
927
+ "base": "gray.0",
928
+ "_dark": "red.80"
929
+ },
930
+ "bg": {
931
+ "base": "red.50",
932
+ "_dark": "red.20"
933
+ }
934
+ }
935
+ },
936
+ {
937
+ "hue": "tomato",
938
+ "variant": "default",
939
+ "css": {
940
+ "color": {
941
+ "base": "tomato.70",
942
+ "_dark": "tomato.20"
943
+ },
944
+ "bg": {
945
+ "base": "tomato.10",
946
+ "_dark": "tomato.70"
947
+ }
948
+ }
949
+ },
950
+ {
951
+ "hue": "tomato",
952
+ "variant": "bold",
953
+ "css": {
954
+ "color": {
955
+ "base": "gray.0",
956
+ "_dark": "tomato.80"
957
+ },
958
+ "bg": {
959
+ "base": "tomato.50",
960
+ "_dark": "tomato.20"
961
+ }
962
+ }
963
+ },
964
+ {
965
+ "hue": "orange",
966
+ "variant": "default",
967
+ "css": {
968
+ "color": {
969
+ "base": "orange.70",
970
+ "_dark": "orange.20"
971
+ },
972
+ "bg": {
973
+ "base": "orange.10",
974
+ "_dark": "orange.70"
975
+ }
976
+ }
977
+ },
978
+ {
979
+ "hue": "orange",
980
+ "variant": "bold",
981
+ "css": {
982
+ "color": {
983
+ "base": "orange.5",
984
+ "_dark": "orange.80"
985
+ },
986
+ "bg": {
987
+ "base": "orange.60",
988
+ "_dark": "orange.20"
989
+ }
990
+ }
991
+ },
992
+ {
993
+ "hue": "yellow",
994
+ "variant": "default",
995
+ "css": {
996
+ "color": {
997
+ "base": "yellow.60",
998
+ "_dark": "yellow.10"
999
+ },
1000
+ "bg": {
1001
+ "base": "yellow.10",
1002
+ "_dark": "yellow.60"
1003
+ }
1004
+ }
1005
+ },
1006
+ {
1007
+ "hue": "yellow",
1008
+ "variant": "bold",
1009
+ "css": {
1010
+ "color": {
1011
+ "base": "yellow.70",
1012
+ "_dark": "yellow.90"
1013
+ },
1014
+ "bg": {
1015
+ "base": "yellow.20",
1016
+ "_dark": "yellow.20"
1017
+ }
1018
+ }
1019
+ },
1020
+ {
1021
+ "hue": "green",
1022
+ "variant": "default",
1023
+ "css": {
1024
+ "color": {
1025
+ "base": "green.70",
1026
+ "_dark": "green.20"
1027
+ },
1028
+ "bg": {
1029
+ "base": "green.10",
1030
+ "_dark": "green.70"
1031
+ }
1032
+ }
1033
+ },
1034
+ {
1035
+ "hue": "green",
1036
+ "variant": "bold",
1037
+ "css": {
1038
+ "color": {
1039
+ "base": "gray.0",
1040
+ "_dark": "green.80"
1041
+ },
1042
+ "bg": {
1043
+ "base": "green.50",
1044
+ "_dark": "green.20"
1045
+ }
1046
+ }
1047
+ },
1048
+ {
1049
+ "hue": "grass",
1050
+ "variant": "default",
1051
+ "css": {
1052
+ "color": {
1053
+ "base": "grass.70",
1054
+ "_dark": "grass.10"
1055
+ },
1056
+ "bg": {
1057
+ "base": "grass.10",
1058
+ "_dark": "grass.70"
1059
+ }
1060
+ }
1061
+ },
1062
+ {
1063
+ "hue": "grass",
1064
+ "variant": "bold",
1065
+ "css": {
1066
+ "color": {
1067
+ "base": "gray.0",
1068
+ "_dark": "grass.80"
1069
+ },
1070
+ "bg": {
1071
+ "base": "grass.60",
1072
+ "_dark": "grass.20"
1073
+ }
1074
+ }
1075
+ },
1076
+ {
1077
+ "hue": "mint",
1078
+ "variant": "default",
1079
+ "css": {
1080
+ "color": {
1081
+ "base": "mint.80",
1082
+ "_dark": "mint.30"
1083
+ },
1084
+ "bg": {
1085
+ "base": "mint.10",
1086
+ "_dark": "mint.80"
1087
+ }
1088
+ }
1089
+ },
1090
+ {
1091
+ "hue": "mint",
1092
+ "variant": "bold",
1093
+ "css": {
1094
+ "color": {
1095
+ "base": "gray.0",
1096
+ "_dark": "mint.80"
1097
+ },
1098
+ "bg": {
1099
+ "base": "mint.70",
1100
+ "_dark": "mint.20"
1101
+ }
1102
+ }
1103
+ },
1104
+ {
1105
+ "hue": "cyan",
1106
+ "variant": "default",
1107
+ "css": {
1108
+ "color": {
1109
+ "base": "cyan.70",
1110
+ "_dark": "cyan.20"
1111
+ },
1112
+ "bg": {
1113
+ "base": "cyan.10",
1114
+ "_dark": "cyan.70"
1115
+ }
1116
+ }
1117
+ },
1118
+ {
1119
+ "hue": "cyan",
1120
+ "variant": "bold",
1121
+ "css": {
1122
+ "color": {
1123
+ "base": "cyan.5",
1124
+ "_dark": "cyan.80"
1125
+ },
1126
+ "bg": {
1127
+ "base": "cyan.60",
1128
+ "_dark": "cyan.30"
1129
+ }
1130
+ }
1131
+ },
1132
+ {
1133
+ "hue": "blue",
1134
+ "variant": "default",
1135
+ "css": {
1136
+ "color": {
1137
+ "base": "blue.70",
1138
+ "_dark": "blue.20"
1139
+ },
1140
+ "bg": {
1141
+ "base": "blue.10",
1142
+ "_dark": "blue.70"
1143
+ }
1144
+ }
1145
+ },
1146
+ {
1147
+ "hue": "blue",
1148
+ "variant": "bold",
1149
+ "css": {
1150
+ "color": {
1151
+ "base": "gray.0",
1152
+ "_dark": "blue.90"
1153
+ },
1154
+ "bg": {
1155
+ "base": "blue.50",
1156
+ "_dark": "blue.40"
1157
+ }
1158
+ }
1159
+ },
1160
+ {
1161
+ "hue": "indigo",
1162
+ "variant": "default",
1163
+ "css": {
1164
+ "color": {
1165
+ "base": "indigo.70",
1166
+ "_dark": "indigo.10"
1167
+ },
1168
+ "bg": {
1169
+ "base": "indigo.10",
1170
+ "_dark": "indigo.70"
1171
+ }
1172
+ }
1173
+ },
1174
+ {
1175
+ "hue": "indigo",
1176
+ "variant": "bold",
1177
+ "css": {
1178
+ "color": {
1179
+ "base": "indigo.5",
1180
+ "_dark": "indigo.80"
1181
+ },
1182
+ "bg": {
1183
+ "base": "indigo.50",
1184
+ "_dark": "indigo.20"
1185
+ }
1186
+ }
1187
+ },
1188
+ {
1189
+ "hue": "purple",
1190
+ "variant": "default",
1191
+ "css": {
1192
+ "color": {
1193
+ "base": "purple.70",
1194
+ "_dark": "purple.20"
1195
+ },
1196
+ "bg": {
1197
+ "base": "purple.10",
1198
+ "_dark": "purple.70"
1199
+ }
1200
+ }
1201
+ },
1202
+ {
1203
+ "hue": "purple",
1204
+ "variant": "bold",
1205
+ "css": {
1206
+ "color": {
1207
+ "base": "gray.0",
1208
+ "_dark": "purple.80"
1209
+ },
1210
+ "bg": {
1211
+ "base": "purple.50",
1212
+ "_dark": "purple.20"
1213
+ }
1214
+ }
1215
+ },
1216
+ {
1217
+ "hue": "violet",
1218
+ "variant": "default",
1219
+ "css": {
1220
+ "color": {
1221
+ "base": "violet.70",
1222
+ "_dark": "violet.10"
1223
+ },
1224
+ "bg": {
1225
+ "base": "violet.10",
1226
+ "_dark": "violet.70"
1227
+ }
1228
+ }
1229
+ },
1230
+ {
1231
+ "hue": "violet",
1232
+ "variant": "bold",
1233
+ "css": {
1234
+ "color": {
1235
+ "base": "violet.5",
1236
+ "_dark": "violet.80"
1237
+ },
1238
+ "bg": {
1239
+ "base": "violet.60",
1240
+ "_dark": "violet.20"
1241
+ }
1242
+ }
1243
+ },
1244
+ {
1245
+ "hue": "pink",
1246
+ "variant": "default",
1247
+ "css": {
1248
+ "color": {
1249
+ "base": "pink.70",
1250
+ "_dark": "pink.10"
1251
+ },
1252
+ "bg": {
1253
+ "base": "pink.10",
1254
+ "_dark": "pink.70"
1255
+ }
1256
+ }
1257
+ },
1258
+ {
1259
+ "hue": "pink",
1260
+ "variant": "bold",
1261
+ "css": {
1262
+ "color": {
1263
+ "base": "pink.5",
1264
+ "_dark": "pink.80"
1265
+ },
1266
+ "bg": {
1267
+ "base": "pink.70",
1268
+ "_dark": "pink.20"
1269
+ }
1270
+ }
1271
+ },
1272
+ {
1273
+ "hue": "rose",
1274
+ "variant": "default",
1275
+ "css": {
1276
+ "color": {
1277
+ "base": "rose.70",
1278
+ "_dark": "rose.10"
1279
+ },
1280
+ "bg": {
1281
+ "base": "rose.10",
1282
+ "_dark": "rose.70"
1283
+ }
1284
+ }
1285
+ },
1286
+ {
1287
+ "hue": "rose",
1288
+ "variant": "bold",
1289
+ "css": {
1290
+ "color": {
1291
+ "base": "rose.5",
1292
+ "_dark": "rose.80"
1293
+ },
1294
+ "bg": {
1295
+ "base": "rose.60",
1296
+ "_dark": "rose.20"
1297
+ }
1298
+ }
1299
+ },
1300
+ {
1301
+ "hue": "magenta",
1302
+ "variant": "default",
1303
+ "css": {
1304
+ "color": {
1305
+ "base": "magenta.70",
1306
+ "_dark": "magenta.10"
1307
+ },
1308
+ "bg": {
1309
+ "base": "magenta.10",
1310
+ "_dark": "magenta.70"
1311
+ }
1312
+ }
1313
+ },
1314
+ {
1315
+ "hue": "magenta",
1316
+ "variant": "bold",
1317
+ "css": {
1318
+ "color": {
1319
+ "base": "magenta.5",
1320
+ "_dark": "magenta.80"
1321
+ },
1322
+ "bg": {
1323
+ "base": "magenta.60",
1324
+ "_dark": "magenta.20"
1325
+ }
1326
+ }
1327
+ }
1328
+ ]);
1329
+ const tagVariantMap = {
1330
+ "variant": [
1331
+ "default",
1332
+ "bold"
1333
+ ],
1334
+ "hue": [
1335
+ "slate",
1336
+ "tan",
1337
+ "red",
1338
+ "tomato",
1339
+ "orange",
1340
+ "yellow",
1341
+ "green",
1342
+ "grass",
1343
+ "mint",
1344
+ "cyan",
1345
+ "blue",
1346
+ "indigo",
1347
+ "purple",
1348
+ "violet",
1349
+ "pink",
1350
+ "rose",
1351
+ "magenta"
1352
+ ],
1353
+ "iconPosition": [
1354
+ "left",
1355
+ "right"
1356
+ ],
1357
+ "hasIcon": [
1358
+ "true",
1359
+ "false"
1360
+ ]
1361
+ };
1362
+ const tagVariantKeys = Object.keys(tagVariantMap);
1363
+ const tag = /* @__PURE__ */ Object.assign(memo(tagFn.recipeFn), {
1364
+ __recipe__: true,
1365
+ __name__: "tag",
1366
+ __getCompoundVariantCss__: tagFn.__getCompoundVariantCss__,
1367
+ raw: (props) => props,
1368
+ variantKeys: tagVariantKeys,
1369
+ variantMap: tagVariantMap,
1370
+ merge(recipe) {
1371
+ return mergeRecipes(this, recipe);
1372
+ },
1373
+ splitVariantProps(props) {
1374
+ return splitProps$1(props, tagVariantKeys);
1375
+ },
1376
+ getVariantProps: tagFn.getVariantProps
1377
+ });
1378
+ const textFn = /* @__PURE__ */ createRecipe("text", {
1379
+ "family": "sans"
1380
+ }, []);
1381
+ const textVariantMap = {
1382
+ "family": [
1383
+ "sans",
1384
+ "serif",
1385
+ "mono"
1386
+ ],
1387
+ "bold": [
1388
+ "true"
1389
+ ],
1390
+ "italic": [
1391
+ "true"
1392
+ ],
1393
+ "underline": [
1394
+ "true"
1395
+ ]
1396
+ };
1397
+ const textVariantKeys = Object.keys(textVariantMap);
1398
+ const text = /* @__PURE__ */ Object.assign(memo(textFn.recipeFn), {
1399
+ __recipe__: true,
1400
+ __name__: "text",
1401
+ __getCompoundVariantCss__: textFn.__getCompoundVariantCss__,
1402
+ raw: (props) => props,
1403
+ variantKeys: textVariantKeys,
1404
+ variantMap: textVariantMap,
1405
+ merge(recipe) {
1406
+ return mergeRecipes(this, recipe);
1407
+ },
1408
+ splitVariantProps(props) {
1409
+ return splitProps$1(props, textVariantKeys);
1410
+ },
1411
+ getVariantProps: textFn.getVariantProps
1412
+ });
1413
+ const textareaFn = /* @__PURE__ */ createRecipe("textarea", {
1414
+ "stacked": true,
1415
+ "internalLabel": false,
1416
+ "autoGrow": false
1417
+ }, []);
1418
+ const textareaVariantMap = {
1419
+ "autoGrow": [
1420
+ "false",
1421
+ "true"
1422
+ ],
1423
+ "stacked": [
1424
+ "true",
1425
+ "false"
1426
+ ],
1427
+ "internalLabel": [
1428
+ "false",
1429
+ "true"
1430
+ ]
1431
+ };
1432
+ const textareaVariantKeys = Object.keys(textareaVariantMap);
1433
+ const textarea = /* @__PURE__ */ Object.assign(memo(textareaFn.recipeFn), {
1434
+ __recipe__: true,
1435
+ __name__: "textarea",
1436
+ __getCompoundVariantCss__: textareaFn.__getCompoundVariantCss__,
1437
+ raw: (props) => props,
1438
+ variantKeys: textareaVariantKeys,
1439
+ variantMap: textareaVariantMap,
1440
+ merge(recipe) {
1441
+ return mergeRecipes(this, recipe);
1442
+ },
1443
+ splitVariantProps(props) {
1444
+ return splitProps$1(props, textareaVariantKeys);
1445
+ },
1446
+ getVariantProps: textareaFn.getVariantProps
1447
+ });
1448
+ const textinputFn = /* @__PURE__ */ createRecipe("textinput", {
1449
+ "size": "medium"
1450
+ }, []);
1451
+ const textinputVariantMap = {
1452
+ "size": [
1453
+ "medium",
1454
+ "small",
1455
+ "large"
1456
+ ],
1457
+ "autoSize": [
1458
+ "true"
1459
+ ]
1460
+ };
1461
+ const textinputVariantKeys = Object.keys(textinputVariantMap);
1462
+ const textinput = /* @__PURE__ */ Object.assign(memo(textinputFn.recipeFn), {
1463
+ __recipe__: true,
1464
+ __name__: "textinput",
1465
+ __getCompoundVariantCss__: textinputFn.__getCompoundVariantCss__,
1466
+ raw: (props) => props,
1467
+ variantKeys: textinputVariantKeys,
1468
+ variantMap: textinputVariantMap,
1469
+ merge(recipe) {
1470
+ return mergeRecipes(this, recipe);
1471
+ },
1472
+ splitVariantProps(props) {
1473
+ return splitProps$1(props, textinputVariantKeys);
1474
+ },
1475
+ getVariantProps: textinputFn.getVariantProps
1476
+ });
1477
+ const toggleInputFn = /* @__PURE__ */ createRecipe("toggle-input", {}, []);
1478
+ const toggleInputVariantMap = {};
1479
+ const toggleInputVariantKeys = Object.keys(toggleInputVariantMap);
1480
+ const toggleInput = /* @__PURE__ */ Object.assign(memo(toggleInputFn.recipeFn), {
1481
+ __recipe__: true,
1482
+ __name__: "toggleInput",
1483
+ __getCompoundVariantCss__: toggleInputFn.__getCompoundVariantCss__,
1484
+ raw: (props) => props,
1485
+ variantKeys: toggleInputVariantKeys,
1486
+ variantMap: toggleInputVariantMap,
1487
+ merge(recipe) {
1488
+ return mergeRecipes(this, recipe);
1489
+ },
1490
+ splitVariantProps(props) {
1491
+ return splitProps$1(props, toggleInputVariantKeys);
1492
+ },
1493
+ getVariantProps: toggleInputFn.getVariantProps
1494
+ });
1495
+ const checkboxDefaultVariants = {};
1496
+ const checkboxCompoundVariants = [];
1497
+ const checkboxSlotNames = [
1498
+ [
1499
+ "container",
1500
+ "checkbox__container"
1501
+ ],
1502
+ [
1503
+ "input",
1504
+ "checkbox__input"
1505
+ ],
1506
+ [
1507
+ "indicator",
1508
+ "checkbox__indicator"
1509
+ ]
1510
+ ];
1511
+ const checkboxSlotFns = /* @__PURE__ */ checkboxSlotNames.map(([slotName, slotKey]) => [slotName, createRecipe(slotKey, checkboxDefaultVariants, getSlotCompoundVariant(checkboxCompoundVariants, slotName))]);
1512
+ const checkboxFn = memo((props = {}) => {
1513
+ return Object.fromEntries(checkboxSlotFns.map(([slotName, slotFn]) => [slotName, slotFn.recipeFn(props)]));
1514
+ });
1515
+ const checkboxVariantKeys = [];
1516
+ const getVariantProps$4 = (variants) => ({ ...checkboxDefaultVariants, ...compact(variants) });
1517
+ const checkbox = /* @__PURE__ */ Object.assign(checkboxFn, {
1518
+ __recipe__: false,
1519
+ __name__: "checkbox",
1520
+ raw: (props) => props,
1521
+ classNameMap: {},
1522
+ variantKeys: checkboxVariantKeys,
1523
+ variantMap: {},
1524
+ splitVariantProps(props) {
1525
+ return splitProps$1(props, checkboxVariantKeys);
1526
+ },
1527
+ getVariantProps: getVariantProps$4
1528
+ });
1529
+ const radioDefaultVariants = {};
1530
+ const radioCompoundVariants = [];
1531
+ const radioSlotNames = [
1532
+ [
1533
+ "container",
1534
+ "radio__container"
1535
+ ],
1536
+ [
1537
+ "input",
1538
+ "radio__input"
1539
+ ],
1540
+ [
1541
+ "indicator",
1542
+ "radio__indicator"
1543
+ ]
1544
+ ];
1545
+ const radioSlotFns = /* @__PURE__ */ radioSlotNames.map(([slotName, slotKey]) => [slotName, createRecipe(slotKey, radioDefaultVariants, getSlotCompoundVariant(radioCompoundVariants, slotName))]);
1546
+ const radioFn = memo((props = {}) => {
1547
+ return Object.fromEntries(radioSlotFns.map(([slotName, slotFn]) => [slotName, slotFn.recipeFn(props)]));
1548
+ });
1549
+ const radioVariantKeys = [];
1550
+ const getVariantProps$3 = (variants) => ({ ...radioDefaultVariants, ...compact(variants) });
1551
+ const radio = /* @__PURE__ */ Object.assign(radioFn, {
1552
+ __recipe__: false,
1553
+ __name__: "radio",
1554
+ raw: (props) => props,
1555
+ classNameMap: {},
1556
+ variantKeys: radioVariantKeys,
1557
+ variantMap: {},
1558
+ splitVariantProps(props) {
1559
+ return splitProps$1(props, radioVariantKeys);
1560
+ },
1561
+ getVariantProps: getVariantProps$3
1562
+ });
1563
+ const tooltipDefaultVariants = {
1564
+ "position": "bottom"
1565
+ };
1566
+ const tooltipCompoundVariants = [
1567
+ {
1568
+ "position": [
1569
+ "top",
1570
+ "top-start",
1571
+ "top-end"
1572
+ ],
1573
+ "caret": true,
1574
+ "css": {
1575
+ "tooltipContent": {
1576
+ "mb": "12"
1577
+ }
1578
+ }
1579
+ },
1580
+ {
1581
+ "position": [
1582
+ "top",
1583
+ "top-start",
1584
+ "top-end"
1585
+ ],
1586
+ "caret": false,
1587
+ "css": {
1588
+ "tooltipContent": {
1589
+ "mb": "8"
1590
+ }
1591
+ }
1592
+ },
1593
+ {
1594
+ "position": [
1595
+ "bottom",
1596
+ "bottom-start",
1597
+ "bottom-end"
1598
+ ],
1599
+ "caret": true,
1600
+ "css": {
1601
+ "tooltipContent": {
1602
+ "mt": "12"
1603
+ }
1604
+ }
1605
+ },
1606
+ {
1607
+ "position": [
1608
+ "bottom",
1609
+ "bottom-start",
1610
+ "bottom-end"
1611
+ ],
1612
+ "caret": false,
1613
+ "css": {
1614
+ "tooltipContent": {
1615
+ "mt": "8"
1616
+ }
1617
+ }
1618
+ },
1619
+ {
1620
+ "position": [
1621
+ "left",
1622
+ "left-start",
1623
+ "left-end"
1624
+ ],
1625
+ "caret": true,
1626
+ "css": {
1627
+ "tooltipContent": {
1628
+ "mr": "12"
1629
+ }
1630
+ }
1631
+ },
1632
+ {
1633
+ "position": [
1634
+ "left",
1635
+ "left-start",
1636
+ "left-end"
1637
+ ],
1638
+ "caret": false,
1639
+ "css": {
1640
+ "tooltipContent": {
1641
+ "mr": "8"
1642
+ }
1643
+ }
1644
+ },
1645
+ {
1646
+ "position": [
1647
+ "right",
1648
+ "right-start",
1649
+ "right-end"
1650
+ ],
1651
+ "caret": true,
1652
+ "css": {
1653
+ "tooltipContent": {
1654
+ "ml": "12"
1655
+ }
1656
+ }
1657
+ },
1658
+ {
1659
+ "position": [
1660
+ "right",
1661
+ "right-start",
1662
+ "right-end"
1663
+ ],
1664
+ "caret": false,
1665
+ "css": {
1666
+ "tooltipContent": {
1667
+ "ml": "8"
1668
+ }
1669
+ }
1670
+ }
1671
+ ];
1672
+ const tooltipSlotNames = [
1673
+ [
1674
+ "wrapper",
1675
+ "tooltip__wrapper"
1676
+ ],
1677
+ [
1678
+ "tooltipContent",
1679
+ "tooltip__tooltipContent"
1680
+ ]
1681
+ ];
1682
+ const tooltipSlotFns = /* @__PURE__ */ tooltipSlotNames.map(([slotName, slotKey]) => [slotName, createRecipe(slotKey, tooltipDefaultVariants, getSlotCompoundVariant(tooltipCompoundVariants, slotName))]);
1683
+ const tooltipFn = memo((props = {}) => {
1684
+ return Object.fromEntries(tooltipSlotFns.map(([slotName, slotFn]) => [slotName, slotFn.recipeFn(props)]));
1685
+ });
1686
+ const tooltipVariantKeys = [
1687
+ "position",
1688
+ "caret"
1689
+ ];
1690
+ const getVariantProps$2 = (variants) => ({ ...tooltipDefaultVariants, ...compact(variants) });
1691
+ const tooltip = /* @__PURE__ */ Object.assign(tooltipFn, {
1692
+ __recipe__: false,
1693
+ __name__: "tooltip",
1694
+ raw: (props) => props,
1695
+ classNameMap: {},
1696
+ variantKeys: tooltipVariantKeys,
1697
+ variantMap: {
1698
+ "position": [
1699
+ "top",
1700
+ "bottom",
1701
+ "left",
1702
+ "right",
1703
+ "top-start",
1704
+ "bottom-start",
1705
+ "left-start",
1706
+ "right-start",
1707
+ "top-end",
1708
+ "bottom-end",
1709
+ "left-end",
1710
+ "right-end"
1711
+ ],
1712
+ "caret": [
1713
+ "true",
1714
+ "false"
1715
+ ]
1716
+ },
1717
+ splitVariantProps(props) {
1718
+ return splitProps$1(props, tooltipVariantKeys);
1719
+ },
1720
+ getVariantProps: getVariantProps$2
1721
+ });
1722
+ const menuDefaultVariants = {
1723
+ "iconPlacement": "left",
1724
+ "multiSelectType": "checkbox"
1725
+ };
1726
+ const menuCompoundVariants = [];
1727
+ const menuSlotNames = [
1728
+ [
1729
+ "wrapper",
1730
+ "menu__wrapper"
1731
+ ],
1732
+ [
1733
+ "sectionTitle",
1734
+ "menu__sectionTitle"
1735
+ ],
1736
+ [
1737
+ "menuItem",
1738
+ "menu__menuItem"
1739
+ ],
1740
+ [
1741
+ "menuLabel",
1742
+ "menu__menuLabel"
1743
+ ],
1744
+ [
1745
+ "menuDescription",
1746
+ "menu__menuDescription"
1747
+ ],
1748
+ [
1749
+ "parentLabel",
1750
+ "menu__parentLabel"
1751
+ ],
1752
+ [
1753
+ "multiLevelIcon",
1754
+ "menu__multiLevelIcon"
1755
+ ],
1756
+ [
1757
+ "dividerSection",
1758
+ "menu__dividerSection"
1759
+ ],
1760
+ [
1761
+ "spacerSection",
1762
+ "menu__spacerSection"
1763
+ ],
1764
+ [
1765
+ "wrapperInner",
1766
+ "menu__wrapperInner"
1767
+ ],
1768
+ [
1769
+ "iconSection",
1770
+ "menu__iconSection"
1771
+ ],
1772
+ [
1773
+ "toggleMenu",
1774
+ "menu__toggleMenu"
1775
+ ]
1776
+ ];
1777
+ const menuSlotFns = /* @__PURE__ */ menuSlotNames.map(([slotName, slotKey]) => [slotName, createRecipe(slotKey, menuDefaultVariants, getSlotCompoundVariant(menuCompoundVariants, slotName))]);
1778
+ const menuFn = memo((props = {}) => {
1779
+ return Object.fromEntries(menuSlotFns.map(([slotName, slotFn]) => [slotName, slotFn.recipeFn(props)]));
1780
+ });
1781
+ const menuVariantKeys = [
1782
+ "iconPlacement",
1783
+ "multiSelectType"
1784
+ ];
1785
+ const getVariantProps$1 = (variants) => ({ ...menuDefaultVariants, ...compact(variants) });
1786
+ const menu = /* @__PURE__ */ Object.assign(menuFn, {
1787
+ __recipe__: false,
1788
+ __name__: "menu",
1789
+ raw: (props) => props,
1790
+ classNameMap: {},
1791
+ variantKeys: menuVariantKeys,
1792
+ variantMap: {
1793
+ "iconPlacement": [
1794
+ "left",
1795
+ "right"
1796
+ ],
1797
+ "multiSelectType": [
1798
+ "toggle",
1799
+ "checkbox"
1800
+ ]
1801
+ },
1802
+ splitVariantProps(props) {
1803
+ return splitProps$1(props, menuVariantKeys);
1804
+ },
1805
+ getVariantProps: getVariantProps$1
1806
+ });
1807
+ const toggleDefaultVariants = {};
1808
+ const toggleCompoundVariants = [];
1809
+ const toggleSlotNames = [
1810
+ [
1811
+ "container",
1812
+ "toggle__container"
1813
+ ],
1814
+ [
1815
+ "input",
1816
+ "toggle__input"
1817
+ ],
1818
+ [
1819
+ "indicator",
1820
+ "toggle__indicator"
1821
+ ],
1822
+ [
1823
+ "background",
1824
+ "toggle__background"
1825
+ ]
1826
+ ];
1827
+ const toggleSlotFns = /* @__PURE__ */ toggleSlotNames.map(([slotName, slotKey]) => [slotName, createRecipe(slotKey, toggleDefaultVariants, getSlotCompoundVariant(toggleCompoundVariants, slotName))]);
1828
+ const toggleFn = memo((props = {}) => {
1829
+ return Object.fromEntries(toggleSlotFns.map(([slotName, slotFn]) => [slotName, slotFn.recipeFn(props)]));
1830
+ });
1831
+ const toggleVariantKeys = [];
1832
+ const getVariantProps = (variants) => ({ ...toggleDefaultVariants, ...compact(variants) });
1833
+ const toggle = /* @__PURE__ */ Object.assign(toggleFn, {
1834
+ __recipe__: false,
1835
+ __name__: "toggle",
1836
+ raw: (props) => props,
1837
+ classNameMap: {},
1838
+ variantKeys: toggleVariantKeys,
1839
+ variantMap: {},
1840
+ splitVariantProps(props) {
1841
+ return splitProps$1(props, toggleVariantKeys);
1842
+ },
1843
+ getVariantProps
1844
+ });
1845
+ var userGeneratedStr = "css,pos,insetX,insetY,insetEnd,end,insetStart,start,flexDir,p,pl,pr,pt,pb,py,paddingY,paddingX,px,pe,paddingEnd,ps,paddingStart,ml,mr,mt,mb,m,my,marginY,mx,marginX,me,marginEnd,ms,marginStart,ringWidth,ringColor,ring,ringOffset,w,minW,maxW,h,minH,maxH,textShadowColor,bgPosition,bgPositionX,bgPositionY,bgAttachment,bgClip,bg,bgColor,bgOrigin,bgImage,bgRepeat,bgBlendMode,bgSize,bgGradient,bgLinear,bgRadial,bgConic,rounded,roundedTopLeft,roundedTopRight,roundedBottomRight,roundedBottomLeft,roundedTop,roundedRight,roundedBottom,roundedLeft,roundedStartStart,roundedStartEnd,roundedStart,roundedEndStart,roundedEndEnd,roundedEnd,borderX,borderXWidth,borderXColor,borderY,borderYWidth,borderYColor,borderStart,borderStartWidth,borderStartColor,borderEnd,borderEndWidth,borderEndColor,shadow,shadowColor,x,y,z,scrollMarginY,scrollMarginX,scrollPaddingY,scrollPaddingX,aspectRatio,boxDecorationBreak,zIndex,boxSizing,objectPosition,objectFit,overscrollBehavior,overscrollBehaviorX,overscrollBehaviorY,position,top,left,inset,insetInline,insetBlock,insetBlockEnd,insetBlockStart,insetInlineEnd,insetInlineStart,right,bottom,float,visibility,display,hideFrom,hideBelow,flexBasis,flex,flexDirection,flexGrow,flexShrink,gridTemplateColumns,gridTemplateRows,gridColumn,gridRow,gridColumnStart,gridColumnEnd,gridAutoFlow,gridAutoColumns,gridAutoRows,gap,gridGap,gridRowGap,gridColumnGap,rowGap,columnGap,justifyContent,alignContent,alignItems,alignSelf,padding,paddingLeft,paddingRight,paddingTop,paddingBottom,paddingBlock,paddingBlockEnd,paddingBlockStart,paddingInline,paddingInlineEnd,paddingInlineStart,marginLeft,marginRight,marginTop,marginBottom,margin,marginBlock,marginBlockEnd,marginBlockStart,marginInline,marginInlineEnd,marginInlineStart,spaceX,spaceY,outlineWidth,outlineColor,outline,outlineOffset,focusRing,focusVisibleRing,focusRingColor,focusRingOffset,focusRingWidth,focusRingStyle,divideX,divideY,divideColor,divideStyle,width,inlineSize,minWidth,minInlineSize,maxWidth,maxInlineSize,height,blockSize,minHeight,minBlockSize,maxHeight,maxBlockSize,boxSize,color,fontFamily,fontSize,fontSizeAdjust,fontPalette,fontKerning,fontFeatureSettings,fontWeight,fontSmoothing,fontVariant,fontVariantAlternates,fontVariantCaps,fontVariationSettings,fontVariantNumeric,letterSpacing,lineHeight,textAlign,textDecoration,textDecorationColor,textEmphasisColor,textDecorationStyle,textDecorationThickness,textUnderlineOffset,textTransform,textIndent,textShadow,textOverflow,verticalAlign,wordBreak,textWrap,truncate,lineClamp,listStyleType,listStylePosition,listStyleImage,listStyle,backgroundPosition,backgroundPositionX,backgroundPositionY,backgroundAttachment,backgroundClip,background,backgroundColor,backgroundOrigin,backgroundImage,backgroundRepeat,backgroundBlendMode,backgroundSize,backgroundGradient,backgroundLinear,backgroundRadial,backgroundConic,textGradient,gradientFromPosition,gradientToPosition,gradientFrom,gradientTo,gradientVia,gradientViaPosition,borderRadius,borderTopLeftRadius,borderTopRightRadius,borderBottomRightRadius,borderBottomLeftRadius,borderTopRadius,borderRightRadius,borderBottomRadius,borderLeftRadius,borderStartStartRadius,borderStartEndRadius,borderStartRadius,borderEndStartRadius,borderEndEndRadius,borderEndRadius,border,borderWidth,borderTopWidth,borderLeftWidth,borderRightWidth,borderBottomWidth,borderBlockStartWidth,borderBlockEndWidth,borderColor,borderInline,borderInlineWidth,borderInlineColor,borderBlock,borderBlockWidth,borderBlockColor,borderLeft,borderLeftColor,borderInlineStart,borderInlineStartWidth,borderInlineStartColor,borderRight,borderRightColor,borderInlineEnd,borderInlineEndWidth,borderInlineEndColor,borderTop,borderTopColor,borderBottom,borderBottomColor,borderBlockEnd,borderBlockEndColor,borderBlockStart,borderBlockStartColor,opacity,boxShadow,boxShadowColor,mixBlendMode,filter,brightness,contrast,grayscale,hueRotate,invert,saturate,sepia,dropShadow,blur,backdropFilter,backdropBlur,backdropBrightness,backdropContrast,backdropGrayscale,backdropHueRotate,backdropInvert,backdropOpacity,backdropSaturate,backdropSepia,borderCollapse,borderSpacing,borderSpacingX,borderSpacingY,tableLayout,transitionTimingFunction,transitionDelay,transitionDuration,transitionProperty,transition,animation,animationName,animationTimingFunction,animationDuration,animationDelay,animationPlayState,animationComposition,animationFillMode,animationDirection,animationIterationCount,animationRange,animationState,animationRangeStart,animationRangeEnd,animationTimeline,transformOrigin,transformBox,transformStyle,transform,rotate,rotateX,rotateY,rotateZ,scale,scaleX,scaleY,translate,translateX,translateY,translateZ,accentColor,caretColor,scrollBehavior,scrollbar,scrollbarColor,scrollbarGutter,scrollbarWidth,scrollMargin,scrollMarginLeft,scrollMarginRight,scrollMarginTop,scrollMarginBottom,scrollMarginBlock,scrollMarginBlockEnd,scrollMarginBlockStart,scrollMarginInline,scrollMarginInlineEnd,scrollMarginInlineStart,scrollPadding,scrollPaddingBlock,scrollPaddingBlockStart,scrollPaddingBlockEnd,scrollPaddingInline,scrollPaddingInlineEnd,scrollPaddingInlineStart,scrollPaddingLeft,scrollPaddingRight,scrollPaddingTop,scrollPaddingBottom,scrollSnapAlign,scrollSnapStop,scrollSnapType,scrollSnapStrictness,scrollSnapMargin,scrollSnapMarginTop,scrollSnapMarginBottom,scrollSnapMarginLeft,scrollSnapMarginRight,scrollSnapCoordinate,scrollSnapDestination,scrollSnapPointsX,scrollSnapPointsY,scrollSnapTypeX,scrollSnapTypeY,scrollTimeline,scrollTimelineAxis,scrollTimelineName,touchAction,userSelect,overflow,overflowWrap,overflowX,overflowY,overflowAnchor,overflowBlock,overflowInline,overflowClipBox,overflowClipMargin,overscrollBehaviorBlock,overscrollBehaviorInline,fill,stroke,strokeWidth,strokeDasharray,strokeDashoffset,strokeLinecap,strokeLinejoin,strokeMiterlimit,strokeOpacity,srOnly,debug,appearance,backfaceVisibility,clipPath,hyphens,mask,maskImage,maskSize,textSizeAdjust,container,containerName,containerType,cursor,colorPalette,_hover,_focus,_focusWithin,_focusVisible,_disabled,_active,_visited,_target,_readOnly,_readWrite,_empty,_checked,_enabled,_expanded,_highlighted,_complete,_incomplete,_dragging,_before,_after,_firstLetter,_firstLine,_marker,_selection,_file,_backdrop,_first,_last,_only,_even,_odd,_firstOfType,_lastOfType,_onlyOfType,_peerFocus,_peerHover,_peerActive,_peerFocusWithin,_peerFocusVisible,_peerDisabled,_peerChecked,_peerInvalid,_peerExpanded,_peerPlaceholderShown,_groupFocus,_groupHover,_groupActive,_groupFocusWithin,_groupFocusVisible,_groupDisabled,_groupChecked,_groupExpanded,_groupInvalid,_indeterminate,_required,_valid,_invalid,_autofill,_inRange,_outOfRange,_placeholder,_placeholderShown,_pressed,_selected,_grabbed,_underValue,_overValue,_atValue,_default,_optional,_open,_closed,_fullscreen,_loading,_hidden,_current,_currentPage,_currentStep,_today,_unavailable,_rangeStart,_rangeEnd,_now,_topmost,_motionReduce,_motionSafe,_print,_landscape,_portrait,_dark,_light,_osDark,_osLight,_highContrast,_lessContrast,_moreContrast,_ltr,_rtl,_scrollbar,_scrollbarThumb,_scrollbarTrack,_horizontal,_vertical,_icon,_starting,_noscript,_invertedColors,_collapsed,xs,xsOnly,xsDown,sm,smOnly,smDown,md,mdOnly,mdDown,lg,lgOnly,lgDown,xl,xlOnly,xlDown,2xl,2xlOnly,2xlDown,xsToSm,xsToMd,xsToLg,xsToXl,xsTo2xl,smToMd,smToLg,smToXl,smTo2xl,mdToLg,mdToXl,mdTo2xl,lgToXl,lgTo2xl,xlTo2xl,@/xs,@/sm,@/md,@/lg,@/xl,@/2xl,@/3xl,@/4xl,@/5xl,@/6xl,@/7xl,@/8xl,textStyle";
1846
+ var userGenerated = userGeneratedStr.split(",");
1847
+ var cssPropertiesStr = "WebkitAppearance,WebkitBorderBefore,WebkitBorderBeforeColor,WebkitBorderBeforeStyle,WebkitBorderBeforeWidth,WebkitBoxReflect,WebkitLineClamp,WebkitMask,WebkitMaskAttachment,WebkitMaskClip,WebkitMaskComposite,WebkitMaskImage,WebkitMaskOrigin,WebkitMaskPosition,WebkitMaskPositionX,WebkitMaskPositionY,WebkitMaskRepeat,WebkitMaskRepeatX,WebkitMaskRepeatY,WebkitMaskSize,WebkitOverflowScrolling,WebkitTapHighlightColor,WebkitTextFillColor,WebkitTextStroke,WebkitTextStrokeColor,WebkitTextStrokeWidth,WebkitTouchCallout,WebkitUserModify,WebkitUserSelect,accentColor,alignContent,alignItems,alignSelf,alignTracks,all,anchorName,anchorScope,animation,animationComposition,animationDelay,animationDirection,animationDuration,animationFillMode,animationIterationCount,animationName,animationPlayState,animationRange,animationRangeEnd,animationRangeStart,animationTimeline,animationTimingFunction,appearance,aspectRatio,backdropFilter,backfaceVisibility,background,backgroundAttachment,backgroundBlendMode,backgroundClip,backgroundColor,backgroundImage,backgroundOrigin,backgroundPosition,backgroundPositionX,backgroundPositionY,backgroundRepeat,backgroundSize,blockSize,border,borderBlock,borderBlockColor,borderBlockEnd,borderBlockEndColor,borderBlockEndStyle,borderBlockEndWidth,borderBlockStart,borderBlockStartColor,borderBlockStartStyle,borderBlockStartWidth,borderBlockStyle,borderBlockWidth,borderBottom,borderBottomColor,borderBottomLeftRadius,borderBottomRightRadius,borderBottomStyle,borderBottomWidth,borderCollapse,borderColor,borderEndEndRadius,borderEndStartRadius,borderImage,borderImageOutset,borderImageRepeat,borderImageSlice,borderImageSource,borderImageWidth,borderInline,borderInlineColor,borderInlineEnd,borderInlineEndColor,borderInlineEndStyle,borderInlineEndWidth,borderInlineStart,borderInlineStartColor,borderInlineStartStyle,borderInlineStartWidth,borderInlineStyle,borderInlineWidth,borderLeft,borderLeftColor,borderLeftStyle,borderLeftWidth,borderRadius,borderRight,borderRightColor,borderRightStyle,borderRightWidth,borderSpacing,borderStartEndRadius,borderStartStartRadius,borderStyle,borderTop,borderTopColor,borderTopLeftRadius,borderTopRightRadius,borderTopStyle,borderTopWidth,borderWidth,bottom,boxAlign,boxDecorationBreak,boxDirection,boxFlex,boxFlexGroup,boxLines,boxOrdinalGroup,boxOrient,boxPack,boxShadow,boxSizing,breakAfter,breakBefore,breakInside,captionSide,caret,caretColor,caretShape,clear,clip,clipPath,clipRule,color,colorInterpolationFilters,colorScheme,columnCount,columnFill,columnGap,columnRule,columnRuleColor,columnRuleStyle,columnRuleWidth,columnSpan,columnWidth,columns,contain,containIntrinsicBlockSize,containIntrinsicHeight,containIntrinsicInlineSize,containIntrinsicSize,containIntrinsicWidth,container,containerName,containerType,content,contentVisibility,counterIncrement,counterReset,counterSet,cursor,cx,cy,d,direction,display,dominantBaseline,emptyCells,fieldSizing,fill,fillOpacity,fillRule,filter,flex,flexBasis,flexDirection,flexFlow,flexGrow,flexShrink,flexWrap,float,floodColor,floodOpacity,font,fontFamily,fontFeatureSettings,fontKerning,fontLanguageOverride,fontOpticalSizing,fontPalette,fontSize,fontSizeAdjust,fontSmooth,fontStretch,fontStyle,fontSynthesis,fontSynthesisPosition,fontSynthesisSmallCaps,fontSynthesisStyle,fontSynthesisWeight,fontVariant,fontVariantAlternates,fontVariantCaps,fontVariantEastAsian,fontVariantEmoji,fontVariantLigatures,fontVariantNumeric,fontVariantPosition,fontVariationSettings,fontWeight,forcedColorAdjust,gap,grid,gridArea,gridAutoColumns,gridAutoFlow,gridAutoRows,gridColumn,gridColumnEnd,gridColumnGap,gridColumnStart,gridGap,gridRow,gridRowEnd,gridRowGap,gridRowStart,gridTemplate,gridTemplateAreas,gridTemplateColumns,gridTemplateRows,hangingPunctuation,height,hyphenateCharacter,hyphenateLimitChars,hyphens,imageOrientation,imageRendering,imageResolution,imeMode,initialLetter,initialLetterAlign,inlineSize,inset,insetBlock,insetBlockEnd,insetBlockStart,insetInline,insetInlineEnd,insetInlineStart,interpolateSize,isolation,justifyContent,justifyItems,justifySelf,justifyTracks,left,letterSpacing,lightingColor,lineBreak,lineClamp,lineHeight,lineHeightStep,listStyle,listStyleImage,listStylePosition,listStyleType,margin,marginBlock,marginBlockEnd,marginBlockStart,marginBottom,marginInline,marginInlineEnd,marginInlineStart,marginLeft,marginRight,marginTop,marginTrim,marker,markerEnd,markerMid,markerStart,mask,maskBorder,maskBorderMode,maskBorderOutset,maskBorderRepeat,maskBorderSlice,maskBorderSource,maskBorderWidth,maskClip,maskComposite,maskImage,maskMode,maskOrigin,maskPosition,maskRepeat,maskSize,maskType,masonryAutoFlow,mathDepth,mathShift,mathStyle,maxBlockSize,maxHeight,maxInlineSize,maxLines,maxWidth,minBlockSize,minHeight,minInlineSize,minWidth,mixBlendMode,objectFit,objectPosition,offset,offsetAnchor,offsetDistance,offsetPath,offsetPosition,offsetRotate,opacity,order,orphans,outline,outlineColor,outlineOffset,outlineStyle,outlineWidth,overflow,overflowAnchor,overflowBlock,overflowClipBox,overflowClipMargin,overflowInline,overflowWrap,overflowX,overflowY,overlay,overscrollBehavior,overscrollBehaviorBlock,overscrollBehaviorInline,overscrollBehaviorX,overscrollBehaviorY,padding,paddingBlock,paddingBlockEnd,paddingBlockStart,paddingBottom,paddingInline,paddingInlineEnd,paddingInlineStart,paddingLeft,paddingRight,paddingTop,page,pageBreakAfter,pageBreakBefore,pageBreakInside,paintOrder,perspective,perspectiveOrigin,placeContent,placeItems,placeSelf,pointerEvents,position,positionAnchor,positionArea,positionTry,positionTryFallbacks,positionTryOrder,positionVisibility,printColorAdjust,quotes,r,resize,right,rotate,rowGap,rubyAlign,rubyMerge,rubyPosition,rx,ry,scale,scrollBehavior,scrollMargin,scrollMarginBlock,scrollMarginBlockEnd,scrollMarginBlockStart,scrollMarginBottom,scrollMarginInline,scrollMarginInlineEnd,scrollMarginInlineStart,scrollMarginLeft,scrollMarginRight,scrollMarginTop,scrollPadding,scrollPaddingBlock,scrollPaddingBlockEnd,scrollPaddingBlockStart,scrollPaddingBottom,scrollPaddingInline,scrollPaddingInlineEnd,scrollPaddingInlineStart,scrollPaddingLeft,scrollPaddingRight,scrollPaddingTop,scrollSnapAlign,scrollSnapCoordinate,scrollSnapDestination,scrollSnapPointsX,scrollSnapPointsY,scrollSnapStop,scrollSnapType,scrollSnapTypeX,scrollSnapTypeY,scrollTimeline,scrollTimelineAxis,scrollTimelineName,scrollbarColor,scrollbarGutter,scrollbarWidth,shapeImageThreshold,shapeMargin,shapeOutside,shapeRendering,stopColor,stopOpacity,stroke,strokeDasharray,strokeDashoffset,strokeLinecap,strokeLinejoin,strokeMiterlimit,strokeOpacity,strokeWidth,tabSize,tableLayout,textAlign,textAlignLast,textAnchor,textBox,textBoxEdge,textBoxTrim,textCombineUpright,textDecoration,textDecorationColor,textDecorationLine,textDecorationSkip,textDecorationSkipInk,textDecorationStyle,textDecorationThickness,textEmphasis,textEmphasisColor,textEmphasisPosition,textEmphasisStyle,textIndent,textJustify,textOrientation,textOverflow,textRendering,textShadow,textSizeAdjust,textSpacingTrim,textTransform,textUnderlineOffset,textUnderlinePosition,textWrap,textWrapMode,textWrapStyle,timelineScope,top,touchAction,transform,transformBox,transformOrigin,transformStyle,transition,transitionBehavior,transitionDelay,transitionDuration,transitionProperty,transitionTimingFunction,translate,unicodeBidi,userSelect,vectorEffect,verticalAlign,viewTimeline,viewTimelineAxis,viewTimelineInset,viewTimelineName,viewTransitionName,visibility,whiteSpace,whiteSpaceCollapse,widows,width,willChange,wordBreak,wordSpacing,wordWrap,writingMode,x,y,zIndex,zoom,alignmentBaseline,baselineShift,colorInterpolation,colorRendering,glyphOrientationVertical";
1848
+ var allCssProperties = cssPropertiesStr.split(",").concat(userGenerated);
1849
+ var properties = new Map(allCssProperties.map((prop) => [prop, true]));
1850
+ var cssPropertySelectorRegex = /&|@/;
1851
+ var isCssProperty = /* @__PURE__ */ memo((prop) => {
1852
+ return properties.has(prop) || prop.startsWith("--") || cssPropertySelectorRegex.test(prop);
1853
+ });
1854
+ const splitCssProps = (props) => splitProps$1(props, isCssProperty);
1855
+ const defaultShouldForwardProp = (prop, variantKeys) => !variantKeys.includes(prop) && !isCssProperty(prop);
1856
+ const composeShouldForwardProps = (tag2, shouldForwardProp) => tag2.__shouldForwardProps__ && shouldForwardProp ? (propName) => tag2.__shouldForwardProps__(propName) && shouldForwardProp(propName) : shouldForwardProp;
1857
+ const composeCvaFn = (cvaA, cvaB) => {
1858
+ var _a;
1859
+ if (cvaA && !cvaB) return cvaA;
1860
+ if (!cvaA && cvaB) return cvaB;
1861
+ if (cvaA.__cva__ && cvaB.__cva__ || cvaA.__recipe__ && cvaB.__recipe__) return cvaA.merge(cvaB);
1862
+ const error = new TypeError("Cannot merge cva with recipe. Please use either cva or recipe.");
1863
+ (_a = TypeError.captureStackTrace) == null ? void 0 : _a.call(TypeError, error);
1864
+ throw error;
1865
+ };
1866
+ const getDisplayName = (Component) => {
1867
+ if (typeof Component === "string") return Component;
1868
+ return (Component == null ? void 0 : Component.displayName) || (Component == null ? void 0 : Component.name) || "Component";
1869
+ };
1870
+ function styledFn(Dynamic, configOrCva = {}, options = {}) {
1871
+ const cvaFn = configOrCva.__cva__ || configOrCva.__recipe__ ? configOrCva : cva(configOrCva);
1872
+ const forwardFn = options.shouldForwardProp || defaultShouldForwardProp;
1873
+ const shouldForwardProp = (prop) => {
1874
+ var _a;
1875
+ if ((_a = options.forwardProps) == null ? void 0 : _a.includes(prop)) return true;
1876
+ return forwardFn(prop, cvaFn.variantKeys);
1877
+ };
1878
+ const defaultProps = Object.assign(
1879
+ options.dataAttr && configOrCva.__name__ ? { "data-recipe": configOrCva.__name__ } : {},
1880
+ options.defaultProps
1881
+ );
1882
+ const __cvaFn__ = composeCvaFn(Dynamic.__cva__, cvaFn);
1883
+ const __shouldForwardProps__ = composeShouldForwardProps(Dynamic, shouldForwardProp);
1884
+ const __base__ = Dynamic.__base__ || Dynamic;
1885
+ const StyledComponent = /* @__PURE__ */ forwardRef(function StyledComponent2(props, ref) {
1886
+ const { as: Element = __base__, unstyled, children, ...restProps } = props;
1887
+ const combinedProps = useMemo(() => Object.assign({}, defaultProps, restProps), [restProps]);
1888
+ const [htmlProps2, forwardedProps, variantProps, styleProps, elementProps] = useMemo(() => {
1889
+ return splitProps$1(combinedProps, normalizeHTMLProps.keys, __shouldForwardProps__, __cvaFn__.variantKeys, isCssProperty);
1890
+ }, [combinedProps]);
1891
+ function recipeClass() {
1892
+ var _a;
1893
+ const { css: cssStyles, ...propStyles } = styleProps;
1894
+ const compoundVariantStyles = (_a = __cvaFn__.__getCompoundVariantCss__) == null ? void 0 : _a.call(__cvaFn__, variantProps);
1895
+ return cx(__cvaFn__(variantProps, false), css(compoundVariantStyles, propStyles, cssStyles), combinedProps.className);
1896
+ }
1897
+ function cvaClass() {
1898
+ const { css: cssStyles, ...propStyles } = styleProps;
1899
+ const cvaStyles = __cvaFn__.raw(variantProps);
1900
+ return cx(css(cvaStyles, propStyles, cssStyles), combinedProps.className);
1901
+ }
1902
+ const classes = () => {
1903
+ if (unstyled) {
1904
+ const { css: cssStyles, ...propStyles } = styleProps;
1905
+ return cx(css(propStyles, cssStyles), combinedProps.className);
1906
+ }
1907
+ return configOrCva.__recipe__ ? recipeClass() : cvaClass();
1908
+ };
1909
+ return createElement(Element, {
1910
+ ref,
1911
+ ...forwardedProps,
1912
+ ...elementProps,
1913
+ ...normalizeHTMLProps(htmlProps2),
1914
+ className: classes()
1915
+ }, children ?? combinedProps.children);
1916
+ });
1917
+ const name = getDisplayName(__base__);
1918
+ StyledComponent.displayName = `styled.${name}`;
1919
+ StyledComponent.__cva__ = __cvaFn__;
1920
+ StyledComponent.__base__ = __base__;
1921
+ StyledComponent.__shouldForwardProps__ = shouldForwardProp;
1922
+ return StyledComponent;
1923
+ }
1924
+ function createJsxFactory() {
1925
+ const cache = /* @__PURE__ */ new Map();
1926
+ return new Proxy(styledFn, {
1927
+ apply(_, __, args) {
1928
+ return styledFn(...args);
1929
+ },
1930
+ get(_, el) {
1931
+ if (!cache.has(el)) {
1932
+ cache.set(el, styledFn(el));
1933
+ }
1934
+ return cache.get(el);
1935
+ }
1936
+ });
1937
+ }
1938
+ const styled = /* @__PURE__ */ createJsxFactory();
1939
+ const iconConfig = {
1940
+ transform(props) {
1941
+ const { size, ...rest } = props;
1942
+ return {
1943
+ width: size,
1944
+ height: size,
1945
+ ...rest
1946
+ };
1947
+ }
1948
+ };
1949
+ const getIconStyle = (styles = {}) => {
1950
+ const _styles = getPatternStyles(iconConfig, styles);
1951
+ return iconConfig.transform(_styles, patternFns);
1952
+ };
1953
+ const icon = (styles) => css(getIconStyle(styles));
1954
+ icon.raw = getIconStyle;
1955
+ const hstackConfig = {
1956
+ transform(props) {
1957
+ const { justify, gap, ...rest } = props;
1958
+ return {
1959
+ display: "flex",
1960
+ alignItems: "center",
1961
+ justifyContent: justify,
1962
+ gap,
1963
+ flexDirection: "row",
1964
+ ...rest
1965
+ };
1966
+ },
1967
+ defaultValues: { gap: "8px" }
1968
+ };
1969
+ const getHstackStyle = (styles = {}) => {
1970
+ const _styles = getPatternStyles(hstackConfig, styles);
1971
+ return hstackConfig.transform(_styles, patternFns);
1972
+ };
1973
+ const HStack = /* @__PURE__ */ forwardRef(function HStack2(props, ref) {
1974
+ const [patternProps, restProps] = splitProps$1(props, ["justify", "gap"]);
1975
+ const styleProps = getHstackStyle(patternProps);
1976
+ const mergedProps = { ref, ...styleProps, ...restProps };
1977
+ return createElement(styled.div, mergedProps);
1978
+ });
1979
+ const gridConfig = {
1980
+ transform(props, { map, isCssUnit: isCssUnit2 }) {
1981
+ const { columnGap, rowGap, gap, columns, minChildWidth, ...rest } = props;
1982
+ const getValue = (v) => isCssUnit2(v) ? v : `token(sizes.${v}, ${v})`;
1983
+ return {
1984
+ display: "grid",
1985
+ gridTemplateColumns: columns != null ? map(columns, (v) => `repeat(${v}, minmax(0, 1fr))`) : minChildWidth != null ? map(minChildWidth, (v) => `repeat(auto-fit, minmax(${getValue(v)}, 1fr))`) : void 0,
1986
+ gap,
1987
+ columnGap,
1988
+ rowGap,
1989
+ ...rest
1990
+ };
1991
+ },
1992
+ defaultValues(props) {
1993
+ return { gap: props.columnGap || props.rowGap ? void 0 : "8px" };
1994
+ }
1995
+ };
1996
+ const getGridStyle = (styles = {}) => {
1997
+ const _styles = getPatternStyles(gridConfig, styles);
1998
+ return gridConfig.transform(_styles, patternFns);
1999
+ };
2000
+ const Grid = /* @__PURE__ */ forwardRef(function Grid2(props, ref) {
2001
+ const [patternProps, restProps] = splitProps$1(props, ["gap", "columnGap", "rowGap", "columns", "minChildWidth"]);
2002
+ const styleProps = getGridStyle(patternProps);
2003
+ const mergedProps = { ref, ...styleProps, ...restProps };
2004
+ return createElement(styled.div, mergedProps);
2005
+ });
2006
+ const splitProps = (props) => {
2007
+ const [cssProps, otherProps] = splitCssProps(props);
2008
+ const { css: cssProp, ...styleProps } = cssProps;
2009
+ const generatedClassName = css(cssProp, styleProps);
2010
+ const existingClassName = otherProps.className || "";
2011
+ const mergedClassName = cx(existingClassName, generatedClassName);
2012
+ const { className: _className, ...remainingProps } = otherProps;
2013
+ return [mergedClassName, remainingProps];
2014
+ };
2015
+ const Box = ({ as = "div", ...props }) => {
2016
+ const [className, otherProps] = splitProps(props);
2017
+ const comboClassName = cx(box({}), className);
2018
+ return createElement(as, {
2019
+ className: comboClassName,
2020
+ ...otherProps
2021
+ });
2022
+ };
2023
+ const Text = ({
2024
+ as = "p",
2025
+ italic,
2026
+ family,
2027
+ bold,
2028
+ underline,
2029
+ size,
2030
+ weight,
2031
+ children,
2032
+ ...props
2033
+ }) => {
2034
+ const [className, otherProps] = splitProps(props);
2035
+ return /* @__PURE__ */ jsx(
2036
+ Box,
2037
+ {
2038
+ as,
2039
+ className: cx(
2040
+ text({ family, bold, underline, italic }),
2041
+ className
2042
+ ),
2043
+ fontSize: size,
2044
+ fontWeight: weight,
2045
+ ...otherProps,
2046
+ children
2047
+ }
2048
+ );
2049
+ };
2050
+ const Spinner = ({
2051
+ size,
2052
+ ...props
2053
+ }) => {
2054
+ const [className, otherProps] = splitProps(props);
2055
+ return /* @__PURE__ */ jsx(
2056
+ Box,
2057
+ {
2058
+ as: "div",
2059
+ className: cx(spinner({ size }), className),
2060
+ ...otherProps
2061
+ }
2062
+ );
2063
+ };
2064
+ const ButtonContent = ({
2065
+ loading,
2066
+ children
2067
+ }) => /* @__PURE__ */ jsxs(Fragment, { children: [
2068
+ /* @__PURE__ */ jsx(HStack, { gap: "2", opacity: loading ? 0 : 1, children }),
2069
+ loading && /* @__PURE__ */ jsx(
2070
+ Grid,
2071
+ {
2072
+ position: "absolute",
2073
+ top: "0",
2074
+ left: "0",
2075
+ right: "0",
2076
+ bottom: "0",
2077
+ placeItems: "center",
2078
+ children: /* @__PURE__ */ jsx(Spinner, {})
2079
+ }
2080
+ )
2081
+ ] });
2082
+ const Button = React.forwardRef(
2083
+ ({
2084
+ variant,
2085
+ size,
2086
+ href,
2087
+ className,
2088
+ children,
2089
+ loading,
2090
+ disabled,
2091
+ ...props
2092
+ }, ref) => {
2093
+ const trulyDisabled = loading || disabled;
2094
+ const asComponent = href ? "a" : "button";
2095
+ return (
2096
+ // @ts-expect-error - Polymorphic type inference issue
2097
+ /* @__PURE__ */ jsx(
2098
+ Box,
2099
+ {
2100
+ as: asComponent,
2101
+ ref,
2102
+ href,
2103
+ disabled: trulyDisabled,
2104
+ "aria-disabled": trulyDisabled,
2105
+ className: cx(button({ variant, size }), className),
2106
+ type: asComponent === "button" ? "button" : void 0,
2107
+ ...props,
2108
+ children: /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(ButtonContent, { loading: !!loading, children }) })
2109
+ }
2110
+ )
2111
+ );
2112
+ }
2113
+ );
2114
+ const Badge = React.forwardRef(
2115
+ ({ variant, size, className, children, ...props }, ref) => {
2116
+ return (
2117
+ // @ts-expect-error - Polymorphic type inference issue
2118
+ /* @__PURE__ */ jsx(
2119
+ Box,
2120
+ {
2121
+ as: "span",
2122
+ ref,
2123
+ className: cx(badge({ variant, size }), className),
2124
+ ...props,
2125
+ children
2126
+ }
2127
+ )
2128
+ );
2129
+ }
2130
+ );
2131
+ const spriteContent = '<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><symbol viewBox="0 0 24 24" id="Building" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M18.25 19.5v-15h1.25V3.25h-15V4.5h1.25v15H3v1.25h18V19.5zM7.75 6.37h3.12v1.25H7.75zm0 3.13h3.12v1.25H7.75zm0 3.13h3.12v1.25H7.75zm6.13 6.87h-3.75v-3.12h3.75zm2.37-5.63h-3.12v-1.25h3.12zm0-3.12h-3.12V9.5h3.12zm0-3.12h-3.12V6.38h3.12z" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" id="aa-placeholder" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M17.5 4.5h-11c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2v-11c0-1.1-.9-2-2-2M6.17 12.22l6.05-6.05h4.44L6.17 16.66zm11.66-4.88v4.44l-6.05 6.05H7.34zM6.5 6.17h4.3L6.17 10.8V6.5c0-.18.15-.33.33-.33m11 11.66h-4.3l4.64-4.64v4.3c0 .18-.15.33-.33.33z" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" id="alarm" xmlns="http://www.w3.org/2000/svg"><path d="M12 19.493a7.3 7.3 0 0 1-2.927-.593 7.6 7.6 0 0 1-2.375-1.605 7.6 7.6 0 0 1-1.604-2.375 7.3 7.3 0 0 1-.594-2.927q0-1.562.594-2.927.593-1.365 1.604-2.375a7.6 7.6 0 0 1 2.375-1.604A7.3 7.3 0 0 1 12 4.493q1.563 0 2.927.594 1.364.593 2.375 1.604a7.6 7.6 0 0 1 1.604 2.375q.594 1.365.594 2.927a7.3 7.3 0 0 1-.594 2.927 7.6 7.6 0 0 1-1.604 2.375 7.6 7.6 0 0 1-2.375 1.604 7.3 7.3 0 0 1-2.927.594m2.333-4 1.167-1.166-2.667-2.667V7.827h-1.666v4.5zM6.667 3.118l1.166 1.167-3.541 3.542L3.125 6.66zm10.666 0 3.542 3.542-1.167 1.167-3.541-3.542z"/></symbol><symbol viewBox="0 0 24 24" id="alt-route" xmlns="http://www.w3.org/2000/svg"><path d="M11.167 20.333v-4.166q0-1.167-.354-1.73a5.6 5.6 0 0 0-.938-1.104l1.188-1.187q.25.23.479.49t.458.552a6 6 0 0 1 .594-.699q.302-.301.614-.593a9.5 9.5 0 0 0 1.438-1.688q.646-.958.687-3.354l-1.312 1.313L12.833 7l3.334-3.333L19.5 7l-1.167 1.167L17 6.854q-.041 2.98-.917 4.24-.874 1.26-1.75 2.052a8 8 0 0 0-1.083 1.177q-.417.572-.417 1.844v4.166zm-4-11.52a7 7 0 0 1-.115-.917q-.03-.5-.052-1.042L5.667 8.167 4.5 7l3.333-3.333L11.167 7 9.979 8.167 8.667 6.875q0 .438.041.823.042.385.084.719zm1.791 3.666a7.4 7.4 0 0 1-.802-1.02 6.3 6.3 0 0 1-.677-1.438l1.604-.396a4.4 4.4 0 0 0 1.063 1.667z"/></symbol><symbol viewBox="0 0 24 24" id="apps" xmlns="http://www.w3.org/2000/svg"><path d="M7 18.667q-.687 0-1.177-.49A1.6 1.6 0 0 1 5.333 17q0-.687.49-1.177T7 15.333t1.177.49.49 1.177-.49 1.177-1.177.49m5 0q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177q0-.687.49-1.177t1.177-.49 1.177.49.49 1.177-.49 1.177-1.177.49m5 0q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177q0-.687.49-1.177t1.177-.49 1.177.49.49 1.177-.49 1.177-1.177.49m-10-5q-.687 0-1.177-.49A1.6 1.6 0 0 1 5.333 12q0-.687.49-1.177T7 10.333t1.177.49.49 1.177-.49 1.177-1.177.49m5 0q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177q0-.687.49-1.177t1.177-.49 1.177.49.49 1.177-.49 1.177-1.177.49m5 0q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177q0-.687.49-1.177t1.177-.49 1.177.49.49 1.177-.49 1.177-1.177.49m-10-5q-.687 0-1.177-.49A1.6 1.6 0 0 1 5.333 7q0-.687.49-1.177T7 5.333t1.177.49T8.667 7t-.49 1.177T7 8.667m5 0q-.687 0-1.177-.49A1.6 1.6 0 0 1 10.333 7q0-.687.49-1.177T12 5.333t1.177.49.49 1.177-.49 1.177-1.177.49m5 0q-.687 0-1.177-.49A1.6 1.6 0 0 1 15.333 7q0-.687.49-1.177T17 5.333t1.177.49.49 1.177-.49 1.177-1.177.49"/></symbol><symbol viewBox="0 0 24 24" id="arrow-bubble" xmlns="http://www.w3.org/2000/svg"><path d="M12 4.5q1.542 0 2.906.594a7.7 7.7 0 0 1 2.386 1.614 7.7 7.7 0 0 1 1.614 2.386Q19.5 10.458 19.5 12a7.2 7.2 0 0 1-.594 2.906 7.7 7.7 0 0 1-1.614 2.386 7.7 7.7 0 0 1-2.386 1.614A7.2 7.2 0 0 1 12 19.5q-.854 0-1.646-.187a9 9 0 0 1-1.583-.542l1.27-1.271q.48.166.97.25t.989.083q2.416 0 4.125-1.708 1.708-1.709 1.708-4.125t-1.708-4.125T12 6.167 7.875 7.875 6.167 12a5.9 5.9 0 0 0 .333 1.958l-1.25 1.25A7.05 7.05 0 0 1 4.5 12q0-1.542.594-2.906a7.7 7.7 0 0 1 1.614-2.386 7.7 7.7 0 0 1 2.386-1.614A7.2 7.2 0 0 1 12 4.5m.833 10.833v-3L5.667 19.5 4.5 18.333l7.167-7.166h-3V9.5H14.5v5.833z"/></symbol><symbol viewBox="0 0 24 24" id="arrow-down" xmlns="http://www.w3.org/2000/svg"><path d="m12 17.913-5-5 1.167-1.166 3 3V7.08h1.666v7.667l3-3L17 12.913z"/></symbol><symbol viewBox="0 0 24 24" id="arrow-drop-down" xmlns="http://www.w3.org/2000/svg"><path d="m12 15.083-4.167-4.166h8.334z"/></symbol><symbol viewBox="0 0 24 24" id="arrow-drop-up" xmlns="http://www.w3.org/2000/svg"><path d="M7.833 13.083 12 8.917l4.167 4.166z"/></symbol><symbol viewBox="0 0 24 24" id="arrow-left" xmlns="http://www.w3.org/2000/svg"><path d="m9.83 17-5-5 5-5 1.167 1.208-2.959 2.959h10.125v1.666H8.038l2.959 2.959z"/></symbol><symbol viewBox="0 0 24 24" id="arrow-line-down" xmlns="http://www.w3.org/2000/svg"><path d="M5.333 19.5v-1.667h13.334V19.5zM12 16.167 7.833 12 9 10.833 11.167 13V4.5h1.666V13L15 10.833 16.167 12z"/></symbol><symbol viewBox="0 0 24 24" id="arrow-line-left" xmlns="http://www.w3.org/2000/svg"><path d="M5.333 17H3.667V7h1.666zM12 17l-5-5 5-5 1.167 1.167-2.98 3h10.146v1.666H10.188l3 3z"/></symbol><symbol viewBox="0 0 24 24" id="arrow-line-right" xmlns="http://www.w3.org/2000/svg"><path d="M18.667 17V7h1.666v10zM12 17l-1.187-1.167 3-3H3.666v-1.666h10.146l-2.98-3L12 7l5 5z"/></symbol><symbol viewBox="0 0 24 24" id="arrow-line-up" xmlns="http://www.w3.org/2000/svg"><path d="M5.333 6.167V4.5h13.334v1.667zM11.167 19.5V11L9 13.167 7.833 12 12 7.833 16.167 12 15 13.167 12.833 11v8.5z"/></symbol><symbol viewBox="0 0 24 24" id="arrow-prompt" xmlns="http://www.w3.org/2000/svg"><path d="m14.5 17.833-1.167-1.187 2.98-2.98H8.25q-1.563 0-2.656-1.093Q4.5 11.478 4.5 9.917T5.594 7.26Q6.687 6.167 8.25 6.167h.417v1.666H8.25q-.874 0-1.48.604a2.01 2.01 0 0 0-.603 1.48q0 .874.604 1.479Q7.375 12 8.25 12h8.063l-2.98-3L14.5 7.833l5 5z"/></symbol><symbol viewBox="0 0 24 24" id="arrow-redo" xmlns="http://www.w3.org/2000/svg"><path d="M10.747 17.25q-2.021 0-3.47-1.312-1.447-1.314-1.447-3.271 0-1.959 1.448-3.271 1.447-1.313 3.469-1.313h5.25L13.83 5.917l1.167-1.167 4.166 4.167-4.166 4.166-1.167-1.166 2.167-2.167h-5.25q-1.313 0-2.282.833-.968.833-.968 2.084 0 1.25.968 2.083.97.834 2.282.833h5.916v1.667z"/></symbol><symbol viewBox="0 0 24 24" id="arrow-right" xmlns="http://www.w3.org/2000/svg"><path d="m14.163 17-1.166-1.208 2.958-2.959H5.83v-1.666h10.125l-2.958-2.959L14.163 7l5 5z"/></symbol><symbol viewBox="0 0 24 24" id="arrow-square-in" xmlns="http://www.w3.org/2000/svg"><path d="M9.385 4.61h8.01c1.1 0 2 .9 2 2v8.01c0 1.1-.9 2-2 2h-3v-1.67h3.33V6.28h-8.67v3.33h-1.67v-3c0-1.1.9-2 2-2"/><path d="M9.355 13.48h-3v-1.67h5.83v5.83h-1.66v-3l-4.75 4.75-1.17-1.16z"/></symbol><symbol viewBox="0 0 24 24" id="arrow-square-out" xmlns="http://www.w3.org/2000/svg"><path d="M13.37 6.47V4.8h5.83v5.83h-1.67v-3l-6.75 6.75-1.16-1.16 6.75-6.75z"/><path d="M6.47 17.53h8.66V12.2h1.67v5c0 1.1-.9 2-2 2h-8c-1.1 0-2-.9-2-2v-8c0-1.1.9-2 2-2h5v1.67H6.47z"/></symbol><symbol viewBox="0 0 24 24" id="arrow-undo" xmlns="http://www.w3.org/2000/svg"><path d="M7.33 17.25v-1.667h5.917q1.313 0 2.28-.833.97-.834.97-2.083t-.97-2.084q-.967-.833-2.28-.833h-5.25l2.166 2.167-1.166 1.166L4.83 8.917 8.997 4.75l1.166 1.167-2.166 2.166h5.25q2.02 0 3.468 1.313 1.449 1.313 1.448 3.27 0 1.959-1.448 3.271-1.448 1.313-3.468 1.313z"/></symbol><symbol viewBox="0 0 24 24" id="arrow-up" xmlns="http://www.w3.org/2000/svg"><path d="M11.167 16.913V9.247l-3 3L7 11.08l5-5 5 5-1.167 1.167-3-3v7.666z"/></symbol><symbol viewBox="0 0 24 24" id="arrows-down-up" xmlns="http://www.w3.org/2000/svg"><path d="M8.667 12.833V6.854L6.52 9 5.333 7.833 9.5 3.667l4.167 4.166L12.479 9l-2.146-2.146v5.98zm5.833 7.5-4.167-4.166L11.521 15l2.146 2.146v-5.98h1.666v5.98L17.48 15l1.188 1.167z"/></symbol><symbol viewBox="0 0 24 24" id="arrows-left-right" xmlns="http://www.w3.org/2000/svg"><path d="M7.833 18.667 3.667 14.5l4.166-4.167L9 11.521l-2.146 2.146h5.98v1.666h-5.98L9 17.48zm8.334-5L15 12.479l2.146-2.146h-5.98V8.667h5.98L15 6.52l1.167-1.188L20.333 9.5z"/></symbol><symbol viewBox="0 0 24 24" id="asterisk" xmlns="http://www.w3.org/2000/svg"><path d="M11.167 19.5V14l-3.875 3.896-1.188-1.188L10 12.833H4.5v-1.666H10L6.104 7.292l1.188-1.188L11.167 10V4.5h1.666V10l3.875-3.896 1.188 1.188L14 11.167h5.5v1.666H14l3.896 3.875-1.188 1.188L12.833 14v5.5z"/></symbol><symbol viewBox="0 0 24 24" id="at" xmlns="http://www.w3.org/2000/svg"><path d="M12 20.333a8.1 8.1 0 0 1-3.25-.656 8.4 8.4 0 0 1-2.646-1.781 8.4 8.4 0 0 1-1.781-2.646A8.1 8.1 0 0 1 3.667 12q0-1.73.656-3.25a8.4 8.4 0 0 1 1.781-2.646A8.4 8.4 0 0 1 8.75 4.323 8.1 8.1 0 0 1 12 3.667q1.73 0 3.25.656a8.4 8.4 0 0 1 2.646 1.781 8.4 8.4 0 0 1 1.781 2.646 8.1 8.1 0 0 1 .656 3.25v1.208q0 1.23-.843 2.094-.845.865-2.073.865-.73 0-1.375-.313a2.94 2.94 0 0 1-1.084-.896 4 4 0 0 1-1.364.907 4.3 4.3 0 0 1-1.594.302q-1.729 0-2.948-1.22Q7.833 13.73 7.833 12t1.219-2.948T12 7.833t2.948 1.22Q16.167 10.27 16.167 12v1.208q0 .542.354.917t.896.375.895-.375.355-.917V12q0-2.791-1.938-4.73Q14.792 5.335 12 5.334q-2.792 0-4.73 1.938Q5.335 9.209 5.334 12q0 2.792 1.938 4.73Q9.208 18.665 12 18.666h4.167v1.666zm0-5.833a2.4 2.4 0 0 0 1.77-.73q.73-.727.73-1.77 0-1.042-.73-1.77A2.4 2.4 0 0 0 12 9.5a2.4 2.4 0 0 0-1.77.73A2.4 2.4 0 0 0 9.5 12q0 1.042.73 1.77a2.4 2.4 0 0 0 1.77.73"/></symbol><symbol viewBox="0 0 24 24" id="attachment" xmlns="http://www.w3.org/2000/svg"><path d="M18.125 11.576a.6.6 0 0 1 0 .848l-6.154 6.15a4.2 4.2 0 0 1-5.94-5.94l7.444-7.554a3 3 0 1 1 4.246 4.241l-7.446 7.554a1.803 1.803 0 1 1-2.55-2.55l6.248-6.346a.6.6 0 1 1 .854.841L8.58 15.173a.6.6 0 1 0 .846.852l7.445-7.55a1.802 1.802 0 0 0-2.545-2.55l-7.443 7.551a3 3 0 0 0 4.24 4.246l6.154-6.15a.6.6 0 0 1 .849.004"/></symbol><symbol viewBox="0 0 24 24" id="bank" xmlns="http://www.w3.org/2000/svg"><path d="M21.375 18.25a.625.625 0 0 1-.625.625H3.25a.625.625 0 1 1 0-1.25h17.5a.625.625 0 0 1 .625.625M3.273 9.67a.625.625 0 0 1 .275-.703l8.125-5a.63.63 0 0 1 .654 0l8.125 5a.625.625 0 0 1-.327 1.158H18.25v5h1.25a.625.625 0 0 1 0 1.25h-15a.625.625 0 1 1 0-1.25h1.25v-5H3.875a.625.625 0 0 1-.602-.455m9.977 4.83a.625.625 0 1 0 1.25 0v-3.75a.625.625 0 1 0-1.25 0zm-3.75 0a.625.625 0 1 0 1.25 0v-3.75a.625.625 0 1 0-1.25 0z"/></symbol><symbol viewBox="0 0 24 24" id="barcode" xmlns="http://www.w3.org/2000/svg"><path d="M8 6.67V5H4v4h1.67V6.67zm8 0V5h4v4h-1.67V6.67zM16 19v-1.67h2.33V15H20v4zm-8-1.67V19H4v-4h1.67v2.33zm3.25-8.83h-1v7h1zm4 0h1v7h-1zm-1.5 0h-1v7h1zm-6 0h1v7h-1z"/></symbol><symbol viewBox="0 0 24 24" id="barcode-reader" xmlns="http://www.w3.org/2000/svg"><path d="M8.171 19.917q-1.25 0-1.99-.969-.739-.97-.426-2.156l1.5-5.667a3.5 3.5 0 0 1-1.136-1.187 3.23 3.23 0 0 1-.448-1.688q0-1.375.98-2.354a3.2 3.2 0 0 1 2.354-.98h6.666q.938 0 1.417.792t.063 1.625l-1.667 3.334q-.23.416-.615.666-.386.25-.864.25h-1.688l-.229.834h.25q.354 0 .594.24.24.239.24.593v1.667q0 .354-.24.594a.8.8 0 0 1-.594.239h-1.125l-.625 2.333a2.47 2.47 0 0 1-.896 1.323q-.666.51-1.52.51M19.005 6.583l-.521-1.125 3.02-1.375.5 1.146zm2.5 5.834-3.021-1.354.52-1.146 3 1.375zm-2.5-3.542v-1.25h3.333v1.25z"/></symbol><symbol viewBox="0 0 24 24" id="barricade" xmlns="http://www.w3.org/2000/svg"><path d="M19.5 7h-15a1.25 1.25 0 0 0-1.25 1.25v5.625a1.25 1.25 0 0 0 1.25 1.25h1.875v2.5a.625.625 0 1 0 1.25 0v-2.5h8.75v2.5a.624.624 0 1 0 1.25 0v-2.5H19.5a1.25 1.25 0 0 0 1.25-1.25V8.25A1.25 1.25 0 0 0 19.5 7m-15 6.875V9.188l4.688 4.687zm15 0h-4.429L9.446 8.25h5.367l4.687 4.688z"/></symbol><symbol viewBox="0 0 24 24" id="basket" xmlns="http://www.w3.org/2000/svg"><path d="M11.395 11.74h1.2v3.53h-1.2zm4.57 0h-1.21l-.47 3.53h1.21zm-6.73 0 .47 3.53h-1.21l-.47-3.53z"/><path fill-rule="evenodd" d="M20.245 8.62c.05.06.1.14.12.22l.01-.01c.02.08.03.17.02.25l-1.13 8.48a1.21 1.21 0 0 1-1.19 1.04H5.925a1.214 1.214 0 0 1-1.19-1.04l-1.13-8.48c-.01-.08 0-.17.02-.25s.06-.16.12-.22c.05-.06.12-.12.2-.15s.16-.05.25-.05h3.33l4.02-4.6c.05-.06.12-.11.2-.15.08-.03.16-.05.25-.05s.17.01.25.05c.07.04.14.09.2.15l4.02 4.61h3.33c.09 0 .17.01.25.05a.7.7 0 0 1 .2.15M12 5.836 9.745 8.41h4.51zM6.325 16.94h11.32l.92-6.87H5.405z" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" id="bell" xmlns="http://www.w3.org/2000/svg"><path d="M5.333 17.833v-1.666H7v-5.834A4.88 4.88 0 0 1 8.042 7.26 4.8 4.8 0 0 1 10.75 5.5v-.583q0-.522.365-.886.364-.364.885-.364.52 0 .886.364.364.364.364.886V5.5a4.8 4.8 0 0 1 2.708 1.76A4.88 4.88 0 0 1 17 10.333v5.834h1.667v1.666zm6.667 2.5q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.176h3.334q0 .687-.49 1.177t-1.177.49"/></symbol><symbol viewBox="0 0 24 24" id="bell-active" xmlns="http://www.w3.org/2000/svg"><path d="M5.333 17.854v-1.666H7v-5.834a4.88 4.88 0 0 1 1.042-3.073 4.8 4.8 0 0 1 2.708-1.76v-.583q0-.522.364-.886.366-.364.886-.364t.885.364q.365.364.365.886v.583a4.8 4.8 0 0 1 2.708 1.76A4.88 4.88 0 0 1 17 10.354v5.834h1.667v1.666zm6.667 2.5q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177h3.334q0 .688-.49 1.178t-1.177.49m-8.333-10q0-2.083.927-3.823a8.5 8.5 0 0 1 2.49-2.885l.978 1.333a6.74 6.74 0 0 0-1.99 2.313q-.739 1.395-.739 3.062zm15 0q0-1.666-.74-3.062a6.74 6.74 0 0 0-1.99-2.313l.98-1.333a8.5 8.5 0 0 1 2.49 2.885q.926 1.74.926 3.823z"/></symbol><symbol viewBox="0 0 24 24" id="bell-slash" xmlns="http://www.w3.org/2000/svg"><path d="m19.672 19.656-1.167 1.167-3.041-3H5.339v-1.667h1.666v-5.833q0-.463.082-.918L3.172 5.49l1.167-1.166z"/><path d="M13.672 18.656q0 .687-.49 1.177t-1.177.49q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177zm-1.667-15q.521 0 .886.365.364.365.364.885v.583a4.8 4.8 0 0 1 2.709 1.761q1.04 1.344 1.04 3.073v4.291L8.84 6.448q.417-.333.895-.584.48-.249 1.02-.375v-.583q0-.52.366-.885.364-.365.885-.365"/></symbol><symbol viewBox="0 0 24 24" id="bin" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M20.05 6.35A1.17 1.17 0 0 0 19.2 6H4.8c-.32 0-.62.13-.85.35s-.35.53-.35.85V9c0 .32.13.62.35.85.23.23.53.35.85.35v6.6c0 .32.13.62.35.85s.53.35.85.35h12c.32 0 .62-.13.85-.35s.35-.53.35-.85v-6.6c.32 0 .62-.13.85-.35.22-.23.35-.53.35-.85V7.2c0-.32-.13-.62-.35-.85m-5.72 6.88H9.66v-1.25h4.67zM19.2 9H4.8V7.2h14.4z" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" id="blog-post" xmlns="http://www.w3.org/2000/svg"><path d="M5.333 19.5q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177V6.167q0-.688.49-1.177t1.177-.49h13.334q.687 0 1.177.49.49.489.49 1.177v11.666q0 .688-.49 1.177t-1.177.49zM7 16.167h10V14.5H7zm0-3.334h3.333v-5H7zm5 0h5v-1.666h-5zM12 9.5h5V7.833h-5z"/></symbol><symbol viewBox="0 0 24 24" id="blueprint" xmlns="http://www.w3.org/2000/svg"><path d="M12.625 11.375H14.5v1.25h-1.875zM20.75 7v10.625a.624.624 0 0 1-.625.625H5.75a2.5 2.5 0 0 1-2.5-2.5V7a2.5 2.5 0 0 1 2.5-2.5H7a.625.625 0 0 1 .625.625v1.25h12.5A.625.625 0 0 1 20.75 7M6.375 5.75H5.75A1.25 1.25 0 0 0 4.5 7v6.585c.38-.22.811-.336 1.25-.335h.625zm9.375 6.875v-1.25H17a.624.624 0 1 0 0-1.25h-1.25V9.5a.625.625 0 1 0-1.25 0v.625h-1.875V9.5a.625.625 0 1 0-1.25 0v.625h-1.25a.625.625 0 1 0 0 1.25h1.25v1.25h-1.25a.625.625 0 1 0 0 1.25h1.25v.625a.624.624 0 1 0 1.25 0v-.625H14.5v.625a.624.624 0 1 0 1.25 0v-.625H17a.624.624 0 1 0 0-1.25z"/></symbol><symbol viewBox="0 0 24 24" id="book" xmlns="http://www.w3.org/2000/svg"><path d="M8.25 20.333q-1.23 0-2.073-.843-.844-.844-.844-2.073V6.583q0-1.208.844-2.062t2.073-.854h10.417v12.5q-.542 0-.896.364a1.22 1.22 0 0 0-.354.886q0 .541.354.895.354.355.896.355v1.666zm0-1.666h7.77a4 4 0 0 1-.197-.594 2.8 2.8 0 0 1-.073-.656q0-.334.063-.646.061-.313.208-.604H8.25q-.542 0-.896.364a1.22 1.22 0 0 0-.354.886q0 .541.354.895.354.355.896.355"/></symbol><symbol viewBox="0 0 24 24" id="book-a" xmlns="http://www.w3.org/2000/svg"><path d="M8.25 20.333q-1.23 0-2.073-.843-.844-.844-.844-2.073V6.583q0-1.208.844-2.062t2.073-.854h10.417v12.5q-.542 0-.896.364a1.22 1.22 0 0 0-.354.886q0 .541.354.895.354.355.896.355v1.666zm1.02-7.5h1.022l.52-1.479h2.355l.52 1.48h1.021L12.5 7h-1.042zm1.834-2.333.854-2.417h.063l.854 2.417zM8.25 18.667h7.77a4 4 0 0 1-.197-.594 2.8 2.8 0 0 1-.073-.656q0-.334.063-.646.061-.313.208-.604H8.25q-.542 0-.896.364a1.22 1.22 0 0 0-.354.886q0 .541.354.895.354.355.896.355"/></symbol><symbol viewBox="0 0 24 24" id="bookmark" xmlns="http://www.w3.org/2000/svg"><path d="M6.167 19.5V6.167q0-.688.49-1.177.489-.49 1.176-.49h8.334q.687 0 1.177.49.49.489.49 1.177V19.5L12 17z"/></symbol><symbol viewBox="0 0 24 24" id="bookmark-outlined" xmlns="http://www.w3.org/2000/svg"><path d="m17.835 19.5-5.83-2.5-5.84 2.5V6.17c0-.46.16-.85.49-1.18s.72-.49 1.18-.49h8.33c.46 0 .85.16 1.18.49s.49.72.49 1.18zm-5.84-4.31 4.17 1.79V6.17h-8.33v10.81l4.17-1.79z"/></symbol><symbol viewBox="0 0 24 24" id="bookmarks" xmlns="http://www.w3.org/2000/svg"><path d="M5.333 20.333V8.667q0-.688.49-1.177T7 7h6.667q.687 0 1.177.49.49.489.49 1.177v11.666l-5-2.5zM17 17V5.333H7.833V3.667H17q.687 0 1.177.49.49.489.49 1.176V17z"/></symbol><symbol viewBox="0 0 24 24" id="broadcast" xmlns="http://www.w3.org/2000/svg"><path d="M15.125 12a3.125 3.125 0 1 1-6.25 0 3.125 3.125 0 0 1 6.25 0m3.125 0a6.23 6.23 0 0 0-1.591-4.166.625.625 0 1 0-.932.833 5 5 0 0 1 0 6.667.625.625 0 0 0 .931.833A6.23 6.23 0 0 0 18.25 12M8.273 8.667a.625.625 0 1 0-.932-.833 6.245 6.245 0 0 0 0 8.333.625.625 0 0 0 .932-.833 4.996 4.996 0 0 1 0-6.667m12.365-.312a9.3 9.3 0 0 0-1.942-2.917.625.625 0 1 0-.892.875 8.117 8.117 0 0 1 0 11.371.624.624 0 0 0 .45 1.065.62.62 0 0 0 .442-.186A9.38 9.38 0 0 0 20.638 8.35zM4.513 15.162a8.12 8.12 0 0 1 1.683-8.848.625.625 0 1 0-.892-.876 9.365 9.365 0 0 0 0 13.125.624.624 0 1 0 .892-.875 8.1 8.1 0 0 1-1.683-2.525"/></symbol><symbol viewBox="0 0 24 24" id="calendar" xmlns="http://www.w3.org/2000/svg"><path d="M12 13.667a.8.8 0 0 1-.594-.24.8.8 0 0 1-.24-.594q0-.354.24-.593.24-.24.594-.24t.594.24.24.593-.24.594a.8.8 0 0 1-.594.24m-3.333 0a.8.8 0 0 1-.594-.24.8.8 0 0 1-.24-.594q0-.354.24-.593.24-.24.594-.24t.593.24.24.593-.24.594a.8.8 0 0 1-.593.24m6.666 0a.8.8 0 0 1-.593-.24.8.8 0 0 1-.24-.594q0-.354.24-.593.24-.24.593-.24.354 0 .594.24t.24.593-.24.594a.8.8 0 0 1-.594.24M12 17a.8.8 0 0 1-.594-.24.8.8 0 0 1-.24-.593q0-.354.24-.594t.594-.24.594.24.24.594-.24.593A.8.8 0 0 1 12 17m-3.333 0a.8.8 0 0 1-.594-.24.8.8 0 0 1-.24-.593q0-.354.24-.594t.594-.24.593.24.24.594-.24.593a.8.8 0 0 1-.593.24m6.666 0a.8.8 0 0 1-.593-.24.8.8 0 0 1-.24-.593q0-.354.24-.594t.593-.24.594.24.24.594-.24.593a.8.8 0 0 1-.594.24m-9.166 3.333q-.688 0-1.177-.49a1.6 1.6 0 0 1-.49-1.176V7q0-.687.49-1.177.489-.49 1.177-.49H7V3.667h1.667v1.666h6.666V3.667H17v1.666h.833q.688 0 1.177.49T19.5 7v11.667q0 .687-.49 1.177-.489.49-1.177.49zm0-1.666h11.666v-8.334H6.167z"/></symbol><symbol viewBox="0 0 24 24" id="calendar-add" xmlns="http://www.w3.org/2000/svg"><path d="M16.973 20.333v-2.5h-2.5v-1.666h2.5v-2.5h1.667v2.5h2.5v1.666h-2.5v2.5zm-10-1.666q-.687 0-1.177-.49A1.6 1.6 0 0 1 5.306 17V7q0-.687.49-1.177t1.177-.49h.834V3.667h1.666v1.666h5V3.667h1.667v1.666h.833q.688 0 1.177.49T18.64 7v5.083a5.6 5.6 0 0 0-1.667 0v-1.75h-10V17h5.834q0 .417.062.833.063.417.23.834z"/></symbol><symbol viewBox="0 0 24 24" id="calendar-view-day" xmlns="http://www.w3.org/2000/svg"><path d="M6.167 16.167q-.688 0-1.177-.49A1.6 1.6 0 0 1 4.5 14.5v-5q0-.687.49-1.177.489-.49 1.177-.49h11.666q.688 0 1.177.49T19.5 9.5v5q0 .687-.49 1.177-.489.49-1.177.49zm-1.667-10V4.5h15v1.667zm0 13.333v-1.667h15V19.5z"/></symbol><symbol viewBox="0 0 24 24" id="calendar-view-month" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 10.75V7q0-.354.24-.594t.593-.24h2.771q.354 0 .594.24t.24.594v3.75q0 .354-.24.594a.8.8 0 0 1-.594.24h-2.77a.8.8 0 0 1-.594-.24.8.8 0 0 1-.24-.594m6.104.833a.8.8 0 0 1-.594-.24.8.8 0 0 1-.24-.593V7q0-.354.24-.594t.594-.24h2.792q.354 0 .594.24t.24.594v3.75q0 .354-.24.594a.8.8 0 0 1-.594.24zm5.292 0a.8.8 0 0 1-.594-.24.8.8 0 0 1-.24-.593V7q0-.354.24-.594t.594-.24h2.77q.355 0 .594.24.24.24.24.594v3.75q0 .354-.24.594a.8.8 0 0 1-.593.24zm-7.792 6.25h-2.77a.8.8 0 0 1-.594-.24A.8.8 0 0 1 4.5 17v-3.75q0-.354.24-.594t.593-.24h2.771q.354 0 .594.24t.24.594V17q0 .354-.24.594a.8.8 0 0 1-.594.24m2.5 0a.8.8 0 0 1-.594-.24.8.8 0 0 1-.24-.593v-3.75q0-.354.24-.594t.594-.24h2.792q.354 0 .594.24t.24.594V17q0 .354-.24.594a.8.8 0 0 1-.594.24zm5.292 0a.8.8 0 0 1-.594-.24.8.8 0 0 1-.24-.593v-3.75q0-.354.24-.594t.594-.24h2.77q.355 0 .594.24.24.24.24.594V17q0 .354-.24.594a.8.8 0 0 1-.593.24z"/></symbol><symbol viewBox="0 0 24 24" id="calendar-view-week" xmlns="http://www.w3.org/2000/svg"><path d="M13.458 17.833a.8.8 0 0 1-.593-.24.8.8 0 0 1-.24-.593V7q0-.354.24-.594t.593-.24h1.146q.354 0 .594.24t.24.594v10q0 .354-.24.594a.8.8 0 0 1-.594.24zm-4.062 0a.8.8 0 0 1-.594-.24.8.8 0 0 1-.24-.593V7q0-.354.24-.594t.594-.24h1.146q.354 0 .593.24.24.24.24.594v10q0 .354-.24.594a.8.8 0 0 1-.593.24zm-4.063 0a.8.8 0 0 1-.593-.24A.8.8 0 0 1 4.5 17V7q0-.354.24-.594t.593-.24H6.48q.354 0 .594.24t.24.594v10q0 .354-.24.594a.8.8 0 0 1-.594.24zm12.188 0a.8.8 0 0 1-.594-.24.8.8 0 0 1-.24-.593V7q0-.354.24-.594t.594-.24h1.146q.354 0 .593.24.24.24.24.594v10q0 .354-.24.594a.8.8 0 0 1-.593.24z"/></symbol><symbol viewBox="0 0 24 24" id="caret-down" xmlns="http://www.w3.org/2000/svg"><path d="m12 16.083-5-5 1.167-1.166L12 13.75l3.833-3.833L17 11.083z"/></symbol><symbol viewBox="0 0 24 24" id="caret-left" xmlns="http://www.w3.org/2000/svg"><path d="m12.917 17-5-5 5-5 1.166 1.167L10.25 12l3.833 3.833z"/></symbol><symbol viewBox="0 0 24 24" id="caret-right" xmlns="http://www.w3.org/2000/svg"><path d="M13.75 12 9.917 8.167 11.083 7l5 5-5 5-1.166-1.167z"/></symbol><symbol viewBox="0 0 24 24" id="caret-up" xmlns="http://www.w3.org/2000/svg"><path d="m12 10.25-3.833 3.833L7 12.917l5-5 5 5-1.167 1.166z"/></symbol><symbol viewBox="0 0 24 24" id="cart" xmlns="http://www.w3.org/2000/svg"><path d="M8.17 20.837q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177q0-.687.49-1.177t1.177-.49 1.177.49.49 1.177-.49 1.177-1.177.49m8.333 0q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177q0-.687.49-1.177t1.177-.49 1.177.49.49 1.177-.49 1.177-1.177.49m-9.833-15h12.292q.48 0 .729.427a.84.84 0 0 1 .02.864l-2.958 5.334a1.67 1.67 0 0 1-.614.646 1.6 1.6 0 0 1-.844.229H9.087l-.917 1.666h10v1.667h-10q-.937 0-1.417-.823t-.041-1.635l1.125-2.042-3-6.333H3.17V4.17h2.708z"/></symbol><symbol viewBox="0 0 24 24" id="certificate" xmlns="http://www.w3.org/2000/svg"><path d="M20.125 8.76V6.375a1.25 1.25 0 0 0-1.25-1.25H5.125a1.25 1.25 0 0 0-1.25 1.25v10a1.25 1.25 0 0 0 1.25 1.25H14.5V19.5a.625.625 0 0 0 .938.547l1.874-1.074 1.875 1.074a.624.624 0 0 0 .938-.547v-4.885a4.05 4.05 0 0 0 0-5.855M12 13.25H7.625a.625.625 0 1 1 0-1.25H12a.624.624 0 1 1 0 1.25m0-2.5H7.625a.625.625 0 1 1 0-1.25H12a.625.625 0 1 1 0 1.25m6.875 7.673-1.25-.716a.63.63 0 0 0-.62 0l-1.25.716v-2.985a4.05 4.05 0 0 0 3.125 0zM17.313 14.5a2.813 2.813 0 1 1 0-5.625 2.813 2.813 0 0 1 0 5.625"/></symbol><symbol viewBox="0 0 24 24" id="check" xmlns="http://www.w3.org/2000/svg"><path d="m9.958 17.01-4.75-4.75 1.188-1.187 3.562 3.562 7.646-7.645 1.188 1.187z"/></symbol><symbol viewBox="0 0 24 24" id="check-all" xmlns="http://www.w3.org/2000/svg"><path d="m7.583 17.01-4.708-4.708 1.188-1.167 4.708 4.709zm4.709 0-4.709-4.708 1.167-1.187 3.542 3.541 7.666-7.666 1.167 1.187zm0-4.708-1.188-1.167L15.23 7.01l1.188 1.167z"/></symbol><symbol viewBox="0 0 24 24" id="check-thick" xmlns="http://www.w3.org/2000/svg"><path d="m17.439 6.388-7.64 7.65-3.57-3.57-2.26 2.27 5.83 5.82 9.9-9.91z"/></symbol><symbol viewBox="0 0 24 24" id="checkbox" xmlns="http://www.w3.org/2000/svg"><path d="M6.167 19.5q-.688 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177V6.167q0-.688.49-1.177.489-.49 1.177-.49h11.666q.688 0 1.177.49.49.489.49 1.177v11.666q0 .688-.49 1.177-.489.49-1.177.49zm0-1.667h11.666V6.167H6.167z"/></symbol><symbol viewBox="0 0 24 24" id="checkbox-checked" xmlns="http://www.w3.org/2000/svg"><path d="m10.833 15.5 5.875-5.875-1.166-1.167-4.709 4.709-2.375-2.375-1.166 1.166zm-4.666 4q-.688 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177V6.167q0-.688.49-1.177.489-.49 1.177-.49h11.666q.688 0 1.177.49.49.489.49 1.177v11.666q0 .688-.49 1.177-.489.49-1.177.49z"/></symbol><symbol viewBox="0 0 24 24" id="checkbox-focus" xmlns="http://www.w3.org/2000/svg"><path d="M17.838 3.501c.71 0 1.38.28 1.88.78.51.51.791 1.18.791 1.891v11.676c0 .71-.28 1.38-.78 1.88-.51.51-1.18.791-1.891.791H6.172c-.71 0-1.38-.28-1.88-.78a2.658 2.658 0 0 1-.791-1.891V6.172c0-.71.28-1.38.78-1.88.51-.51 1.18-.791 1.891-.791h11.676m-.01-2.001H6.172c-1.24 0-2.41.49-3.301 1.37A4.62 4.62 0 0 0 1.51 6.163v11.676c0 1.24.49 2.41 1.37 3.301a4.629 4.629 0 0 0 3.292 1.361h11.676c1.24 0 2.41-.49 3.301-1.37a4.629 4.629 0 0 0 1.361-3.292V6.172c0-1.24-.49-2.41-1.37-3.301a4.62 4.62 0 0 0-3.292-1.361z"/></symbol><symbol viewBox="0 0 24 24" id="checkbox-indeterminate" xmlns="http://www.w3.org/2000/svg"><path d="M7.833 12.833h8.334v-1.666H7.833zM6.167 19.5q-.688 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177V6.167q0-.688.49-1.177.489-.49 1.177-.49h11.666q.688 0 1.177.49.49.489.49 1.177v11.666q0 .688-.49 1.177-.489.49-1.177.49z"/></symbol><symbol viewBox="0 0 24 24" id="circle" xmlns="http://www.w3.org/2000/svg"><path d="M12 20a7.8 7.8 0 0 1-3.12-.63 8.1 8.1 0 0 1-2.54-1.71 8.1 8.1 0 0 1-1.71-2.54A7.8 7.8 0 0 1 4 12q0-1.66.63-3.12t1.71-2.54a8.1 8.1 0 0 1 2.54-1.71A7.8 7.8 0 0 1 12 4a7.8 7.8 0 0 1 3.12.63q1.46.63 2.54 1.71t1.71 2.54T20 12a7.8 7.8 0 0 1-.63 3.12 8.1 8.1 0 0 1-1.71 2.54 8.1 8.1 0 0 1-2.54 1.71A7.8 7.8 0 0 1 12 20"/></symbol><symbol viewBox="0 0 24 24" id="circle-change" xmlns="http://www.w3.org/2000/svg"><path d="M9.5 17.833q-2.438 0-4.135-1.698Q3.667 14.437 3.667 12t1.698-4.135T9.5 6.167t4.135 1.698T15.333 12t-1.698 4.135T9.5 17.833m5.833-.083v-1.667a4.03 4.03 0 0 0 2.396-1.437A4.06 4.06 0 0 0 18.667 12q0-1.5-.938-2.646a4.03 4.03 0 0 0-2.396-1.437V6.25q2.168.292 3.584 1.927T20.333 12q0 2.188-1.416 3.823-1.418 1.636-3.584 1.927"/></symbol><symbol viewBox="0 0 24 24" id="circle-check" xmlns="http://www.w3.org/2000/svg"><path d="M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8m-1.17 11.5-3.54-3.54 1.17-1.17 2.37 2.38 4.71-4.71 1.17 1.17-5.88 5.88z"/></symbol><symbol viewBox="0 0 24 24" id="circles-add" xmlns="http://www.w3.org/2000/svg"><path d="M11.375 8.25a3.125 3.125 0 1 1-6.25 0 3.125 3.125 0 0 1 6.25 0m4.375 3.125a3.125 3.125 0 1 0 0-6.25 3.125 3.125 0 0 0 0 6.25m-7.5 1.25a3.125 3.125 0 1 0 0 6.25 3.125 3.125 0 0 0 0-6.25m10 2.5h-1.875V13.25a.624.624 0 1 0-1.25 0v1.875H13.25a.624.624 0 1 0 0 1.25h1.875v1.875a.624.624 0 1 0 1.25 0v-1.875h1.875a.624.624 0 1 0 0-1.25"/></symbol><symbol viewBox="0 0 24 24" id="circuit" xmlns="http://www.w3.org/2000/svg"><path d="m8.875 10.696 3.75 3.75v4.742a.313.313 0 0 1-.312.312H5.75a1.25 1.25 0 0 1-1.25-1.25V5.75A1.25 1.25 0 0 1 5.75 4.5h1.563a.31.31 0 0 1 .312.313v9.17a1.875 1.875 0 1 0 1.25 0zm-.625 5.679a.626.626 0 1 0 0-1.251.626.626 0 0 0 0 1.251m8.125-6.25a.626.626 0 1 0-1.251 0 .626.626 0 0 0 1.251 0M18.25 4.5h-4.062a.313.313 0 0 0-.313.313v2.553l1.067 1.068a1.875 1.875 0 1 1-.883.883l-1.25-1.25a.62.62 0 0 1-.184-.442V4.813a.31.31 0 0 0-.312-.313H9.187a.31.31 0 0 0-.312.313v4.116l4.817 4.816a.63.63 0 0 1 .183.443v5a.313.313 0 0 0 .313.312h4.062a1.25 1.25 0 0 0 1.25-1.25V5.75a1.25 1.25 0 0 0-1.25-1.25"/></symbol><symbol viewBox="0 0 24 24" id="clipboard" xmlns="http://www.w3.org/2000/svg"><path d="M6.167 19.8q-.688 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177V6.467q0-.688.49-1.177.489-.49 1.177-.49h3.479q.229-.729.896-1.198.666-.469 1.458-.469a2.5 2.5 0 0 1 1.49.47q.656.467.885 1.197h3.458q.688 0 1.177.49.49.489.49 1.177v11.666q0 .688-.49 1.177-.489.49-1.177.49zm0-1.667h11.666V6.467h-1.666v2.5H7.833v-2.5H6.167zM12 6.467q.354 0 .594-.24t.24-.594a.8.8 0 0 0-.24-.593A.8.8 0 0 0 12 4.8a.8.8 0 0 0-.594.24.8.8 0 0 0-.24.593q0 .354.24.594t.594.24"/></symbol><symbol viewBox="0 0 24 24" id="clock" xmlns="http://www.w3.org/2000/svg"><path d="m14.75 15.917 1.167-1.167-3.084-3.083V7.833h-1.666v4.5zM12 20.333a8.1 8.1 0 0 1-3.25-.656 8.4 8.4 0 0 1-2.646-1.781 8.4 8.4 0 0 1-1.781-2.646A8.1 8.1 0 0 1 3.667 12q0-1.73.656-3.25a8.4 8.4 0 0 1 1.781-2.646A8.4 8.4 0 0 1 8.75 4.323 8.1 8.1 0 0 1 12 3.667q1.73 0 3.25.656a8.4 8.4 0 0 1 2.646 1.781 8.4 8.4 0 0 1 1.781 2.646 8.1 8.1 0 0 1 .656 3.25 8.1 8.1 0 0 1-.656 3.25 8.4 8.4 0 0 1-1.781 2.646 8.4 8.4 0 0 1-2.646 1.781 8.1 8.1 0 0 1-3.25.656"/></symbol><symbol viewBox="0 0 24 24" id="clock-countdown" xmlns="http://www.w3.org/2000/svg"><path d="M14.708 6.167q-.437 0-.74-.302a1 1 0 0 1-.301-.74q0-.437.302-.74.302-.301.74-.302.436 0 .739.303.302.3.302.74 0 .436-.302.739a1 1 0 0 1-.74.302m0 13.75q-.437 0-.74-.302a1 1 0 0 1-.301-.74q0-.438.302-.74.302-.301.74-.302.436 0 .739.303.302.3.302.74 0 .436-.302.739a1 1 0 0 1-.74.302m3.334-10.834q-.438 0-.74-.302a1 1 0 0 1-.302-.74q0-.436.302-.739.302-.302.74-.302.437 0 .74.302.3.303.301.74 0 .437-.302.74a1 1 0 0 1-.74.301m0 7.917q-.438 0-.74-.302a1 1 0 0 1-.302-.74q0-.437.302-.74.302-.3.74-.301.437 0 .74.302.3.302.301.74 0 .437-.302.739a1 1 0 0 1-.74.302m1.25-3.958q-.438 0-.74-.302a1 1 0 0 1-.302-.74q0-.437.302-.74.302-.301.74-.302.437 0 .74.303.3.3.301.74 0 .436-.302.739a1 1 0 0 1-.74.302M12 20.333a8.1 8.1 0 0 1-3.25-.656 8.4 8.4 0 0 1-2.646-1.781 8.4 8.4 0 0 1-1.781-2.646A8.1 8.1 0 0 1 3.667 12q0-1.73.656-3.25a8.4 8.4 0 0 1 1.781-2.646A8.4 8.4 0 0 1 8.75 4.323 8.1 8.1 0 0 1 12 3.667v1.666q-2.792 0-4.73 1.938Q5.335 9.208 5.334 12q0 2.79 1.938 4.728T12 18.667zm2.75-4.416-3.583-3.584v-4.5h1.666v3.834l3.084 3.083z"/></symbol><symbol viewBox="0 0 24 24" id="cloud-synced" xmlns="http://www.w3.org/2000/svg"><path d="m10.625 16.167 4.708-4.709-1.208-1.208-3.52 3.52-1.75-1.75-1.188 1.188zm-3.208 2.5q-1.896 0-3.24-1.313t-1.344-3.208q0-1.626.98-2.896a4.33 4.33 0 0 1 2.562-1.625 5.66 5.66 0 0 1 2.083-3.104A5.7 5.7 0 0 1 12 5.333q2.438 0 4.136 1.698t1.697 4.136a3.64 3.64 0 0 1 2.386 1.24q.948 1.072.948 2.51 0 1.562-1.094 2.656t-2.656 1.094z"/></symbol><symbol viewBox="0 0 24 24" id="code" xmlns="http://www.w3.org/2000/svg"><path d="m8.667 17-5-5 5-5 1.187 1.188-3.833 3.833 3.812 3.812zm6.666 0-1.187-1.187 3.833-3.834-3.812-3.812L15.333 7l5 5z"/></symbol><symbol viewBox="0 0 24 24" id="color" xmlns="http://www.w3.org/2000/svg"><path d="M12 20.333a8.1 8.1 0 0 1-3.23-.656 8.5 8.5 0 0 1-2.655-1.792 8.5 8.5 0 0 1-1.792-2.656A8.1 8.1 0 0 1 3.667 12a7.9 7.9 0 0 1 .677-3.25 8.4 8.4 0 0 1 1.833-2.646 8.7 8.7 0 0 1 2.698-1.781 8.3 8.3 0 0 1 3.292-.656q1.666 0 3.146.573t2.593 1.583a7.6 7.6 0 0 1 1.771 2.396q.657 1.385.656 2.99 0 2.395-1.458 3.676t-3.542 1.282h-1.541q-.188 0-.26.104a.4.4 0 0 0-.074.229q0 .25.313.719.312.468.312 1.073 0 1.041-.573 1.541t-1.51.5m-4.583-7.5q.541 0 .895-.354.355-.354.355-.896 0-.541-.355-.896a1.21 1.21 0 0 0-.895-.354q-.542 0-.896.354a1.21 1.21 0 0 0-.354.896q0 .542.354.896t.896.354m2.5-3.333q.541 0 .896-.354.354-.354.354-.896t-.354-.896A1.21 1.21 0 0 0 9.917 7q-.542 0-.896.354a1.21 1.21 0 0 0-.354.896q0 .542.354.896t.896.354m4.166 0q.542 0 .896-.354t.354-.896-.354-.896A1.21 1.21 0 0 0 14.083 7q-.541 0-.896.354a1.21 1.21 0 0 0-.354.896q0 .542.354.896.355.354.896.354m2.5 3.333q.542 0 .896-.354t.354-.896-.354-.896a1.21 1.21 0 0 0-.896-.354q-.541 0-.895.354a1.21 1.21 0 0 0-.355.896q0 .542.354.896.355.354.896.354"/></symbol><symbol viewBox="0 0 24 24" id="compass" xmlns="http://www.w3.org/2000/svg"><path d="M18.806 11.66a.624.624 0 1 0-1.112-.57 6.2 6.2 0 0 1-2.585 2.618L13.684 10.5a2.813 2.813 0 0 0-1.059-4.992V3.875a.625.625 0 0 0-1.25 0v1.634a2.812 2.812 0 0 0-1.06 4.992L6.43 19.246a.625.625 0 1 0 1.142.508l1.964-4.419A7.5 7.5 0 0 0 12 15.75a7.8 7.8 0 0 0 2.469-.407l1.96 4.41a.625.625 0 0 0 1.142-.507l-1.953-4.394a7.5 7.5 0 0 0 3.188-3.193M12 14.5a6.2 6.2 0 0 1-1.953-.312l1.412-3.179a2.79 2.79 0 0 0 1.085 0l1.417 3.188A6.5 6.5 0 0 1 12 14.5"/></symbol><symbol viewBox="0 0 24 24" id="cone" xmlns="http://www.w3.org/2000/svg"><path d="M20.125 18.25h-1.43l-4.71-13.535a1.25 1.25 0 0 0-1.18-.84h-1.61a1.25 1.25 0 0 0-1.18.84L5.304 18.25h-1.43a.625.625 0 1 0 0 1.25h16.25a.624.624 0 1 0 0-1.25m-10.67-8.125h5.09l1.304 3.75H8.151z"/></symbol><symbol viewBox="0 0 24 24" id="confetti" xmlns="http://www.w3.org/2000/svg"><path d="M10.71 6.112a1.234 1.234 0 0 0-2.031.45l-4.1 11.28A1.237 1.237 0 0 0 5.73 19.5a1.3 1.3 0 0 0 .427-.078l11.279-4.102a1.234 1.234 0 0 0 .451-2.03zm-3.62 8.476 1.5-4.124 4.946 4.947-4.125 1.5zm7.41-6.963c.012-.423.114-.838.3-1.217.414-.828 1.195-1.283 2.2-1.283.523 0 .86-.179 1.067-.563a1.7 1.7 0 0 0 .183-.692.625.625 0 1 1 1.25.005c0 1.005-.666 2.5-2.5 2.5-.523 0-.86.179-1.066.563a1.7 1.7 0 0 0-.184.692.627.627 0 0 1-.866.574.625.625 0 0 1-.384-.579m-1.875-2.5V3.25a.625.625 0 1 1 1.25 0v1.875a.625.625 0 0 1-1.25 0m7.942 6.433a.624.624 0 1 1-.884.883l-1.25-1.25a.625.625 0 1 1 .884-.884zm.38-3.34-1.874.625a.625.625 0 0 1-.396-1.186l1.875-.625a.625.625 0 0 1 .396 1.186"/></symbol><symbol viewBox="0 0 24 24" id="copy" xmlns="http://www.w3.org/2000/svg"><path d="M8.735 15.28c.33.33.72.49 1.18.49v.01h7.5c.46 0 .85-.16 1.18-.49s.49-.72.49-1.18V6.56c0-.46-.16-.85-.49-1.18s-.72-.49-1.18-.49h-7.5c-.46 0-.85.16-1.18.49s-.49.72-.49 1.18v7.54c0 .46.16.85.49 1.18"/><path d="M5.405 18.62c.33.33.72.49 1.18.49h9.17v-1.67h-9.17V8.22h-1.67v9.22c0 .46.16.85.49 1.18"/></symbol><symbol viewBox="0 0 24 24" id="credit-card" xmlns="http://www.w3.org/2000/svg"><path d="M19.5 5.75h-15A1.25 1.25 0 0 0 3.25 7v10a1.25 1.25 0 0 0 1.25 1.25h15A1.25 1.25 0 0 0 20.75 17V7a1.25 1.25 0 0 0-1.25-1.25m-6.875 10h-1.25a.624.624 0 1 1 0-1.25h1.25a.624.624 0 1 1 0 1.25m5 0h-2.5a.624.624 0 1 1 0-1.25h2.5a.624.624 0 1 1 0 1.25M4.5 8.875V7h15v1.875z"/></symbol><symbol viewBox="0 0 24 24" id="cube-focus" xmlns="http://www.w3.org/2000/svg"><path d="M20.125 5.75v3.125a.625.625 0 1 1-1.25 0v-2.5h-2.5a.625.625 0 1 1 0-1.25H19.5a.625.625 0 0 1 .625.625m-12.5 11.875h-2.5v-2.5a.625.625 0 1 0-1.25 0v3.125a.625.625 0 0 0 .625.625h3.125a.625.625 0 1 0 0-1.25M19.5 14.5a.624.624 0 0 0-.625.625v2.5h-2.5a.624.624 0 1 0 0 1.25H19.5a.624.624 0 0 0 .625-.625v-3.125a.624.624 0 0 0-.625-.625m-15-5a.625.625 0 0 0 .625-.625v-2.5h2.5a.625.625 0 0 0 0-1.25H4.5a.625.625 0 0 0-.625.625v3.125A.625.625 0 0 0 4.5 9.5m11.4-.991-3.588-2.052a.63.63 0 0 0-.62 0L8.1 8.509a.313.313 0 0 0 0 .546l3.9 2.226 3.9-2.23a.312.312 0 0 0 0-.542M7 10.4v4.1a.63.63 0 0 0 .313.547l3.593 2.052a.312.312 0 0 0 .469-.27v-4.466L7.469 10.13A.312.312 0 0 0 7 10.4m10 4.1v-4.1a.312.312 0 0 0-.469-.27l-3.906 2.233v4.461a.312.312 0 0 0 .469.271l3.594-2.048A.63.63 0 0 0 17 14.5"/></symbol><symbol viewBox="0 0 24 24" id="cursor" xmlns="http://www.w3.org/2000/svg"><path d="m19.226 18.234-.992.992a.937.937 0 0 1-1.328 0l-4.42-4.42-1.502 3.919-.01.026a1.24 1.24 0 0 1-1.141.749h-.061a1.235 1.235 0 0 1-1.126-.86L4.563 6.135a1.246 1.246 0 0 1 1.571-1.572l12.507 4.084a1.25 1.25 0 0 1 .11 2.328l-.026.01-3.919 1.506 4.42 4.419a.937.937 0 0 1 0 1.325"/></symbol><symbol viewBox="0 0 24 24" id="cursor-click" xmlns="http://www.w3.org/2000/svg"><path d="M19.226 16.909a.94.94 0 0 1 0 1.328l-.992.989a.937.937 0 0 1-1.328 0l-4.418-4.42-1.504 3.92c0 .008-.006.016-.01.025a1.24 1.24 0 0 1-1.14.749h-.062a1.24 1.24 0 0 1-1.126-.86L4.563 6.135a1.25 1.25 0 0 1 1.571-1.572l12.507 4.084a1.25 1.25 0 0 1 .11 2.328l-.025.01-3.92 1.506zM9.5 4.5a.625.625 0 0 0 .625-.625V3.25a.625.625 0 0 0-1.25 0v.625A.625.625 0 0 0 9.5 4.5m-6.25 5.625h.625a.625.625 0 0 0 0-1.25H3.25a.625.625 0 0 0 0 1.25m8.47-5.066a.625.625 0 0 0 .84-.28l.624-1.25a.625.625 0 1 0-1.117-.559l-.626 1.25a.623.623 0 0 0 .28.84m-7.5 6.382-1.25.625a.625.625 0 0 0 .56 1.118l1.25-.625a.626.626 0 0 0-.082-1.152.63.63 0 0 0-.478.034"/></symbol><symbol viewBox="0 0 24 24" id="cut" xmlns="http://www.w3.org/2000/svg"><path d="M17.833 19.5 12 13.667l-1.958 1.958q.165.312.229.667.062.354.062.708a3.2 3.2 0 0 1-.979 2.354 3.2 3.2 0 0 1-2.354.98 3.2 3.2 0 0 1-2.354-.98A3.2 3.2 0 0 1 3.666 17q0-1.375.98-2.354A3.2 3.2 0 0 1 7 13.666q.354 0 .708.063.355.063.667.23L10.333 12l-1.958-1.958q-.312.165-.667.229a4 4 0 0 1-.708.062 3.2 3.2 0 0 1-2.354-.979A3.2 3.2 0 0 1 3.666 7q0-1.375.98-2.354A3.2 3.2 0 0 1 7 3.666a3.2 3.2 0 0 1 2.354.98A3.2 3.2 0 0 1 10.334 7q0 .354-.063.708a2.2 2.2 0 0 1-.23.667l10.292 10.292v.833zM14.5 11.167 12.833 9.5l5-5h2.5v.833zM7 8.667q.687 0 1.177-.49T8.667 7t-.49-1.177A1.6 1.6 0 0 0 7 5.333q-.687 0-1.177.49T5.333 7t.49 1.177T7 8.667m5 3.75a.4.4 0 0 0 .292-.125.4.4 0 0 0 0-.584.4.4 0 0 0-.584 0 .4.4 0 0 0-.125.292.4.4 0 0 0 .125.292.4.4 0 0 0 .292.125m-5 6.25q.687 0 1.177-.49T8.667 17t-.49-1.177A1.6 1.6 0 0 0 7 15.333q-.687 0-1.177.49T5.333 17t.49 1.177 1.177.49"/></symbol><symbol viewBox="0 0 24 24" id="data-object" xmlns="http://www.w3.org/2000/svg"><path d="M13.667 18.667V17h2.5q.354 0 .593-.24.24-.24.24-.593V14.5q0-.792.458-1.437a2.5 2.5 0 0 1 1.209-.917v-.292a2.5 2.5 0 0 1-1.209-.916A2.43 2.43 0 0 1 17 9.5V7.833a.8.8 0 0 0-.24-.593.8.8 0 0 0-.593-.24h-2.5V5.333h2.5q1.041 0 1.77.73a2.4 2.4 0 0 1 .73 1.77V9.5q0 .354.24.594.239.24.593.24h.833v3.333H19.5a.8.8 0 0 0-.594.24.8.8 0 0 0-.24.593v1.667a2.4 2.4 0 0 1-.729 1.77 2.4 2.4 0 0 1-1.77.73zm-5.834 0a2.4 2.4 0 0 1-1.77-.73 2.4 2.4 0 0 1-.73-1.77V14.5a.8.8 0 0 0-.24-.594.8.8 0 0 0-.593-.24h-.833v-3.333H4.5q.354 0 .594-.24.24-.239.24-.593V7.833q0-1.041.728-1.77a2.4 2.4 0 0 1 1.771-.73h2.5V7h-2.5a.8.8 0 0 0-.593.24.8.8 0 0 0-.24.593V9.5q0 .792-.458 1.438a2.5 2.5 0 0 1-1.209.916v.292q.75.27 1.209.916Q7 13.709 7 14.5v1.667q0 .354.24.593.24.24.593.24h2.5v1.667z"/></symbol><symbol viewBox="0 0 24 24" id="database" xmlns="http://www.w3.org/2000/svg"><path d="M12 11.167q3.125 0 5.313-.98Q19.5 9.21 19.5 7.834q0-1.374-2.187-2.354Q15.125 4.5 12 4.5q-3.125 0-5.312.98Q4.5 6.458 4.5 7.832t2.188 2.355q2.187.978 5.312.979m0 2.083q.855 0 2.135-.177a13.7 13.7 0 0 0 2.47-.573q1.186-.396 2.04-1.031.855-.636.855-1.552V12q0 .917-.854 1.552-.855.635-2.042 1.031t-2.469.573q-1.281.177-2.135.177-.855 0-2.135-.177a13.7 13.7 0 0 1-2.47-.573q-1.186-.396-2.04-1.03Q4.5 12.915 4.5 12V9.917q0 .916.854 1.552.854.635 2.042 1.031a13.7 13.7 0 0 0 2.469.573q1.281.177 2.135.177m0 4.167q.855 0 2.135-.177a13.7 13.7 0 0 0 2.47-.573q1.186-.396 2.04-1.032.855-.634.855-1.552v2.084q0 .916-.854 1.552-.855.635-2.042 1.031t-2.469.573Q12.854 19.5 12 19.5q-.855 0-2.135-.177a13.7 13.7 0 0 1-2.47-.573q-1.186-.396-2.04-1.031-.855-.636-.855-1.552v-2.084q0 .917.854 1.552.854.636 2.042 1.032a13.7 13.7 0 0 0 2.469.573q1.281.177 2.135.177"/></symbol><symbol viewBox="0 0 24 24" id="devices" xmlns="http://www.w3.org/2000/svg"><path d="M3.667 18.667v-2.5h1.666V7q0-.687.49-1.177T7 5.333h12.5V7H7v9.167h5v2.5zm10.833 0a.8.8 0 0 1-.594-.24.8.8 0 0 1-.24-.594V9.5q0-.354.24-.594t.594-.24h5q.354 0 .594.24t.24.594v8.333q0 .354-.24.594a.8.8 0 0 1-.594.24z"/></symbol><symbol viewBox="0 0 24 24" id="dictionary" xmlns="http://www.w3.org/2000/svg"><path d="M5.333 13.854h.938l.479-1.375h2.167l.5 1.375h.916L8.313 8.48h-.959zm1.688-2.146.792-2.229h.041l.792 2.23zm6.646-1.458V8.833a7.3 7.3 0 0 1 3.979-.5q.52.083 1.02.209v1.333a6 6 0 0 0-1.01-.281 6 6 0 0 0-1.073-.094q-.79 0-1.52.198a6.7 6.7 0 0 0-1.396.552m0 4.583v-1.416q.687-.292 1.406-.438.72-.146 1.51-.146.543 0 1.063.084.52.083 1.02.208v1.333a6 6 0 0 0-1.01-.28 6 6 0 0 0-1.073-.095q-.79 0-1.52.188a5.8 5.8 0 0 0-1.396.562m0-2.291v-1.417a7.3 7.3 0 0 1 3.979-.5q.52.084 1.02.208v1.334a6 6 0 0 0-1.01-.282 6 6 0 0 0-1.073-.093q-.79 0-1.52.198a6.7 6.7 0 0 0-1.396.552m-.834 3.666a9 9 0 0 1 1.844-.656 8.559 8.559 0 0 1 3.375-.094q.72.126 1.448.375v-8.25a7.2 7.2 0 0 0-1.427-.437 7.7 7.7 0 0 0-3.427.104 7.1 7.1 0 0 0-1.813.75zM12 18.667a8 8 0 0 0-2.167-1.23A6.8 6.8 0 0 0 7.417 17q-.876 0-1.719.23-.843.228-1.615.645-.437.23-.843-.02a.8.8 0 0 1-.407-.73V7.083q0-.228.115-.437a.72.72 0 0 1 .344-.313 8.7 8.7 0 0 1 2-.75 9 9 0 0 1 2.125-.25q1.207 0 2.364.313 1.156.312 2.219.937a9 9 0 0 1 4.583-1.25q1.084 0 2.125.25a8.7 8.7 0 0 1 2 .75q.23.105.344.313a.9.9 0 0 1 .115.437v10.042q0 .48-.407.73t-.843.02a7.5 7.5 0 0 0-1.615-.646A6.5 6.5 0 0 0 16.583 17q-1.25 0-2.416.438Q13 17.874 12 18.667"/></symbol><symbol viewBox="0 0 24 24" id="dna" xmlns="http://www.w3.org/2000/svg"><path d="M17.625 17.977v2.148a.625.625 0 1 1-1.25 0v-2.148a4.97 4.97 0 0 0-2.764-4.473l-3.781-1.89a6.22 6.22 0 0 1-3.455-5.59v-2.15a.625.625 0 1 1 1.25 0v2.148a4.97 4.97 0 0 0 2.764 4.473l3.781 1.89a6.22 6.22 0 0 1 3.455 5.59m-3.125-.352H7.638a4.94 4.94 0 0 1 .253-1.25h5.68a.625.625 0 1 0 0-1.25h-5.05a4.98 4.98 0 0 1 1.144-1.178.627.627 0 0 0-.74-1.01 6.27 6.27 0 0 0-2.55 5.04v2.148a.625.625 0 1 0 1.25 0v-1.25H14.5a.625.625 0 1 0 0-1.25M17 3.25a.625.625 0 0 0-.625.625v1.25H9.5a.625.625 0 0 0 0 1.25h6.862a4.94 4.94 0 0 1-.253 1.25h-5.68a.625.625 0 0 0 0 1.25h5.05a4.96 4.96 0 0 1-1.144 1.178.626.626 0 0 0 .74 1.008 6.27 6.27 0 0 0 2.55-5.038V3.875A.625.625 0 0 0 17 3.25"/></symbol><symbol viewBox="0 0 24 24" id="donut" xmlns="http://www.w3.org/2000/svg"><path d="M12 14.5a2.4 2.4 0 0 0 1.77-.73q.73-.727.73-1.77 0-1.042-.73-1.77A2.4 2.4 0 0 0 12 9.5a2.4 2.4 0 0 0-1.77.73A2.4 2.4 0 0 0 9.5 12q0 1.042.73 1.77a2.4 2.4 0 0 0 1.77.73m0 5.833a8.1 8.1 0 0 1-3.25-.656 8.4 8.4 0 0 1-2.646-1.781 8.4 8.4 0 0 1-1.781-2.646A8.1 8.1 0 0 1 3.667 12q0-1.73.656-3.25a8.4 8.4 0 0 1 1.781-2.646A8.4 8.4 0 0 1 8.75 4.323 8.1 8.1 0 0 1 12 3.667q1.73 0 3.25.656a8.4 8.4 0 0 1 2.646 1.781 8.4 8.4 0 0 1 1.781 2.646 8.1 8.1 0 0 1 .656 3.25 8.1 8.1 0 0 1-.656 3.25 8.4 8.4 0 0 1-1.781 2.646 8.4 8.4 0 0 1-2.646 1.781 8.1 8.1 0 0 1-3.25.656"/></symbol><symbol viewBox="0 0 24 24" id="dot" xmlns="http://www.w3.org/2000/svg"><path d="M12 8.25a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5m0 4.688a.937.937 0 1 1 0-1.875.937.937 0 0 1 0 1.874"/></symbol><symbol viewBox="0 0 24 24" id="dots" xmlns="http://www.w3.org/2000/svg"><path d="M7 13.667q-.687 0-1.177-.49A1.6 1.6 0 0 1 5.333 12q0-.687.49-1.177T7 10.333t1.177.49.49 1.177-.49 1.177-1.177.49m5 0q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177q0-.687.49-1.177t1.177-.49 1.177.49.49 1.177-.49 1.177-1.177.49m5 0q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177q0-.687.49-1.177t1.177-.49 1.177.49.49 1.177-.49 1.177-1.177.49"/></symbol><symbol viewBox="0 0 24 24" id="download" xmlns="http://www.w3.org/2000/svg"><path d="m12 15.333-4.167-4.166L9 9.958l2.167 2.167V5.333h1.666v6.792L15 9.958l1.167 1.209zm-5 3.334q-.687 0-1.177-.49A1.6 1.6 0 0 1 5.333 17v-2.5H7V17h10v-2.5h1.667V17q0 .687-.49 1.177t-1.177.49z"/></symbol><symbol viewBox="0 0 24 24" id="download-cloud" xmlns="http://www.w3.org/2000/svg"><path d="M7.417 18.636q-1.896 0-3.24-1.313t-1.344-3.208q0-1.626.98-2.896a4.33 4.33 0 0 1 2.562-1.625A5.8 5.8 0 0 1 8.156 6.76a5.7 5.7 0 0 1 3.01-1.395v6.729l-1.333-1.292-1.166 1.167L12 15.302l3.333-3.333-1.166-1.167-1.334 1.292v-6.73q2.146.292 3.573 1.928t1.427 3.844a3.64 3.64 0 0 1 2.386 1.239q.948 1.073.948 2.51 0 1.563-1.094 2.657-1.095 1.093-2.656 1.093z"/></symbol><symbol viewBox="0 0 24 24" id="edit" xmlns="http://www.w3.org/2000/svg"><path d="M6.167 19.5q-.688 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177V6.167q0-.688.49-1.177.489-.49 1.177-.49h7.437l-1.666 1.667H6.167v11.666h11.666v-5.791l1.667-1.667v7.458q0 .688-.49 1.177-.489.49-1.177.49zm3.333-5v-3.542l7.646-7.645q.25-.25.562-.376.313-.124.625-.124a1.65 1.65 0 0 1 1.188.5L20.687 4.5q.23.25.355.552.125.301.125.615 0 .312-.115.614a1.6 1.6 0 0 1-.364.552L13.042 14.5zm1.667-1.667h1.166L17.167 8l-.584-.583-.604-.584-4.812 4.813z"/></symbol><symbol viewBox="0 0 24 24" id="encrypted" xmlns="http://www.w3.org/2000/svg"><path d="M10.75 14.833h2.5l-.48-2.687q.418-.209.657-.604.24-.396.24-.875 0-.688-.49-1.177A1.6 1.6 0 0 0 12 9q-.687 0-1.177.49-.49.489-.49 1.177 0 .479.24.875t.656.604zM12 20.667q-2.895-.73-4.781-3.323-1.886-2.595-1.886-5.76V6.5L12 4l6.667 2.5v5.083q0 3.167-1.886 5.76-1.885 2.595-4.781 3.324"/></symbol><symbol viewBox="0 0 24 24" id="envelope" xmlns="http://www.w3.org/2000/svg"><path d="M5.333 18.667q-.687 0-1.177-.49A1.6 1.6 0 0 1 3.666 17V7q0-.687.49-1.177t1.177-.49h13.334q.687 0 1.177.49T20.334 7v10q0 .687-.49 1.177t-1.177.49zM12 12.833l6.667-4.166V7L12 11.167 5.333 7v1.667z"/></symbol><symbol viewBox="0 0 24 24" id="equal" xmlns="http://www.w3.org/2000/svg"><path d="M5.333 16.167v-2.5h13.334v2.5zm0-5.834v-2.5h13.334v2.5z"/></symbol><symbol viewBox="0 0 24 24" id="eraser" xmlns="http://www.w3.org/2000/svg"><path d="M16.36 17.417h3.958v1.666h-5.625zM5.942 19.083l-1.771-1.77a1.65 1.65 0 0 1-.49-1.188q-.01-.708.47-1.208l9.166-9.5q.48-.5 1.177-.5a1.6 1.6 0 0 1 1.177.479l4.146 4.146q.48.48.479 1.187 0 .708-.48 1.188l-7 7.166z"/></symbol><symbol viewBox="0 0 24 24" id="error" xmlns="http://www.w3.org/2000/svg"><path d="M12 16.167q.354 0 .594-.24t.24-.594a.8.8 0 0 0-.24-.593.8.8 0 0 0-.594-.24.8.8 0 0 0-.594.24.8.8 0 0 0-.24.593q0 .354.24.594t.594.24m-.833-3.334h1.666v-5h-1.666zM8.875 19.5 4.5 15.125v-6.25L8.875 4.5h6.25L19.5 8.875v6.25L15.125 19.5z"/></symbol><symbol viewBox="0 0 24 24" id="event-list" xmlns="http://www.w3.org/2000/svg"><path d="M15.333 19.5q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177V14.5q0-.687.49-1.177t1.177-.49h3.334q.687 0 1.177.49t.49 1.177v3.333q0 .688-.49 1.177t-1.177.49zM3.667 17v-1.667h7.5V17zm11.666-5.833q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177V6.167q0-.688.49-1.177t1.177-.49h3.334q.687 0 1.177.49.49.489.49 1.177V9.5q0 .687-.49 1.177t-1.177.49zm-11.666-2.5V7h7.5v1.667z"/></symbol><symbol viewBox="0 0 24 24" id="export" xmlns="http://www.w3.org/2000/svg"><path d="M11.17 6.537 9.15 8.55l-.88-.88L12 3.94l3.73 3.73-.88.88-2.01-2.003v8.243h-1.67z"/><path d="M16.96 9.8h-2v1.5h2.5v6h-11v-6h2.5V9.8h-2c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-5c0-1.1-.9-2-2-2"/></symbol><symbol viewBox="0 0 24 24" id="extension" xmlns="http://www.w3.org/2000/svg"><path d="M9.755 19.078H6.59q-.688 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177v-3.166q1 0 1.75-.636.75-.635.75-1.614t-.75-1.615a2.62 2.62 0 0 0-1.75-.635V6.578q0-.687.49-1.177.489-.49 1.177-.49h3.333q0-.875.604-1.479a2 2 0 0 1 1.48-.604q.874 0 1.479.604.604.604.604 1.48h3.333q.687 0 1.177.489.49.49.49 1.177v3.333q.874 0 1.479.604.604.604.604 1.48 0 .874-.604 1.479a2 2 0 0 1-1.48.604v3.333q0 .688-.489 1.177-.49.49-1.177.49h-3.167q0-1.042-.656-1.77-.656-.73-1.594-.73-.937 0-1.593.73-.657.728-.657 1.77"/></symbol><symbol viewBox="0 0 24 24" id="eye" xmlns="http://www.w3.org/2000/svg"><path d="M12 15.75q1.563 0 2.656-1.094Q15.751 13.563 15.75 12t-1.094-2.656T12 8.25 9.344 9.344Q8.25 10.437 8.25 12t1.094 2.656Q10.437 15.751 12 15.75m0-1.5a2.17 2.17 0 0 1-1.594-.656A2.17 2.17 0 0 1 9.75 12q0-.937.656-1.594A2.17 2.17 0 0 1 12 9.75a2.17 2.17 0 0 1 1.594.656q.656.657.656 1.594a2.17 2.17 0 0 1-.656 1.594A2.17 2.17 0 0 1 12 14.25m0 4q-3.042 0-5.542-1.698T2.833 12q1.125-2.854 3.625-4.552T12 5.75t5.542 1.698T21.167 12q-1.126 2.854-3.625 4.552T12 18.25"/></symbol><symbol viewBox="0 0 24 24" id="eye-slash" xmlns="http://www.w3.org/2000/svg"><path d="M18.5 21.254 15 17.795a10 10 0 0 1-1.469.344q-.74.114-1.531.114-3.145 0-5.604-1.739t-3.563-4.51Q3.271 10.9 3.938 9.95a9.6 9.6 0 0 1 1.52-1.697L3.167 5.92l1.166-1.166 15.334 15.333zm-6.5-5.5q.23 0 .427-.021.198-.021.427-.084l-4.5-4.5a3 3 0 0 0-.083.428q-.021.197-.021.427 0 1.562 1.094 2.656 1.093 1.094 2.656 1.094m6.083.374-2.645-2.624q.145-.355.229-.72.083-.364.083-.78 0-1.563-1.094-2.657Q13.563 8.254 12 8.254a3.5 3.5 0 0 0-.781.083 3.5 3.5 0 0 0-.719.25L8.375 6.462A9.2 9.2 0 0 1 12 5.754q3.145 0 5.604 1.74 2.46 1.738 3.563 4.51-.48 1.23-1.26 2.28a9.2 9.2 0 0 1-1.824 1.844m-3.854-3.833-2.5-2.5q.585-.104 1.073.094.49.198.844.573t.51.864.073.97"/></symbol><symbol viewBox="0 0 24 24" id="faq" xmlns="http://www.w3.org/2000/svg"><path d="M19.68 8.75A8.5 8.5 0 0 0 17.9 6.1a8.4 8.4 0 0 0-2.65-1.78c-1.01-.44-2.1-.66-3.25-.66s-2.24.22-3.25.66S6.85 5.35 6.1 6.1 4.76 7.73 4.32 8.75s-.66 2.1-.66 3.25.22 2.24.66 3.25 1.03 1.9 1.78 2.65 1.63 1.34 2.65 1.78c1.01.44 2.1.66 3.25.66h6.67c.46 0 .85-.16 1.18-.49s.49-.72.49-1.18V12c0-1.15-.22-2.24-.66-3.25m-7.02 7.95c-.2.2-.45.3-.74.3s-.54-.1-.74-.3-.3-.45-.3-.74.1-.54.3-.74.45-.3.74-.3.54.1.74.3.3.45.3.74-.1.54-.3.74m1.96-6.12c-.2.33-.55.73-1.03 1.22-.36.36-.6.66-.71.9s-.17.6-.17 1.1h-1.54c0-.62.09-1.12.26-1.49s.49-.75.95-1.16c.36-.32.62-.61.77-.88.15-.26.23-.51.23-.75 0-.33-.12-.6-.38-.8-.25-.2-.56-.3-.94-.3a1.61 1.61 0 0 0-1.6 1.25l-1.38-.54q.315-1.005 1.11-1.56c.53-.38 1.18-.56 1.95-.56.85 0 1.52.23 2.02.68s.75 1.05.75 1.78q0 .63-.3 1.11z"/></symbol><symbol viewBox="0 0 24 24" id="file" xmlns="http://www.w3.org/2000/svg"><path d="M8.667 17h6.666v-1.667H8.667zm0-3.333h6.666V12H8.667zM7 20.333q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.176V5.333q0-.687.49-1.177T7 3.666h6.667l5 5v10q0 .688-.49 1.178t-1.177.49zM12.833 9.5H17l-4.167-4.167z"/></symbol><symbol viewBox="0 0 24 24" id="file-add" xmlns="http://www.w3.org/2000/svg"><path d="M11.167 17h1.666v-2.5h2.5v-1.667h-2.5v-2.5h-1.666v2.5h-2.5V14.5h2.5zM7 20.333q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.176V5.333q0-.687.49-1.177T7 3.666h6.667l5 5v10q0 .688-.49 1.178t-1.177.49zM12.833 9.5H17l-4.167-4.167z"/></symbol><symbol viewBox="0 0 24 24" id="files" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M18.55 7.57a.5.5 0 0 0-.13-.19l-3-3a.5.5 0 0 0-.19-.13.6.6 0 0 0-.23-.05H9c-.32 0-.62.13-.85.35-.23.23-.35.53-.35.85v1.2H6.6c-.32 0-.62.13-.85.35-.22.23-.35.53-.35.85v10.8c0 .32.13.62.35.85.23.23.53.35.85.35H15c.32 0 .62-.13.85-.35.22-.23.35-.53.35-.85v-1.2h1.2c.32 0 .62-.13.85-.35.23-.23.35-.53.35-.85V7.8c0-.08-.02-.16-.05-.23m-5.23 9.59H8.04v-1.32h5.28zm0-2.64H8.04V13.2h5.28zm-1.86-3.18v-3.3l3.3 3.3zm5.94 4.86h-1.2v-6c0-.08-.01-.16-.05-.23a.5.5 0 0 0-.13-.19l-3-3a.5.5 0 0 0-.19-.13.6.6 0 0 0-.23-.05H9V5.4h5.75l2.65 2.65z" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" id="filter" xmlns="http://www.w3.org/2000/svg"><path d="M4 7.5h16v1.67H4zm13 3.67H7v1.67h10zm-3 3.66h-4v1.67h4z"/></symbol><symbol viewBox="0 0 24 24" id="filter-remove" xmlns="http://www.w3.org/2000/svg"><path d="M20 7.5H4v1.67h16zM7 11.17h10v1.67H7zm3 3.66h3v1.67h-3zm9.6.43-1.54 1.54 1.54 1.54-.85.85-1.54-1.54-1.54 1.54-.85-.85 1.54-1.54-1.54-1.54.85-.85 1.54 1.54 1.54-1.54z"/></symbol><symbol viewBox="0 0 24 24" id="finish" xmlns="http://www.w3.org/2000/svg"><path d="M6.167 19.5q-.688 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177V14.5h1.667v3.333h11.666V6.167H6.167V9.5H4.5V6.167q0-.688.49-1.177.489-.49 1.177-.49h11.666q.688 0 1.177.49.49.489.49 1.177v11.666q0 .688-.49 1.177-.489.49-1.177.49zm4.583-3.333-1.167-1.209 2.125-2.125H4.5v-1.666h7.208L9.583 9.042l1.167-1.209L14.917 12z"/></symbol><symbol viewBox="0 0 24 24" id="fit-screen" xmlns="http://www.w3.org/2000/svg"><path d="M18.667 9.5V7h-2.5V5.333h2.5q.687 0 1.177.49T20.334 7v2.5zm-15 0V7q0-.687.49-1.177.489-.49 1.176-.49h2.5V7h-2.5v2.5zm12.5 9.167V17h2.5v-2.5h1.666V17q0 .687-.49 1.177-.489.49-1.176.49zm-10.834 0q-.687 0-1.177-.49A1.6 1.6 0 0 1 3.666 17v-2.5h1.667V17h2.5v1.667zM7 15.333V8.667h10v6.666z"/></symbol><symbol viewBox="0 0 24 24" id="flag" xmlns="http://www.w3.org/2000/svg"><path d="M5.75 19.667V5.5h7.5l.333 1.667h4.667V15.5h-5.833l-.334-1.667H7.417v5.834z"/></symbol><symbol viewBox="0 0 24 24" id="flag-checkered" xmlns="http://www.w3.org/2000/svg"><path d="M19.76 5.809a.63.63 0 0 0-.67.097c-2.187 1.892-4.04.975-6.188-.088-2.225-1.102-4.747-2.35-7.561.088a.63.63 0 0 0-.216.469V19.5a.625.625 0 0 0 1.25 0v-3.456c2.093-1.653 3.896-.761 5.973.267 1.28.634 2.66 1.316 4.14 1.316 1.089 0 2.23-.37 3.424-1.406a.63.63 0 0 0 .215-.469V6.375a.63.63 0 0 0-.368-.566M6.374 14.534v-3.95c1.316-.88 2.55-.905 3.75-.573v4.042c-1.182-.298-2.432-.279-3.75.481m3.75-8.56c.723.221 1.454.582 2.223.963.88.435 1.805.893 2.777 1.137v4.042c1.2.332 2.433.308 3.75-.574v3.915c-1.318 1.04-2.521 1.072-3.75.696v-4.037c-1.69-.468-3.31-1.64-5-2.105z"/></symbol><symbol viewBox="0 0 24 24" id="forklift" xmlns="http://www.w3.org/2000/svg"><path d="M5.333 19.076a2.4 2.4 0 0 1-1.77-.73 2.4 2.4 0 0 1-.73-1.77q0-.542.209-1.031.208-.49.625-.844v-3.959h1.666v-5H12l3.917 9.23q.125.292.187.583.063.292.063.604a2.8 2.8 0 0 1-.855 2.063 2.8 2.8 0 0 1-2.062.854q-.855 0-1.573-.448a2.77 2.77 0 0 1-1.073-1.219H7.688q-.272.75-.917 1.209-.646.458-1.438.458M17 18.242V4.91h1.667v11.667h2.5v1.666zM5.333 17.41q.354 0 .594-.24t.24-.593a.8.8 0 0 0-.24-.594.8.8 0 0 0-.594-.24.8.8 0 0 0-.593.24.8.8 0 0 0-.24.594q0 .354.24.594t.593.24m7.917 0q.52 0 .886-.364.364-.366.364-.886t-.364-.885a1.2 1.2 0 0 0-.886-.365q-.52 0-.885.365a1.2 1.2 0 0 0-.365.885q0 .521.365.886.364.364.885.364m-3.812-4.166h3.937l-2.48-5.834H7v3.334z"/></symbol><symbol viewBox="0 0 24 24" id="fullscreen" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 19.5v-4.167h1.667v2.5h2.5V19.5zm10.833 0v-1.667h2.5v-2.5H19.5V19.5zM4.5 8.667V4.5h4.167v1.667h-2.5v2.5zm13.333 0v-2.5h-2.5V4.5H19.5v4.167z"/></symbol><symbol viewBox="0 0 24 24" id="fullscreen-exit" xmlns="http://www.w3.org/2000/svg"><path d="M7 19.5V17H4.5v-1.667h4.167V19.5zm8.333 0v-4.167H19.5V17H17v2.5zM4.5 8.667V7H7V4.5h1.667v4.167zm10.833 0V4.5H17V7h2.5v1.667z"/></symbol><symbol viewBox="0 0 24 24" id="garage" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M19.7 16.75V8.76L12 3.63 4.3 8.76v7.99H3V18h18v-1.25zm-8.32 0H7v-1.74h4.38zm0-3.25H7v-1.74h4.38zM17 16.75h-4.38v-1.74H17zm0-3.25h-4.38v-1.74H17z" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" id="gauge" xmlns="http://www.w3.org/2000/svg"><path d="M19.334 9.098a.312.312 0 0 0-.482-.048l-5.893 5.892a.625.625 0 0 1-.88-.883l7.241-7.242a.626.626 0 0 0-.884-.884l-1.045 1.046a8.754 8.754 0 0 0-13.646 9.806 1.26 1.26 0 0 0 1.182.84h14.146a1.25 1.25 0 0 0 1.18-.837 8.77 8.77 0 0 0-.92-7.69M6.488 15.001a.625.625 0 0 1-1.225.248 6.88 6.88 0 0 1 7.955-8.141.625.625 0 1 1-.22 1.23 5.63 5.63 0 0 0-6.51 6.663"/></symbol><symbol viewBox="0 0 24 24" id="globe" xmlns="http://www.w3.org/2000/svg"><path d="M12 20.333a8.1 8.1 0 0 1-3.25-.656 8.4 8.4 0 0 1-2.646-1.781 8.4 8.4 0 0 1-1.781-2.646A8.1 8.1 0 0 1 3.667 12q0-1.73.656-3.25a8.4 8.4 0 0 1 1.781-2.646A8.4 8.4 0 0 1 8.75 4.323 8.1 8.1 0 0 1 12 3.667q1.73 0 3.25.656a8.4 8.4 0 0 1 2.646 1.781 8.4 8.4 0 0 1 1.781 2.646 8.1 8.1 0 0 1 .656 3.25 8.1 8.1 0 0 1-.656 3.25 8.4 8.4 0 0 1-1.781 2.646 8.4 8.4 0 0 1-2.646 1.781 8.1 8.1 0 0 1-3.25.656m0-1.666q2.792 0 4.73-1.938 1.936-1.937 1.937-4.729 0-.146-.01-.302a4 4 0 0 1-.011-.26q-.105.603-.563 1a1.6 1.6 0 0 1-1.083.395h-1.667q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.176v-.834h-3.333V8.667q0-.688.49-1.177T12 7h.833q0-.479.26-.844.261-.364.636-.593a9 9 0 0 0-.844-.167A6 6 0 0 0 12 5.333q-2.791 0-4.73 1.938Q5.335 9.209 5.334 12H9.5a3.2 3.2 0 0 1 2.354.98 3.2 3.2 0 0 1 .98 2.353v.834h-2.5v2.291q.415.105.822.157.406.051.844.052"/></symbol><symbol viewBox="0 0 24 24" id="globe-grid" xmlns="http://www.w3.org/2000/svg"><path d="M12 20.333a8.1 8.1 0 0 1-3.23-.656 8.5 8.5 0 0 1-2.655-1.792 8.5 8.5 0 0 1-1.792-2.656A8.1 8.1 0 0 1 3.667 12a8 8 0 0 1 .656-3.24 8.5 8.5 0 0 1 1.792-2.645A8.5 8.5 0 0 1 8.77 4.323 8.1 8.1 0 0 1 12 3.667a8 8 0 0 1 3.24.656 8.5 8.5 0 0 1 2.645 1.792 8.5 8.5 0 0 1 1.792 2.645 8 8 0 0 1 .656 3.24 8.1 8.1 0 0 1-.656 3.23 8.5 8.5 0 0 1-1.792 2.655 8.5 8.5 0 0 1-2.645 1.792 8 8 0 0 1-3.24.656m0-1.708q.542-.75.938-1.562t.645-1.73h-3.166q.25.917.646 1.73.395.812.937 1.562m-2.167-.333q-.374-.688-.656-1.427a12 12 0 0 1-.469-1.532H6.25a6.9 6.9 0 0 0 1.51 1.813 6 6 0 0 0 2.073 1.146m4.334 0a6 6 0 0 0 2.073-1.146 6.9 6.9 0 0 0 1.51-1.813h-2.458a12 12 0 0 1-.47 1.532q-.28.739-.655 1.427m-8.625-4.625h2.833a11.01 11.01 0 0 1-.094-2.51q.031-.408.094-.824H5.542q-.105.417-.157.823-.051.406-.052.844a6.6 6.6 0 0 0 .209 1.667m4.5 0h3.916q.063-.417.094-.823a11 11 0 0 0 0-1.688q-.03-.405-.094-.823h-3.916q-.063.417-.094.823a11 11 0 0 0 0 1.688q.03.405.094.823m5.583 0h2.833q.105-.417.157-.823.051-.406.052-.844a6.6 6.6 0 0 0-.209-1.667h-2.833q.063.417.094.823a11 11 0 0 1 0 1.688q-.031.405-.094.823m-.333-5h2.458a6.9 6.9 0 0 0-1.51-1.813 6 6 0 0 0-2.073-1.146q.374.688.656 1.427.281.74.469 1.532m-4.875 0h3.166a10 10 0 0 0-.646-1.73A10.6 10.6 0 0 0 12 5.376q-.542.75-.937 1.563a10 10 0 0 0-.646 1.729m-4.167 0h2.458q.188-.792.47-1.532.28-.739.655-1.427A6 6 0 0 0 7.76 6.854a6.9 6.9 0 0 0-1.51 1.813"/></symbol><symbol viewBox="0 0 24 24" id="gripper" xmlns="http://www.w3.org/2000/svg"><path d="M9.5 18.667q-.687 0-1.177-.49A1.6 1.6 0 0 1 7.833 17q0-.687.49-1.177t1.177-.49 1.177.49.49 1.177-.49 1.177-1.177.49m5 0q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177q0-.687.49-1.177t1.177-.49 1.177.49.49 1.177-.49 1.177-1.177.49m-5-5q-.687 0-1.177-.49A1.6 1.6 0 0 1 7.833 12q0-.687.49-1.177t1.177-.49 1.177.49.49 1.177-.49 1.177-1.177.49m5 0q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177q0-.687.49-1.177t1.177-.49 1.177.49.49 1.177-.49 1.177-1.177.49m-5-5q-.687 0-1.177-.49A1.6 1.6 0 0 1 7.833 7q0-.687.49-1.177t1.177-.49 1.177.49.49 1.177-.49 1.177-1.177.49m5 0q-.687 0-1.177-.49A1.6 1.6 0 0 1 12.833 7q0-.687.49-1.177t1.177-.49 1.177.49.49 1.177-.49 1.177-1.177.49"/></symbol><symbol viewBox="0 0 24 24" id="handle" xmlns="http://www.w3.org/2000/svg"><path d="M5.333 14.5v-1.667h13.334V14.5zm0-3.333V9.5h13.334v1.667z"/></symbol><symbol viewBox="0 0 24 24" id="handle-vertical" xmlns="http://www.w3.org/2000/svg"><path d="M11.17 5.335v13.33H9.5V5.335zm3.33 0v13.33h-1.67V5.335z"/></symbol><symbol viewBox="0 0 24 24" id="hash" xmlns="http://www.w3.org/2000/svg"><path d="m7 18.667.833-3.334H4.5l.417-1.666H8.25l.833-3.334H5.75l.417-1.666H9.5l.833-3.334H12l-.833 3.334H14.5l.833-3.334H17l-.833 3.334H19.5l-.417 1.666H15.75l-.833 3.334h3.333l-.417 1.666H14.5l-.833 3.334H12l.833-3.334H9.5l-.833 3.334zm2.917-5h3.333l.833-3.334H10.75z"/></symbol><symbol viewBox="0 0 24 24" id="heart" xmlns="http://www.w3.org/2000/svg"><path d="M20.7 9.37a5.18 5.18 0 0 0-1.87-3.35c-1.01-.8-2.3-1.16-3.56-.97-1.59.23-2.56 1.16-3.27 2.5-.71-1.35-1.68-2.27-3.27-2.5-1.27-.18-2.55.17-3.57.98A5.08 5.08 0 0 0 3.3 9.37c-.75 5.67 8.07 10.36 8.41 10.55.09.05.19.08.29.08s.2-.03.29-.08c.34-.19 9.16-4.88 8.41-10.55"/></symbol><symbol viewBox="0 0 24 24" id="heart-outlined" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M15.93 5c-.22 0-.44.02-.66.05-1.59.23-2.56 1.16-3.27 2.5-.71-1.35-1.68-2.27-3.27-2.5-.22-.03-.44-.05-.66-.05a4.7 4.7 0 0 0-2.91 1.03A5.08 5.08 0 0 0 3.3 9.37c-.75 5.67 8.07 10.36 8.41 10.55.09.05.19.08.29.08s.2-.03.29-.08c.34-.19 9.16-4.88 8.41-10.55a5.18 5.18 0 0 0-1.87-3.35A4.7 4.7 0 0 0 15.93 5m0 1.67c.68 0 1.32.23 1.87.66.68.54 1.13 1.36 1.25 2.26.44 3.31-4.02 6.83-7.05 8.59-3.03-1.76-7.49-5.28-7.05-8.59.12-.9.58-1.72 1.25-2.26a3 3 0 0 1 2.29-.63c.91.13 1.5.6 2.03 1.63.29.55.86.89 1.47.89s1.19-.34 1.47-.89c.54-1.02 1.13-1.49 2.03-1.63q.21-.03.42-.03" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" id="help" xmlns="http://www.w3.org/2000/svg"><path d="M12 17q.438 0 .74-.302t.302-.74-.302-.74a1 1 0 0 0-.74-.301q-.437 0-.74.302a1 1 0 0 0-.302.74q0 .437.302.739.303.302.74.302m-.75-3.208h1.542q0-.75.166-1.104.167-.355.709-.896.73-.73 1.03-1.22.303-.488.303-1.114 0-1.104-.75-1.78Q13.5 7 12.23 7q-1.147 0-1.949.563T9.167 9.125l1.375.542q.145-.562.583-.907.438-.343 1.02-.343.563 0 .938.302t.375.802q0 .354-.229.75-.23.395-.77.875-.688.604-.949 1.156-.26.552-.26 1.49M6.167 19.5q-.688 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177V6.167q0-.688.49-1.177.489-.49 1.177-.49h11.666q.688 0 1.177.49.49.489.49 1.177v11.666q0 .688-.49 1.177-.489.49-1.177.49z"/></symbol><symbol viewBox="0 0 24 24" id="history" xmlns="http://www.w3.org/2000/svg"><path d="M12 19.5q-2.875 0-5.01-1.906-2.136-1.907-2.448-4.76H6.25Q6.542 15 8.177 16.416 9.813 17.833 12 17.833q2.438 0 4.135-1.698 1.698-1.698 1.698-4.135t-1.698-4.135T12 6.167q-1.437 0-2.687.666a6.2 6.2 0 0 0-2.105 1.834H9.5v1.666h-5v-5h1.667v1.959A7.3 7.3 0 0 1 8.76 5.229Q10.292 4.5 12 4.5q1.563 0 2.927.594 1.364.593 2.375 1.604a7.6 7.6 0 0 1 1.604 2.375Q19.5 10.437 19.5 12a7.3 7.3 0 0 1-.594 2.927 7.6 7.6 0 0 1-1.604 2.375 7.6 7.6 0 0 1-2.375 1.604A7.3 7.3 0 0 1 12 19.5m2.333-4-3.166-3.167v-4.5h1.666v3.834l2.667 2.666z"/></symbol><symbol viewBox="0 0 24 24" id="home" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="m18.665 11.44 1.5 1.12 1-1.31-9.16-7-9.17 7 1 1.33 1.5-1.15v6.15h-2.33v1h18v-1h-2.33v-6.15zm-5.16 6.14h-3v-4h3z" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" id="image" xmlns="http://www.w3.org/2000/svg"><path d="M5.333 18.667q-.687 0-1.177-.49A1.6 1.6 0 0 1 3.666 17V7q0-.687.49-1.177t1.177-.49h13.334q.687 0 1.177.49T20.334 7v10q0 .687-.49 1.177t-1.177.49zM7 15.333h10l-3.125-4.166-2.5 3.333L9.5 12z"/></symbol><symbol viewBox="0 0 24 24" id="images" xmlns="http://www.w3.org/2000/svg"><path d="M9.5 13.667h8.333l-2.875-3.75-1.916 2.5-1.292-1.667zM8.667 17q-.688 0-1.177-.49A1.6 1.6 0 0 1 7 15.333v-10q0-.687.49-1.177.489-.49 1.177-.49h10q.687 0 1.177.49t.49 1.177v10q0 .688-.49 1.177t-1.177.49zm-3.334 3.333q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.176V7h1.667v11.667H17v1.666z"/></symbol><symbol viewBox="0 0 24 24" id="inbox" xmlns="http://www.w3.org/2000/svg"><path d="M6.167 19.5q-.688 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177V6.167q0-.688.49-1.177.489-.49 1.177-.49h11.666q.688 0 1.177.49.49.489.49 1.177v11.666q0 .688-.49 1.177-.489.49-1.177.49zM12 15.333q.792 0 1.438-.458.645-.459.895-1.208h3.5v-7.5H6.167v7.5h3.5q.25.75.896 1.208.646.459 1.437.458"/></symbol><symbol viewBox="0 0 24 24" id="infinity" xmlns="http://www.w3.org/2000/svg"><path d="M6.583 16.583q-1.915 0-3.25-1.333Q2 13.917 2 12t1.333-3.25q1.335-1.333 3.25-1.333.77 0 1.48.27.708.271 1.27.771L10.75 9.75 9.5 10.875 8.208 9.708a2.6 2.6 0 0 0-.75-.458 2.3 2.3 0 0 0-.875-.167 2.8 2.8 0 0 0-2.062.855A2.8 2.8 0 0 0 3.667 12q0 1.209.854 2.063a2.8 2.8 0 0 0 2.062.854q.46 0 .875-.167.417-.167.75-.458l6.459-5.834q.562-.5 1.27-.77.71-.271 1.48-.271 1.915 0 3.25 1.333Q22 10.083 22 12t-1.333 3.25q-1.335 1.333-3.25 1.333-.77 0-1.48-.27a4.1 4.1 0 0 1-1.27-.771L13.25 14.25l1.25-1.125 1.292 1.167q.333.291.75.458.416.167.875.167a2.8 2.8 0 0 0 2.062-.854A2.8 2.8 0 0 0 20.333 12a2.8 2.8 0 0 0-.854-2.062 2.8 2.8 0 0 0-2.062-.855q-.46 0-.875.167a2.6 2.6 0 0 0-.75.458l-6.459 5.834a4.1 4.1 0 0 1-1.27.77q-.71.271-1.48.271"/></symbol><symbol viewBox="0 0 24 24" id="info" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M12 3.67A8.33 8.33 0 1 0 20.33 12c0-4.6-3.72-8.33-8.33-8.33m0 2.92c.57 0 1.03.46 1.03 1.03S12.57 8.65 12 8.65s-1.03-.46-1.03-1.03.46-1.03 1.03-1.03m2.24 10H9.76v-1.03h.69c.38 0 .69-.31.69-.69v-3.45c0-.38-.31-.69-.69-.69h-.69V9.7h3.1v5.17c0 .38.31.69.69.69h.69z" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" id="inventory" xmlns="http://www.w3.org/2000/svg"><path d="M13.5 4.5v2H15v-2h4v2h1.5v1h-17v-1h6v-2zm7 8v1h-17v-1h2v-2h4v2H11v-2h4v2zm0 6v1h-17v-1h1v-2h4v2H10v-2h4v2h1.5v-2h4v2z"/></symbol><symbol viewBox="0 0 24 24" id="invoice" xmlns="http://www.w3.org/2000/svg"><path d="M6.415 8.705c.61.17 1.09.47 1.41.86l-.01-.01c.32.4.49.87.49 1.4 0 .66-.2 1.17-.6 1.52-.33.29-.74.49-1.2.59v.83h-1.49v-.87c-.39-.11-.74-.31-1.04-.57-.2-.18-.37-.42-.53-.74l-.1-.2 1.39-.57c.11.23.22.38.34.48.2.17.45.25.79.25.28 0 .53-.07.72-.19.16-.11.24-.27.24-.5 0-.22-.06-.38-.19-.5-.08-.08-.35-.26-1.16-.52-.76-.24-1.27-.52-1.57-.87s-.45-.79-.45-1.29c0-.6.2-1.09.6-1.43.31-.26.64-.44.97-.52v-.83h1.49v.83c.36.09.68.25.93.47.18.16.34.36.48.61l.12.2-1.39.58a1 1 0 0 0-.26-.34c-.13-.1-.33-.15-.59-.15q-.45 0-.66.18c-.14.12-.2.24-.2.41 0 .19.08.32.25.43.23.14.64.29 1.22.46"/><path fill-rule="evenodd" d="M8.555 5.525h11.09v.01c.34 0 .62.27.62.62v11.06c0 .69-.56 1.25-1.25 1.25H4.985c-.69 0-1.25-.56-1.25-1.25v-2.32l1.67.5v1.4h9v-2.4h-5.85l1-1.2h4.85v-2.4h-4.5v-1.2h8.7v-2.4h-9.05zm7.05 11.27h3v-2.4h-3zm0-3.6h3v-2.4h-3z" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" id="jump-back" xmlns="http://www.w3.org/2000/svg"><path d="M12 19.539a7.3 7.3 0 0 1-2.927-.594 7.6 7.6 0 0 1-2.375-1.604 7.6 7.6 0 0 1-1.604-2.375 7.3 7.3 0 0 1-.594-2.927h1.667q0 2.437 1.698 4.135T12 17.872t4.135-1.698 1.698-4.135-1.698-4.136T12 6.205h-.125l1.292 1.292L12 8.705 8.667 5.372 12 2.04l1.167 1.208-1.292 1.292H12q1.563 0 2.927.594 1.364.593 2.375 1.604a7.6 7.6 0 0 1 1.604 2.375q.594 1.364.594 2.927a7.3 7.3 0 0 1-.594 2.927 7.6 7.6 0 0 1-1.604 2.375 7.6 7.6 0 0 1-2.375 1.604A7.3 7.3 0 0 1 12 19.54"/></symbol><symbol viewBox="0 0 24 24" id="jump-forward" xmlns="http://www.w3.org/2000/svg"><path d="M12 19.539a7.3 7.3 0 0 1-2.927-.594 7.6 7.6 0 0 1-2.375-1.604 7.6 7.6 0 0 1-1.604-2.375 7.3 7.3 0 0 1-.594-2.927q0-1.563.594-2.927.593-1.365 1.604-2.375a7.6 7.6 0 0 1 2.375-1.604A7.3 7.3 0 0 1 12 4.539h.125l-1.292-1.292L12 2.04l3.333 3.333L12 8.705l-1.167-1.208 1.292-1.292H12q-2.437 0-4.135 1.698T6.167 12.04t1.698 4.135T12 17.872t4.135-1.698 1.698-4.135H19.5a7.3 7.3 0 0 1-.594 2.927 7.6 7.6 0 0 1-1.604 2.375 7.6 7.6 0 0 1-2.375 1.604 7.3 7.3 0 0 1-2.927.594"/></symbol><symbol viewBox="0 0 24 24" id="kanban" xmlns="http://www.w3.org/2000/svg"><path d="M14.5 6.375v7.5a.624.624 0 0 1-.625.625H10.75a.624.624 0 0 1-.625-.625v-7.5a.625.625 0 0 1 .625-.625h3.125a.625.625 0 0 1 .625.625m5-.625h-3.125a.625.625 0 0 0-.625.625v4.063a.313.313 0 0 0 .313.312h3.75a.313.313 0 0 0 .312-.312V6.375a.625.625 0 0 0-.625-.625m.313 6.25h-3.75a.313.313 0 0 0-.313.313v3.437A1.25 1.25 0 0 0 17 17h1.875a1.25 1.25 0 0 0 1.25-1.25v-3.437a.313.313 0 0 0-.312-.313M8.25 5.75H5.125a.625.625 0 0 0-.625.625v4.063a.313.313 0 0 0 .313.312h3.75a.31.31 0 0 0 .312-.312V6.375a.625.625 0 0 0-.625-.625M8.563 12h-3.75a.31.31 0 0 0-.313.313v5.937a1.25 1.25 0 0 0 1.25 1.25h1.875a1.25 1.25 0 0 0 1.25-1.25v-5.937A.313.313 0 0 0 8.563 12"/></symbol><symbol viewBox="0 0 24 24" id="kbd" xmlns="http://www.w3.org/2000/svg"><path d="M5.333 17.833q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.176V7.833q0-.687.49-1.177t1.177-.49h13.334q.687 0 1.177.49t.49 1.177v8.334q0 .687-.49 1.177t-1.177.49zm3.334-2.5h6.666v-1.666H8.667zm-2.5-2.5h1.666v-1.666H6.167zm2.5 0h1.666v-1.666H8.667zm2.5 0h1.666v-1.666h-1.666zm2.5 0h1.666v-1.666h-1.666zm2.5 0h1.666v-1.666h-1.666zm-10-2.5h1.666V8.667H6.167zm2.5 0h1.666V8.667H8.667zm2.5 0h1.666V8.667h-1.666zm2.5 0h1.666V8.667h-1.666zm2.5 0h1.666V8.667h-1.666z"/></symbol><symbol viewBox="0 0 24 24" id="kbd-backspace" xmlns="http://www.w3.org/2000/svg"><path d="m10.5 15.333 2.167-2.166 2.166 2.166L16 14.167 13.833 12 16 9.833l-1.167-1.166-2.166 2.166L10.5 8.667 9.333 9.833 11.5 12l-2.167 2.167zm-2 3.334A1.66 1.66 0 0 1 7.167 18l-4.5-6 4.5-6q.229-.312.583-.49.354-.177.75-.177h9.167q.687 0 1.177.49T19.334 7v10q0 .687-.49 1.177t-1.177.49z"/></symbol><symbol viewBox="0 0 24 24" id="kbd-capslock" xmlns="http://www.w3.org/2000/svg"><path d="M7 16.167V14.5h10v1.667zm5-10.334 5 5L15.833 12 12 8.167 8.167 12 7 10.833z"/></symbol><symbol viewBox="0 0 24 24" id="kbd-command" xmlns="http://www.w3.org/2000/svg"><path d="M7.417 19.5a2.8 2.8 0 0 1-2.063-.854 2.8 2.8 0 0 1-.854-2.063q0-1.208.854-2.062a2.8 2.8 0 0 1 2.063-.854h1.25v-3.334h-1.25a2.8 2.8 0 0 1-2.063-.854A2.8 2.8 0 0 1 4.5 7.417q0-1.209.854-2.063A2.8 2.8 0 0 1 7.417 4.5a2.8 2.8 0 0 1 2.062.854q.854.854.854 2.063v1.25h3.334v-1.25q0-1.209.854-2.063a2.8 2.8 0 0 1 2.062-.854 2.8 2.8 0 0 1 2.063.854q.855.854.854 2.063a2.8 2.8 0 0 1-.854 2.062 2.8 2.8 0 0 1-2.063.854h-1.25v3.334h1.25a2.8 2.8 0 0 1 2.063.854q.855.855.854 2.062a2.8 2.8 0 0 1-.854 2.063 2.8 2.8 0 0 1-2.063.854 2.8 2.8 0 0 1-2.062-.854 2.8 2.8 0 0 1-.854-2.063v-1.25h-3.334v1.25a2.8 2.8 0 0 1-.854 2.063 2.8 2.8 0 0 1-2.062.854m0-1.667q.52 0 .885-.364t.365-.886v-1.25h-1.25q-.522 0-.886.365a1.2 1.2 0 0 0-.364.885q0 .522.364.886t.886.364m9.166 0q.522 0 .886-.364t.364-.886q0-.52-.364-.885a1.2 1.2 0 0 0-.886-.365h-1.25v1.25q0 .522.365.886t.885.364m-6.25-4.166h3.334v-3.334h-3.334zm-2.916-5h1.25v-1.25q0-.522-.365-.886a1.2 1.2 0 0 0-.885-.364q-.522 0-.886.364a1.2 1.2 0 0 0-.364.886q0 .52.364.885t.886.365m7.916 0h1.25q.522 0 .886-.365t.364-.885q0-.522-.364-.886a1.2 1.2 0 0 0-.886-.364q-.52 0-.885.364a1.2 1.2 0 0 0-.365.886z"/></symbol><symbol viewBox="0 0 24 24" id="kbd-control" xmlns="http://www.w3.org/2000/svg"><path d="m7.333 14.5-1.166-1.167L12 7.5l5.833 5.833-1.166 1.167L12 9.854z"/></symbol><symbol viewBox="0 0 24 24" id="kbd-hide" xmlns="http://www.w3.org/2000/svg"><path d="M12 21.333 8.667 18h6.666zm-6.667-5q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.176V6.333q0-.687.49-1.177t1.177-.49h13.334q.687 0 1.177.49t.49 1.177v8.334q0 .687-.49 1.177t-1.177.49zm3.334-2.5h6.666v-1.666H8.667zm-2.5-2.5h1.666V9.667H6.167zm2.5 0h1.666V9.667H8.667zm2.5 0h1.666V9.667h-1.666zm2.5 0h1.666V9.667h-1.666zm2.5 0h1.666V9.667h-1.666zm-10-2.5h1.666V7.167H6.167zm2.5 0h1.666V7.167H8.667zm2.5 0h1.666V7.167h-1.666zm2.5 0h1.666V7.167h-1.666zm2.5 0h1.666V7.167h-1.666z"/></symbol><symbol viewBox="0 0 24 24" id="kbd-option" xmlns="http://www.w3.org/2000/svg"><path d="m14.313 17.833-5.771-10H4.5V6.167h5l5.77 10h4.23v1.666zm.187-10V6.167h5v1.666z"/></symbol><symbol viewBox="0 0 24 24" id="kbd-return" xmlns="http://www.w3.org/2000/svg"><path d="m9 17.5-5-5 5-5 1.167 1.167-3 3h10.166V8.333H19v5H7.167l3 3z"/></symbol><symbol viewBox="0 0 24 24" id="kbd-shift" xmlns="http://www.w3.org/2000/svg"><path d="M8.667 19.413v-6.666H4.5L12 3.58l7.5 9.167h-4.167v6.666zm1.666-1.666h3.334V11.08h2.312L12 6.205 8.02 11.08h2.313z"/></symbol><symbol viewBox="0 0 24 24" id="kbd-space" xmlns="http://www.w3.org/2000/svg"><path d="M5.333 17.167v-5H7V15.5h10v-3.333h1.667v5z"/></symbol><symbol viewBox="0 0 24 24" id="lightning" xmlns="http://www.w3.org/2000/svg"><path d="m18.707 11.802-8.75 9.375a.625.625 0 0 1-1.07-.547l1.146-5.73-4.503-1.69a.626.626 0 0 1-.234-1.016l8.75-9.374a.625.625 0 0 1 1.07.546l-1.149 5.736 4.502 1.688a.625.625 0 0 1 .235 1.012z"/></symbol><symbol viewBox="0 0 24 24" id="line-segment" xmlns="http://www.w3.org/2000/svg"><path d="M18.548 8.546a2.19 2.19 0 0 1-2.588.377L8.923 15.96a2.187 2.187 0 1 1-.883-.883l7.037-7.037a2.187 2.187 0 1 1 3.47.506"/></symbol><symbol viewBox="0 0 24 24" id="line-segments" xmlns="http://www.w3.org/2000/svg"><path d="M20.423 7.921a2.18 2.18 0 0 1-1.991.596l-2.388 4.435a2.187 2.187 0 1 1-3.471.507l-2.036-2.035a2.2 2.2 0 0 1-1.48.218l-2.388 4.435a2.187 2.187 0 1 1-1.104-.595l2.388-4.435a2.19 2.19 0 0 1 0-3.095 2.188 2.188 0 0 1 3.471 2.588l2.036 2.036c.454-.244.98-.321 1.484-.217l2.389-4.435a2.188 2.188 0 1 1 3.094 0z"/></symbol><symbol viewBox="0 0 24 24" id="link" xmlns="http://www.w3.org/2000/svg"><path d="M11.167 16.167H7.833q-1.728 0-2.948-1.219Q3.667 13.73 3.667 12t1.218-2.948q1.22-1.219 2.948-1.219h3.334V9.5H7.833a2.4 2.4 0 0 0-1.77.73 2.4 2.4 0 0 0-.73 1.77q0 1.042.73 1.77a2.4 2.4 0 0 0 1.77.73h3.334zm-2.5-3.334v-1.666h6.666v1.666zm4.166 3.334V14.5h3.334q1.041 0 1.77-.73a2.4 2.4 0 0 0 .73-1.77 2.4 2.4 0 0 0-.73-1.77 2.4 2.4 0 0 0-1.77-.73h-3.334V7.833h3.334q1.729 0 2.947 1.22 1.22 1.218 1.22 2.947t-1.22 2.948q-1.218 1.22-2.947 1.219z"/></symbol><symbol viewBox="0 0 24 24" id="link-slash" xmlns="http://www.w3.org/2000/svg"><path d="m19.666 19.652-1.167 1.167-8-8H8.666v-1.667h.166L7.234 9.555q-.662.152-1.172.66a2.41 2.41 0 0 0-.729 1.771q0 1.043.729 1.77.73.73 1.771.73h3.333v1.666H7.833q-1.73 0-2.948-1.218-1.22-1.219-1.219-2.948 0-1.437.875-2.562.589-.755 1.401-1.161L3.166 5.486 4.333 4.32zm-3.5-11.832q1.73 0 2.948 1.218 1.22 1.22 1.219 2.948a4.1 4.1 0 0 1-.615 2.188 4 4 0 0 1-1.677 1.52l-1.25-1.292a2.54 2.54 0 0 0 1.354-.884q.521-.657.521-1.532 0-1.041-.73-1.771a2.4 2.4 0 0 0-1.77-.729h-3.333V7.82z"/><path d="M15.333 12.82h-.125l-1.667-1.668h1.792z"/></symbol><symbol viewBox="0 0 24 24" id="linked-services" xmlns="http://www.w3.org/2000/svg"><path d="M16.861 9.917q-.99 0-1.719-.59a2.82 2.82 0 0 1-.972-1.494H9.812a2.7 2.7 0 0 1-.72 1.259 2.7 2.7 0 0 1-1.259.72v4.358q.903.243 1.493.972.59.73.59 1.72 0 1.145-.815 1.96a2.68 2.68 0 0 1-1.962.817 2.68 2.68 0 0 1-1.962-.816 2.68 2.68 0 0 1-.816-1.962q0-.99.59-1.719.591-.729 1.493-.972V9.812a2.82 2.82 0 0 1-1.493-.972 2.62 2.62 0 0 1-.59-1.701q0-1.146.816-1.962a2.68 2.68 0 0 1 1.962-.816q.972 0 1.701.59.729.591.972 1.493h4.358q.243-.903.972-1.493.73-.59 1.72-.59 1.145 0 1.96.816.817.816.817 1.962T18.823 9.1a2.68 2.68 0 0 1-1.962.816m0 9.722a2.68 2.68 0 0 1-1.962-.816 2.68 2.68 0 0 1-.816-1.962q0-1.146.816-1.962a2.68 2.68 0 0 1 1.962-.816q1.146 0 1.962.816t.816 1.962-.816 1.962a2.68 2.68 0 0 1-1.962.816"/></symbol><symbol viewBox="0 0 24 24" id="list-bullets" xmlns="http://www.w3.org/2000/svg"><path d="M5.52 6.31c.2-.14.44-.21.69-.21.33 0 .65.14.88.37.24.23.37.55.37.88 0 .24-.07.48-.21.69s-.33.37-.56.46-.48.12-.72.07-.47-.17-.64-.34-.29-.4-.34-.64-.02-.49.07-.72.25-.42.46-.56m0 4.65c.2-.14.44-.21.69-.21.33 0 .65.14.88.37.24.23.37.55.37.88 0 .24-.07.48-.21.69s-.33.37-.56.46-.48.12-.72.07-.47-.17-.64-.34-.29-.4-.34-.64-.02-.49.07-.72.25-.42.46-.56m.69 4.46c-.25 0-.49.07-.69.21-.21.14-.37.33-.46.56s-.12.48-.07.72.17.47.34.64.4.29.64.34.49.02.72-.07.42-.25.56-.46.21-.45.21-.69c0-.33-.13-.65-.37-.88s-.55-.37-.88-.37m3.29.41h10v1.67h-10zm10-4.66h-10v1.67h10zm-10-3V6.5l10 .03v1.66z"/></symbol><symbol viewBox="0 0 24 24" id="list-checks" xmlns="http://www.w3.org/2000/svg"><path d="M6.64 9.26 4.87 7.49 3.71 8.66l2.95 2.95 4.69-4.7-1.17-1.19zm0 6.67-1.77-1.77-1.16 1.16 2.95 2.96 4.69-4.71-1.17-1.18zm6.86-.1h6v1.67h-6zm6-4.66h-6v1.67h6zm-6-3V6.5l6 .03v1.66z"/></symbol><symbol viewBox="0 0 24 24" id="list-numbers" xmlns="http://www.w3.org/2000/svg"><path d="M6.01 6.67v4.43h1.2V5.33l-.6-.3-2.01 1 .54 1.08zm4.49 1.5V6.5l9 .03v1.66zm9 3h-9v1.67h9zm0 4.66h-9v1.67h9zm-11.61.16-.7.93.02-.02-.59.78h1.8v1.2H5.17l-.38-.76 2.3-3.07.02-.028c.035-.051.072-.104.08-.172l.002-.013a.8.8 0 0 0 .008-.217.58.58 0 0 0-.24-.39c-.13-.1-.3-.14-.47-.12s-.33.1-.43.24c-.21.28-.31.76-.31.76l-1.13-.41.22-.6q.105-.255.27-.48c.3-.38.73-.62 1.21-.69.48-.06.96.06 1.35.34.19.14.36.31.48.52.13.2.21.43.24.67.03.23.02.47-.04.7s-.16.44-.31.63z"/></symbol><symbol viewBox="0 0 24 24" id="lock" xmlns="http://www.w3.org/2000/svg"><path d="M7 19.75q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177V9.75q0-.687.49-1.177T7 8.083h.833V6.417q0-1.73 1.22-2.948Q10.27 2.249 12 2.25t2.948 1.219q1.22 1.218 1.219 2.948v1.666H17q.687 0 1.177.49t.49 1.177v8.333q0 .688-.49 1.177T17 19.75zm5-4.167q.687 0 1.177-.49.49-.489.49-1.176 0-.688-.49-1.177A1.6 1.6 0 0 0 12 12.25q-.687 0-1.177.49-.49.489-.49 1.177 0 .687.49 1.177t1.177.49m-2.5-7.5h5V6.417a2.4 2.4 0 0 0-.73-1.771 2.4 2.4 0 0 0-1.77-.73 2.4 2.4 0 0 0-1.77.73 2.4 2.4 0 0 0-.73 1.77z"/></symbol><symbol viewBox="0 0 24 24" id="lock-open" xmlns="http://www.w3.org/2000/svg"><path d="M7 8.083h7.5V6.417a2.4 2.4 0 0 0-.73-1.771 2.4 2.4 0 0 0-1.77-.73 2.4 2.4 0 0 0-1.77.73 2.4 2.4 0 0 0-.73 1.77H7.833q0-1.728 1.22-2.947Q10.27 2.249 12 2.25t2.948 1.219q1.22 1.218 1.219 2.948v1.666H17q.687 0 1.177.49t.49 1.177v8.333q0 .688-.49 1.177T17 19.75H7q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177V9.75q0-.687.49-1.177T7 8.083m5 7.5q.687 0 1.177-.49.49-.489.49-1.176 0-.688-.49-1.177A1.6 1.6 0 0 0 12 12.25q-.687 0-1.177.49-.49.489-.49 1.177 0 .687.49 1.177t1.177.49"/></symbol><symbol viewBox="0 0 24 24" id="map" xmlns="http://www.w3.org/2000/svg"><path d="M19.884 5.882a.63.63 0 0 0-.536-.113l-4.775 1.194L9.78 4.566a.63.63 0 0 0-.432-.047l-5 1.25a.625.625 0 0 0-.473.606v11.25a.625.625 0 0 0 .777.606l4.775-1.194 4.793 2.397a.64.64 0 0 0 .432.047l5-1.25a.625.625 0 0 0 .473-.606V6.375a.63.63 0 0 0-.24-.493M9.5 15.75a.6.6 0 0 0-.152.019l-4.223 1.055v-9.96l4.302-1.076.073.035zm9.375 1.387-4.302 1.075-.073-.035V8.25a.6.6 0 0 0 .152-.018l4.223-1.056z"/></symbol><symbol viewBox="0 0 24 24" id="map-pin" xmlns="http://www.w3.org/2000/svg"><path d="M12 17.833q-2.937-2.166-4.385-4.208-1.449-2.041-1.448-4 0-2.604 1.625-4.281T12 3.667t4.208 1.677q1.626 1.677 1.625 4.281 0 1.959-1.448 4T12 17.833m0-6.666q.687 0 1.177-.49t.49-1.177-.49-1.177A1.6 1.6 0 0 0 12 7.833q-.687 0-1.177.49t-.49 1.177.49 1.177 1.177.49m-5.833 9.166v-1.666h11.666v1.666z"/></symbol><symbol viewBox="0 0 24 24" id="mark-unread" xmlns="http://www.w3.org/2000/svg"><path d="M5.333 16.583q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.176V8.375q0-.312.178-.615.177-.301.49-.468l6.416-3.209 6.292 3.209a1.1 1.1 0 0 1 .427.395q.177.272.24.563H15.27l-4.52-2.292-5.417 2.688zm2.5 3.334q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177v-7.5q0-.687.49-1.177t1.177-.49h10.834q.687 0 1.177.49t.49 1.177v7.5q0 .687-.49 1.177t-1.177.49zm5.417-4.709 5.417-2.791V10.75l-5.417 2.792-5.417-2.792v1.667z"/></symbol><symbol viewBox="0 0 24 24" id="menu" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 17v-1.667h15V17zm0-4.167v-1.666h15v1.666zm0-4.166V7h15v1.667z"/></symbol><symbol viewBox="0 0 24 24" id="menu-close" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 17v-1.667h10.833V17zm13.833-.833L14.167 12l4.166-4.167L19.5 9l-3 3 3 3zM4.5 12.833v-1.666h8.333v1.666zm0-4.166V7h10.833v1.667z"/></symbol><symbol viewBox="0 0 24 24" id="message" xmlns="http://www.w3.org/2000/svg"><path d="M18 6H6c-.69 0-1.25.56-1.25 1.25v11.5c0 .29.17.56.43.68.1.05.21.07.32.07.17 0 .34-.06.48-.17L8.77 17H18c.69 0 1.25-.56 1.25-1.25v-8.5C19.25 6.56 18.69 6 18 6m-3.5 7.75h-6v-1.5h6zm2-3h-8v-1.5h8z"/></symbol><symbol viewBox="0 0 24 24" id="messages" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M9.865 5.26h8.51c.69 0 1.25.56 1.25 1.25v8.44c0 .2-.12.39-.31.48a.543.543 0 0 1-.57-.07l-1.98-1.65h-6.9c-.69 0-1.25-.56-1.25-1.25V6.51c0-.69.56-1.25 1.25-1.25m.59 6.22h5v-1.25h-5zm0-2.74h7V7.49h-7z" clip-rule="evenodd"/><path d="M6.775 15.72h7.36v-1.01h1.25v1.01c0 .69-.56 1.25-1.25 1.25h-6.9l-1.98 1.65a.54.54 0 0 1-.57.07.53.53 0 0 1-.31-.48V9.77c0-.69.56-1.25 1.25-1.25h1.99v1.25h-1.99v6.91z"/></symbol><symbol viewBox="0 0 24 24" id="minus" xmlns="http://www.w3.org/2000/svg"><path d="M6.167 12.833v-1.666h11.666v1.666z"/></symbol><symbol viewBox="0 0 24 24" id="minus-thick" xmlns="http://www.w3.org/2000/svg"><path d="M5 10.5h14v3H5z"/></symbol><symbol viewBox="0 0 24 24" id="money" xmlns="http://www.w3.org/2000/svg"><path d="M21.083 6.688a.62.62 0 0 0-.606-.032c-3.354 1.641-5.749.872-8.28.061-2.664-.847-5.414-1.726-9.22.132a.63.63 0 0 0-.35.56v9.37a.625.625 0 0 0 .899.562c3.354-1.64 5.749-.872 8.285-.061 1.503.48 3.034.97 4.766.97 1.335 0 2.791-.29 4.446-1.098a.63.63 0 0 0 .35-.561V7.22a.63.63 0 0 0-.29-.533M5.752 13.875a.625.625 0 0 1-1.25 0v-5a.625.625 0 0 1 1.25 0zm6.25.625a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5m7.5.625a.625.625 0 0 1-1.25 0v-5a.625.625 0 1 1 1.25 0z"/></symbol><symbol viewBox="0 0 24 24" id="monitor" xmlns="http://www.w3.org/2000/svg"><path d="M7 20v-1.667h4.167v-2.5H5.333q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.176v-7.5q0-.688.49-1.177T5.333 5h13.334q.687 0 1.177.49.49.489.49 1.177v7.5q0 .687-.49 1.177t-1.177.49h-5.834v2.5H17V20z"/></symbol><symbol viewBox="0 0 24 24" id="moon" xmlns="http://www.w3.org/2000/svg"><path d="M15.002 7.508h-1.2v-.9h-.9v-1.2h.9v-.9h1.2v.9h.9v1.2h-.9zm-.12 6.01a6.6 6.6 0 0 1-2.75-1.65 6.6 6.6 0 0 1-1.65-2.75 6.55 6.55 0 0 1-.16-3.2c.06-.39.28-.9.28-.9s-.66.07-1.08.22a7.26 7.26 0 0 0-2.95 2.02c-.79.92-1.34 2.01-1.6 3.19a7.197 7.197 0 0 0 8.58 8.58c1.18-.26 2.28-.82 3.19-1.61a7.16 7.16 0 0 0 2.02-2.95c.15-.41.22-1.08.22-1.08s-.51.22-.9.28c-1.06.21-2.16.16-3.2-.16zm3.72-4.51v-1.5h-1.2v1.5h-1.5v1.2h1.5v1.5h1.2v-1.5h1.5v-1.2z"/></symbol><symbol viewBox="0 0 24 24" id="navigation" xmlns="http://www.w3.org/2000/svg"><path d="m6.167 19.917-.834-.834 6.667-15 6.667 15-.834.834-5.833-2.5z"/></symbol><symbol viewBox="0 0 24 24" id="network" xmlns="http://www.w3.org/2000/svg"><path d="M20.75 11.375a.624.624 0 0 1-.625.625h-2.5v2.5h.625a1.25 1.25 0 0 1 1.25 1.25v2.5a1.25 1.25 0 0 1-1.25 1.25h-2.5a1.25 1.25 0 0 1-1.25-1.25v-2.5a1.25 1.25 0 0 1 1.25-1.25h.625V12h-8.75v2.5h.625a1.25 1.25 0 0 1 1.25 1.25v2.5a1.25 1.25 0 0 1-1.25 1.25h-2.5a1.25 1.25 0 0 1-1.25-1.25v-2.5a1.25 1.25 0 0 1 1.25-1.25h.625V12h-2.5a.625.625 0 1 1 0-1.25h7.5V8.875h-.625a1.25 1.25 0 0 1-1.25-1.25v-2.5a1.25 1.25 0 0 1 1.25-1.25h2.5a1.25 1.25 0 0 1 1.25 1.25v2.5a1.25 1.25 0 0 1-1.25 1.25h-.625v1.875h7.5a.624.624 0 0 1 .625.625"/></symbol><symbol viewBox="0 0 24 24" id="network-x" xmlns="http://www.w3.org/2000/svg"><path d="M20.75 11.375a.624.624 0 0 1-.625.625h-2.5v1.25a.624.624 0 1 1-1.25 0V12h-8.75v2.5h.625a1.25 1.25 0 0 1 1.25 1.25v2.5a1.25 1.25 0 0 1-1.25 1.25h-2.5a1.25 1.25 0 0 1-1.25-1.25v-2.5a1.25 1.25 0 0 1 1.25-1.25h.625V12h-2.5a.625.625 0 1 1 0-1.25h7.5V8.875h-.625a1.25 1.25 0 0 1-1.25-1.25v-2.5a1.25 1.25 0 0 1 1.25-1.25h2.5a1.25 1.25 0 0 1 1.25 1.25v2.5a1.25 1.25 0 0 1-1.25 1.25h-.625v1.875h7.5a.624.624 0 0 1 .625.625m-1.433 3.308a.627.627 0 0 0-.884 0L17 16.116l-1.433-1.433a.625.625 0 0 0-.884.884L16.116 17l-1.433 1.433a.625.625 0 0 0 .884.884L17 17.884l1.433 1.433a.624.624 0 1 0 .884-.884L17.884 17l1.433-1.433a.627.627 0 0 0 0-.884"/></symbol><symbol viewBox="0 0 24 24" id="newspaper" xmlns="http://www.w3.org/2000/svg"><path d="M18.875 5.75h-12.5A1.25 1.25 0 0 0 5.125 7v9.375a.625.625 0 1 1-1.25 0v-7.5a.625.625 0 0 0-1.25 0v7.509A1.875 1.875 0 0 0 4.5 18.25h13.75a1.875 1.875 0 0 0 1.875-1.875V7a1.25 1.25 0 0 0-1.25-1.25m-3.125 8.125H9.5a.625.625 0 1 1 0-1.25h6.25a.624.624 0 1 1 0 1.25m0-2.5H9.5a.625.625 0 1 1 0-1.25h6.25a.624.624 0 1 1 0 1.25"/></symbol><symbol viewBox="0 0 24 24" id="newspaper-clipping" xmlns="http://www.w3.org/2000/svg"><path d="M18.875 5.125H5.125a1.25 1.25 0 0 0-1.25 1.25v12.5a.625.625 0 0 0 .905.559L7 18.324l2.22 1.11a.63.63 0 0 0 .56 0l2.22-1.11 2.22 1.11a.63.63 0 0 0 .56 0l2.22-1.11 2.22 1.11a.624.624 0 0 0 .905-.559v-12.5a1.25 1.25 0 0 0-1.25-1.25M11.063 14.5a.313.313 0 0 1-.313.313H7a.31.31 0 0 1-.312-.313v-5A.31.31 0 0 1 7 9.188h3.75a.313.313 0 0 1 .313.312zM17 13.875h-3.75a.624.624 0 1 1 0-1.25H17a.624.624 0 1 1 0 1.25m0-2.5h-3.75a.624.624 0 1 1 0-1.25H17a.624.624 0 1 1 0 1.25"/></symbol><symbol viewBox="0 0 24 24" id="note" xmlns="http://www.w3.org/2000/svg"><path d="M6.417 19.75q-.688 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177V6.417q0-.688.49-1.177.489-.49 1.177-.49h11.666q.688 0 1.177.49.49.489.49 1.177v8.333l-5 5zm7.5-1.667 4.166-4.166h-4.166zm-5.834-4.166h4.167V12.25H8.083zm0-3.334h8.334V8.917H8.083z"/></symbol><symbol viewBox="0 0 24 24" id="note-stack" xmlns="http://www.w3.org/2000/svg"><path d="M7.838 18.671V9.484q0-.688.5-1.167t1.187-.48h9.146q.688 0 1.177.49t.49 1.178v6.666l-4.167 4.167H9.505q-.688 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177M3.692 7.213a1.56 1.56 0 0 1 .27-1.24 1.64 1.64 0 0 1 1.084-.677l9.042-1.604q.688-.124 1.24.27.551.397.677 1.084l.208 1.125H9.505a3.2 3.2 0 0 0-2.355.98 3.2 3.2 0 0 0-.979 2.354v7.958a1.9 1.9 0 0 1-.573-.5 1.54 1.54 0 0 1-.302-.708zm14.98 8.125h-3.334v3.333z"/></symbol><symbol viewBox="0 0 24 24" id="notepad" xmlns="http://www.w3.org/2000/svg"><path d="M18.25 4.5h-1.875v-.625a.625.625 0 1 0-1.25 0V4.5h-2.5v-.625a.625.625 0 1 0-1.25 0V4.5h-2.5v-.625a.625.625 0 0 0-1.25 0V4.5H5.75a.625.625 0 0 0-.625.625v12.5a2.5 2.5 0 0 0 2.5 2.5h8.75a2.5 2.5 0 0 0 2.5-2.5v-12.5a.625.625 0 0 0-.625-.625m-6.875 1.875a.625.625 0 1 1 1.25 0V7a.625.625 0 1 1-1.25 0zM8.25 7.625A.625.625 0 0 1 7.625 7v-.625a.625.625 0 0 1 1.25 0V7a.625.625 0 0 1-.625.625m6.25 7.5h-5a.625.625 0 1 1 0-1.25h5a.624.624 0 1 1 0 1.25m0-2.5h-5a.625.625 0 1 1 0-1.25h5a.624.624 0 1 1 0 1.25M16.375 7a.625.625 0 1 1-1.25 0v-.625a.625.625 0 1 1 1.25 0z"/></symbol><symbol viewBox="0 0 24 24" id="notification" xmlns="http://www.w3.org/2000/svg"><path d="M18.875 12v6.25a1.25 1.25 0 0 1-1.25 1.25H5.75a1.25 1.25 0 0 1-1.25-1.25V6.375a1.25 1.25 0 0 1 1.25-1.25H12a.625.625 0 1 1 0 1.25H5.75V18.25h11.875V12a.624.624 0 1 1 1.25 0m-1.562-8.125a2.812 2.812 0 1 0 0 5.624 2.812 2.812 0 0 0 0-5.624"/></symbol><symbol viewBox="0 0 24 24" id="nut" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M12 3.34 4.5 7.67v8.66l7.5 4.33 7.5-4.33V7.67zM14.99 14c-.4.59-.96 1.05-1.62 1.33-.66.27-1.38.34-2.08.2s-1.34-.48-1.84-.99c-.5-.5-.85-1.15-.99-1.84s-.07-1.42.2-2.08S9.39 9.4 9.99 9s1.29-.61 2-.61c.95 0 1.87.38 2.54 1.06.67.67 1.05 1.59 1.06 2.54 0 .71-.21 1.41-.61 2z" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" id="order" xmlns="http://www.w3.org/2000/svg"><path d="M6 20a2.31 2.31 0 0 1-1.7-.7 2.31 2.31 0 0 1-.7-1.7v-2.4H6V4h12v13.6q0 1-.7 1.7t-1.7.7zm9.6-1.6a.77.77 0 0 0 .57-.23.77.77 0 0 0 .23-.57v-12H7.6v9.6h7.2v2.4q0 .34.23.57t.57.23M8.4 9.6V8h7.2v1.6zm0 2.4v-1.6h7.2V12z"/></symbol><symbol viewBox="0 0 24 24" id="package" xmlns="http://www.w3.org/2000/svg"><path d="m12.005 3.44-7.8 4.26v8.6l7.79 4.26 7.8-4.27V7.71zm0 1.37 6.03 3.3-2.23 1.22-6.03-3.3zm-6.03 3.3 2.54-1.39 6.03 3.3-2.54 1.39zm12.63 7.48-6 3.29v-6.43l2.4-1.31v3.68l1.2-.66v-3.68l2.4-1.32z"/></symbol><symbol viewBox="0 0 24 24" id="page-first" xmlns="http://www.w3.org/2000/svg"><path d="M6.833 17V7H8.5v10zM16 17l-5-5 5-5 1.167 1.167L13.333 12l3.834 3.833z"/></symbol><symbol viewBox="0 0 24 24" id="page-last" xmlns="http://www.w3.org/2000/svg"><path d="m8 17-1.167-1.167L10.667 12 6.833 8.167 8 7l5 5zm7.5 0V7h1.667v10z"/></symbol><symbol viewBox="0 0 24 24" id="parts" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="m17.99 6-3.57 1.13-.81 3.66 2.76 2.53 3.57-1.13.81-3.66zm-.81 5.25c-.88 0-1.6-.72-1.6-1.6s.72-1.6 1.6-1.6 1.6.72 1.6 1.6-.72 1.6-1.6 1.6" clip-rule="evenodd"/><path d="m9.35 14.23.95.95 4.04-.35-1.77-1.77zm5 .61 1.78 1.78-4.05.34-.95-.95zm-1.44 2.95 1.03 1.03h2.2v-2.19zm-2.7-7.09 2.35 2.35-4.05.34-.49-.49-2 1.99-.85-.85.88-.88L4 11.1l1.84-1.84.96.96.73-.73-.96-.96 1.85-1.84 2.05 2.05.88-.88.85.85z"/></symbol><symbol viewBox="0 0 24 24" id="password" xmlns="http://www.w3.org/2000/svg"><path d="M6.05 6.5H4.8v11h1.25zm7.81 5.17-.39-1.19-2.03.66V9h-1.25v2.14l-2.04-.66-.38 1.19 2.03.66-1.25 1.73 1.01.73 1.25-1.73 1.26 1.73 1.01-.73-1.25-1.73zm6.83-1.19.38 1.19-2.03.66 1.26 1.73-1.02.73-1.25-1.73-1.26 1.73-1.01-.73 1.26-1.73-2.04-.66.39-1.19 2.03.66V9h1.25v2.14z"/></symbol><symbol viewBox="0 0 24 24" id="path" xmlns="http://www.w3.org/2000/svg"><path d="M19.813 17.625a2.188 2.188 0 0 1-4.284.625H7.625a3.75 3.75 0 0 1 0-7.5h7.5a1.875 1.875 0 1 0 0-3.75h-7.5a.625.625 0 0 1 0-1.25h7.5a3.125 3.125 0 1 1 0 6.25h-7.5a2.5 2.5 0 0 0 0 5h7.904a2.188 2.188 0 0 1 4.284.625"/></symbol><symbol viewBox="0 0 24 24" id="pause" xmlns="http://www.w3.org/2000/svg"><path d="M13.667 17.833V6.167H17v11.666zm-6.667 0V6.167h3.333v11.666z"/></symbol><symbol viewBox="0 0 24 24" id="pencil" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M4.5 15.66v3.54h3.54L19.03 8.23c.16-.16.28-.35.36-.55.07-.21.11-.42.11-.64 0-.2-.03-.41-.11-.62q-.105-.315-.36-.54l-1.15-1.17c-.15-.17-.33-.3-.54-.38a1.79 1.79 0 0 0-1.29 0c-.2.08-.38.2-.55.35zm13.34-8.63L16.67 8.2 15.5 7.03l1.17-1.17z" clip-rule="evenodd"/><path d="M11.5 19.2v-1.67h8v1.67z"/></symbol><symbol viewBox="0 0 24 24" id="percent" xmlns="http://www.w3.org/2000/svg"><path d="M8.25 11.167a2.8 2.8 0 0 1-2.062-.854 2.8 2.8 0 0 1-.855-2.063q0-1.208.855-2.063a2.8 2.8 0 0 1 2.062-.854 2.8 2.8 0 0 1 2.063.854q.854.854.854 2.063a2.8 2.8 0 0 1-.854 2.063 2.8 2.8 0 0 1-2.063.854m0-1.667q.52 0 .885-.365.365-.364.365-.885 0-.52-.365-.885A1.2 1.2 0 0 0 8.25 7q-.52 0-.885.365A1.2 1.2 0 0 0 7 8.25q0 .52.365.885t.885.365m7.5 9.167a2.8 2.8 0 0 1-2.062-.855 2.8 2.8 0 0 1-.855-2.062q0-1.209.854-2.062a2.8 2.8 0 0 1 2.063-.855 2.8 2.8 0 0 1 2.063.854q.854.854.854 2.063a2.8 2.8 0 0 1-.855 2.063 2.8 2.8 0 0 1-2.062.854m0-1.667q.52 0 .886-.365.364-.364.364-.885 0-.52-.364-.885a1.2 1.2 0 0 0-.886-.365q-.52 0-.885.365a1.2 1.2 0 0 0-.365.885q0 .52.365.885.364.365.885.365M6.5 18.667 5.333 17.5 17.5 5.333 18.667 6.5z"/></symbol><symbol viewBox="0 0 24 24" id="play" xmlns="http://www.w3.org/2000/svg"><path d="M9 17.833V6.167L18.167 12z"/></symbol><symbol viewBox="0 0 24 24" id="play-pause" xmlns="http://www.w3.org/2000/svg"><path d="M4.959 16.293V7.707L11.092 12zm8.177-.204V7.91h2.045v8.178zm4.09 0V7.91h2.044v8.178z"/></symbol><symbol viewBox="0 0 24 24" id="plus" xmlns="http://www.w3.org/2000/svg"><path d="M11.167 12.833h-5v-1.666h5v-5h1.666v5h5v1.666h-5v5h-1.666z"/></symbol><symbol viewBox="0 0 24 24" id="printer" xmlns="http://www.w3.org/2000/svg"><path d="M17 7.833H7V4.5h10zm0 4.584q.354 0 .594-.24t.24-.594a.8.8 0 0 0-.24-.593.8.8 0 0 0-.594-.24.8.8 0 0 0-.594.24.8.8 0 0 0-.24.593q0 .354.24.594t.594.24m-1.667 5.416V14.5H8.667v3.333zM17 19.5H7v-3.333H3.667v-5q0-1.063.729-1.782a2.43 2.43 0 0 1 1.77-.718h11.667q1.063 0 1.782.718.718.72.718 1.782v5H17z"/></symbol><symbol viewBox="0 0 24 24" id="prohibit" xmlns="http://www.w3.org/2000/svg"><path d="M12 20.333a8.1 8.1 0 0 1-3.25-.656 8.4 8.4 0 0 1-2.646-1.781 8.4 8.4 0 0 1-1.781-2.646A8.1 8.1 0 0 1 3.667 12q0-1.73.656-3.25a8.4 8.4 0 0 1 1.781-2.646A8.4 8.4 0 0 1 8.75 4.323 8.1 8.1 0 0 1 12 3.667q1.73 0 3.25.656a8.4 8.4 0 0 1 2.646 1.781 8.4 8.4 0 0 1 1.781 2.646 8.1 8.1 0 0 1 .656 3.25 8.1 8.1 0 0 1-.656 3.25 8.4 8.4 0 0 1-1.781 2.646 8.4 8.4 0 0 1-2.646 1.781 8.1 8.1 0 0 1-3.25.656m0-1.666a6.5 6.5 0 0 0 2.167-.365 6.6 6.6 0 0 0 1.916-1.052L6.75 7.917a6.6 6.6 0 0 0-1.052 1.916A6.5 6.5 0 0 0 5.333 12q0 2.792 1.938 4.73Q9.208 18.665 12 18.666m5.25-2.584a6.6 6.6 0 0 0 1.052-1.916A6.5 6.5 0 0 0 18.667 12q0-2.792-1.938-4.73Q14.792 5.335 12 5.334q-1.125 0-2.167.365A6.6 6.6 0 0 0 7.917 6.75z"/></symbol><symbol viewBox="0 0 24 24" id="question-mark" xmlns="http://www.w3.org/2000/svg"><path d="M10.833 14.917q0-1.687.303-2.427.301-.74 1.28-1.615.855-.75 1.303-1.302t.448-1.26q0-.855-.573-1.417T12 6.333q-1.062 0-1.614.646-.553.645-.782 1.313l-2.146-.917q.438-1.334 1.605-2.312 1.165-.98 2.937-.98 2.187 0 3.365 1.22 1.176 1.218 1.177 2.926 0 1.042-.448 1.782t-1.407 1.677q-1.02.978-1.239 1.49-.219.51-.219 1.739zm1.167 5q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177q0-.687.49-1.177t1.177-.49 1.177.49.49 1.177-.49 1.177-1.177.49"/></symbol><symbol viewBox="0 0 24 24" id="quote" xmlns="http://www.w3.org/2000/svg"><path d="m6.333 17 1.917-3.333a3.2 3.2 0 0 1-2.354-.98 3.2 3.2 0 0 1-.98-2.354q0-1.374.98-2.354A3.2 3.2 0 0 1 8.25 7a3.2 3.2 0 0 1 2.354.98 3.2 3.2 0 0 1 .98 2.353q0 .48-.115.886t-.344.781L8.25 17zm7.5 0 1.917-3.333a3.2 3.2 0 0 1-2.354-.98 3.2 3.2 0 0 1-.98-2.354q0-1.374.98-2.354A3.2 3.2 0 0 1 15.75 7a3.2 3.2 0 0 1 2.354.98 3.2 3.2 0 0 1 .98 2.353q0 .48-.115.886t-.344.781l-2.875 5z"/></symbol><symbol viewBox="0 0 24 24" id="radio" xmlns="http://www.w3.org/2000/svg"><path d="M12 6c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6m0-2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8"/></symbol><symbol viewBox="0 0 24 24" id="radio-checked" xmlns="http://www.w3.org/2000/svg"><path d="M12 8a4 4 0 1 1 0 8 4 4 0 0 1 0-8"/><path fill-rule="evenodd" d="M12 4c4.42 0 8 3.58 8 8s-3.58 8-8 8-8-3.58-8-8 3.58-8 8-8m0 2c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" id="radio-focus" xmlns="http://www.w3.org/2000/svg"><path d="M12 3c4.96 0 9 4.04 9 9s-4.04 9-9 9-9-4.04-9-9 4.04-9 9-9m0-2C5.92 1 1 5.92 1 12s4.92 11 11 11 11-4.92 11-11S18.08 1 12 1"/></symbol><symbol viewBox="0 0 24 24" id="read-doc" xmlns="http://www.w3.org/2000/svg"><path d="M18.467 5.066 8.291 3.27a1.25 1.25 0 0 0-1.447 1.014L4.52 17.487a1.25 1.25 0 0 0 1.015 1.447l10.176 1.797a1.25 1.25 0 0 0 1.448-1.015l2.325-13.204a1.25 1.25 0 0 0-1.017-1.446m-5.881 7.212a.625.625 0 0 1-.724.507l-3.242-.572a.625.625 0 0 1 .218-1.229l3.24.57a.625.625 0 0 1 .508.724m3.672-1.889a.625.625 0 0 1-.724.506L9.049 9.751a.625.625 0 1 1 .218-1.231l6.485 1.145a.625.625 0 0 1 .508.724zm.433-2.462a.625.625 0 0 1-.724.507L9.483 7.288a.625.625 0 1 1 .217-1.23l6.484 1.144a.626.626 0 0 1 .51.725z"/></symbol><symbol viewBox="0 0 24 24" id="receipt" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M19.44 4.749c-.23-.23-.53-.35-.85-.35H5.39c-.32 0-.62.13-.85.35-.23.23-.35.53-.35.85v13.4a.63.63 0 0 0 .29.51c.09.05.19.08.29.09q.15 0 .3-.06l2.13-1.07 2.13 1.07a.63.63 0 0 0 .54 0l2.13-1.07 2.13 1.07a.63.63 0 0 0 .54 0l2.13-1.07 2.13 1.07q.135.075.3.06c.1 0 .2-.04.29-.09s.16-.13.21-.22.08-.19.08-.29v-13.4c0-.32-.13-.62-.35-.85zm-4.95 10.73h-7v-1.25h7zm2-3.25h-9v-1.25h9zm0-3.25h-9v-1.25h9z" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" id="recycle" xmlns="http://www.w3.org/2000/svg"><path d="M9.5 18.25a.625.625 0 0 1-.625.625h-3.75a1.874 1.874 0 0 1-1.623-2.812l2.188-3.774-1.08-.625a.625.625 0 0 1 .15-1.148l2.56-.686a.625.625 0 0 1 .766.443l.687 2.56a.625.625 0 0 1-.917.703l-1.084-.625-2.185 3.777a.625.625 0 0 0 .538.937h3.75a.625.625 0 0 1 .625.625M12 4.5a.61.61 0 0 1 .54.312l2.188 3.774-1.08.625a.625.625 0 0 0 .149 1.142l2.56.687a.625.625 0 0 0 .765-.442l.687-2.562a.625.625 0 0 0-.915-.703l-1.085.625-2.186-3.77a1.875 1.875 0 0 0-3.246 0l-1.81 3.124a.625.625 0 0 0 1.083.625l1.81-3.125A.61.61 0 0 1 12 4.5m8.494 11.563-1.807-3.125a.625.625 0 0 0-1.082.624l1.808 3.126a.625.625 0 0 1-.538.937H14.5v-1.25a.625.625 0 0 0-1.067-.442l-1.875 1.875a.626.626 0 0 0 0 .884l1.875 1.875a.624.624 0 0 0 1.067-.442v-1.25h4.375a1.875 1.875 0 0 0 1.623-2.812z"/></symbol><symbol viewBox="0 0 24 24" id="refresh" xmlns="http://www.w3.org/2000/svg"><path d="M12 18.667q-2.792 0-4.73-1.938Q5.335 14.792 5.334 12q0-2.791 1.938-4.73Q9.208 5.335 12 5.334q1.437 0 2.75.594A6.35 6.35 0 0 1 17 7.625V5.333h1.667v5.834h-5.834V9.5h3.5a4.86 4.86 0 0 0-1.823-1.833A4.94 4.94 0 0 0 12 7Q9.916 7 8.458 8.458 7 9.917 7 12q0 2.084 1.458 3.542Q9.917 17 12 17q1.605 0 2.896-.917a4.84 4.84 0 0 0 1.812-2.416h1.75a6.58 6.58 0 0 1-2.375 3.604Q14.292 18.667 12 18.667"/></symbol><symbol viewBox="0 0 24 24" id="repeat" xmlns="http://www.w3.org/2000/svg"><path d="M7.833 20.333 4.5 17l3.333-3.333L9 14.875l-1.292 1.292h8.459v-3.334h1.666v5H7.708L9 19.125zm-1.666-9.166v-5h10.125L15 4.875l1.167-1.208L19.5 7l-3.333 3.333L15 9.125l1.292-1.292H7.833v3.334z"/></symbol><symbol viewBox="0 0 24 24" id="reply" xmlns="http://www.w3.org/2000/svg"><path d="M17.833 17.833V14.5a2.4 2.4 0 0 0-.729-1.77 2.4 2.4 0 0 0-1.77-.73H7.687l3 3L9.5 16.167l-5-5 5-5 1.188 1.166-3 3h7.645q1.73 0 2.948 1.22 1.22 1.218 1.219 2.947v3.333z"/></symbol><symbol viewBox="0 0 24 24" id="reply-all" xmlns="http://www.w3.org/2000/svg"><path d="m8.667 16.167-5-5 5-5 1.187 1.166-3.833 3.834L9.854 15zm10 1.666V14.5q0-1.042-.73-1.77a2.4 2.4 0 0 0-1.77-.73H11.02l3 3-1.188 1.167-5-5 5-5 1.188 1.166-3 3h5.146q1.728 0 2.948 1.22 1.218 1.218 1.218 2.947v3.333z"/></symbol><symbol viewBox="0 0 24 24" id="resize" xmlns="http://www.w3.org/2000/svg"><path d="M13.25 11.375v6.875a.624.624 0 0 1-.625.625H5.75a.625.625 0 0 1-.625-.625v-6.875a.625.625 0 0 1 .625-.625h6.875a.624.624 0 0 1 .625.625m5 4.375a.624.624 0 0 0-.625.625v1.25H15.75a.624.624 0 1 0 0 1.25h1.875a1.25 1.25 0 0 0 1.25-1.25v-1.25a.624.624 0 0 0-.625-.625m0-5.625a.624.624 0 0 0-.625.625v2.5a.624.624 0 1 0 1.25 0v-2.5a.624.624 0 0 0-.625-.625m-.625-5h-1.25a.625.625 0 1 0 0 1.25h1.25v1.25a.625.625 0 1 0 1.25 0v-1.25a1.25 1.25 0 0 0-1.25-1.25m-4.375 0h-2.5a.625.625 0 1 0 0 1.25h2.5a.625.625 0 1 0 0-1.25m-7.5 3.75a.625.625 0 0 0 .625-.625V6.375h1.25a.625.625 0 0 0 0-1.25h-1.25a1.25 1.25 0 0 0-1.25 1.25V8.25a.625.625 0 0 0 .625.625"/></symbol><symbol viewBox="0 0 24 24" id="ribbon" xmlns="http://www.w3.org/2000/svg"><path d="M12 12.417a2.4 2.4 0 0 1-1.77-.73 2.4 2.4 0 0 1-.73-1.77q0-1.042.73-1.771a2.4 2.4 0 0 1 1.77-.73q1.042 0 1.77.73a2.4 2.4 0 0 1 .73 1.77 2.4 2.4 0 0 1-.73 1.771 2.4 2.4 0 0 1-1.77.73M7 20.75v-6.437a6.4 6.4 0 0 1-1.23-2 6.6 6.6 0 0 1-.437-2.396q0-2.792 1.938-4.73Q9.209 3.25 12 3.25t4.73 1.938q1.936 1.937 1.937 4.729a6.6 6.6 0 0 1-.438 2.396 6.4 6.4 0 0 1-1.229 2v6.437l-5-1.667zm5-5.833q2.084 0 3.542-1.459Q17 12 17 9.917q0-2.085-1.458-3.542Q14.083 4.917 12 4.917q-2.084 0-3.542 1.458T7 9.917t1.458 3.541q1.459 1.46 3.542 1.459"/></symbol><symbol viewBox="0 0 24 24" id="rows-add" xmlns="http://www.w3.org/2000/svg"><path d="M5.42 5.4h13.16a.62.62 0 0 1 .62.62v2.26a.62.62 0 0 1-.62.62H5.42a.62.62 0 0 1-.62-.62V6.02a.62.62 0 0 1 .62-.62m0 5.4h13.16a.62.62 0 0 1 .62.62v2.26a.62.62 0 0 1-.62.62H5.42a.62.62 0 0 1-.62-.62v-2.26a.62.62 0 0 1 .62-.62m7.18 5.64h-1.2V18H9.84v1.2h1.56v1.55h1.2V19.2h1.55V18H12.6z"/></symbol><symbol viewBox="0 0 24 24" id="ruler" xmlns="http://www.w3.org/2000/svg"><path d="M20.384 9.5 9.5 20.384a1.25 1.25 0 0 1-1.768 0l-4.116-4.116a1.25 1.25 0 0 1 0-1.768l2.279-2.279a.31.31 0 0 1 .442 0l2.72 2.721a.625.625 0 0 0 .916-.033.64.64 0 0 0-.047-.867L7.22 11.337a.31.31 0 0 1 0-.442l1.172-1.172a.313.313 0 0 1 .442 0l2.722 2.721a.623.623 0 0 0 1.06-.475.64.64 0 0 0-.193-.425L9.721 8.837a.31.31 0 0 1 0-.442l1.172-1.172a.31.31 0 0 1 .441 0l2.722 2.722a.624.624 0 0 0 .915-.034.64.64 0 0 0-.048-.866l-2.702-2.708a.31.31 0 0 1 0-.442L14.5 3.616a1.25 1.25 0 0 1 1.768 0l4.116 4.116a1.25 1.25 0 0 1 0 1.768"/></symbol><symbol viewBox="0 0 24 24" id="rules" xmlns="http://www.w3.org/2000/svg"><path d="m14 18.698-1.167-1.167L15 15.365l-2.167-2.167L14 12.03l2.167 2.167 2.166-2.167 1.167 1.167-2.167 2.167L19.5 17.53l-1.167 1.167-2.166-2.167zm1.646-7.5L12.687 8.24l1.167-1.167 1.771 1.77 3.542-3.54 1.166 1.187zm-11.98 5V14.53h7.5v1.667zm0-6.667V7.865h7.5V9.53z"/></symbol><symbol viewBox="0 0 24 24" id="scale" xmlns="http://www.w3.org/2000/svg"><path d="M3.667 20.333q0-2.311.614-3.948.615-1.635 1.573-2.718A7.1 7.1 0 0 1 8 11.99a9.3 9.3 0 0 1 2.333-.823v-2.5q-2.854-.354-4.76-1.76t-1.906-3.24h16.666q0 1.833-1.906 3.24-1.906 1.406-4.76 1.76v2.5A9.3 9.3 0 0 1 16 11.99a7.1 7.1 0 0 1 2.146 1.677q.958 1.083 1.573 2.718.614 1.636.614 3.948h-5v-1.666h3.23q-.376-3.167-2.365-4.584T12 12.667q-2.208 0-4.198 1.416-1.99 1.418-2.365 4.584h3.23v1.666zm8.333 0q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.176q0-.355.136-.646.135-.292.364-.521.5-.5 1.688-1.052a30 30 0 0 1 2.812-1.115 37 37 0 0 1-1.125 2.813q-.54 1.187-1.041 1.687a1.8 1.8 0 0 1-.521.365q-.292.135-.646.135"/></symbol><symbol viewBox="0 0 24 24" id="schedule-backward" xmlns="http://www.w3.org/2000/svg"><path d="M12.16 5.16v1.67h4.67V5.16h1.67v1.67h.83c.46 0 .85.16 1.18.49v-.01c.33.33.49.72.49 1.18v8.67c0 .46-.16.85-.49 1.18a1.6 1.6 0 0 1-1.18.49H9.66c-.46 0-.85-.16-1.18-.49a1.6 1.6 0 0 1-.49-1.18h11.33v-6.33H7.99V8.5c0-.46.16-.85.49-1.18a1.6 1.6 0 0 1 1.18-.49h.83V5.16z"/><path d="m6.66 11-2.14 2.17h8.81v1.66H4.52L6.66 17 5.5 18.17 1.33 14 5.5 9.83z"/></symbol><symbol viewBox="0 0 24 24" id="schedule-forward" xmlns="http://www.w3.org/2000/svg"><path d="M7.16 5.16v1.67h4.67V5.16h1.67v1.67h.83c.46 0 .85.16 1.18.49s.49.72.49 1.18v2.33H4.67v6.34H16c0 .46-.16.85-.49 1.18a1.6 1.6 0 0 1-1.18.49H4.66a1.6 1.6 0 0 1-1.18-.49 1.6 1.6 0 0 1-.49-1.18V8.5c0-.46.16-.85.49-1.18a1.6 1.6 0 0 1 1.18-.49h.83V5.16z"/><path d="m22.67 14-4.17 4.17L17.34 17l2.14-2.17h-8.81v-1.66h8.81L17.34 11l1.16-1.17z"/></symbol><symbol viewBox="0 0 24 24" id="screwdriver" xmlns="http://www.w3.org/2000/svg"><path d="M20.221 3.777a3.94 3.94 0 0 0-5.571 0l-4.16 4.16a1.25 1.25 0 0 0-.365.883v1.305H8.81c-.272 0-.537.09-.755.253a1 1 0 0 0-.064.056l-.625.625a1.25 1.25 0 0 0 0 1.768l1.461 1.462-6.015 6.02a.626.626 0 0 0 .884.884l6.016-6.02 1.461 1.461a1.25 1.25 0 0 0 1.768 0l.625-.625a1 1 0 0 0 .056-.065 1.25 1.25 0 0 0 .254-.754v-1.315h1.304a1.24 1.24 0 0 0 .883-.367l4.158-4.159a3.94 3.94 0 0 0 0-5.572m-2.154 3.039-4.375 4.375a.625.625 0 0 1-.884-.884l4.375-4.375a.625.625 0 0 1 .884.884"/></symbol><symbol viewBox="0 0 24 24" id="scroll" xmlns="http://www.w3.org/2000/svg"><path d="m14.64 9.43-.71.71-1.31-1.31v6.34l1.31-1.31.71.71L12 17.21l-2.64-2.64.71-.71 1.31 1.31V8.83l-1.31 1.31-.71-.71L12 6.79z"/><path fill-rule="evenodd" d="M15 4c1.65 0 3 1.35 3 3v10c0 1.65-1.35 3-3 3H9c-1.65 0-3-1.35-3-3V7c0-1.65 1.35-3 3-3zM9 5.25c-.96 0-1.75.79-1.75 1.75v10c0 .96.79 1.75 1.75 1.75h6c.96 0 1.75-.79 1.75-1.75V7c0-.96-.79-1.75-1.75-1.75z" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" id="search" xmlns="http://www.w3.org/2000/svg"><path d="m18.333 19.5-5.25-5.25a5.08 5.08 0 0 1-3.167 1.083q-2.27 0-3.843-1.573T4.5 9.917t1.573-3.844T9.917 4.5t3.843 1.573 1.573 3.844a5.08 5.08 0 0 1-1.083 3.166l5.25 5.25zm-8.416-5.833q1.562 0 2.656-1.094t1.094-2.656-1.094-2.657q-1.095-1.093-2.656-1.093T7.26 7.26Q6.167 8.355 6.167 9.917t1.093 2.656 2.657 1.094"/></symbol><symbol viewBox="0 0 24 24" id="search-check" xmlns="http://www.w3.org/2000/svg"><path d="m9.458 13.292 4.709-4.73-1.188-1.187-3.52 3.542-1.772-1.75L6.5 10.333zM10.333 17q-2.79 0-4.729-1.937-1.937-1.938-1.937-4.73 0-2.79 1.937-4.729 1.938-1.937 4.73-1.937 2.79 0 4.729 1.937Q17 7.542 17 10.334a6.55 6.55 0 0 1-1.396 4.083l4.73 4.75-1.167 1.166-4.75-4.729A6.545 6.545 0 0 1 10.334 17"/></symbol><symbol viewBox="0 0 24 24" id="search-items" xmlns="http://www.w3.org/2000/svg"><path d="M3.667 17.417V15.75H12v1.667zm0-4.167v-1.667h4.166v1.667zm0-4.167V7.417h4.166v1.666zm15.5 8.334-3.209-3.209a3.7 3.7 0 0 1-1.093.532 4.2 4.2 0 0 1-1.198.177q-1.73 0-2.948-1.219Q9.499 12.48 9.5 10.75t1.219-2.948q1.218-1.219 2.948-1.219 1.728 0 2.948 1.22 1.218 1.218 1.218 2.947 0 .604-.177 1.198t-.531 1.094l3.208 3.208zm-5.5-4.167a2.4 2.4 0 0 0 1.77-.73q.73-.727.73-1.77 0-1.042-.73-1.77a2.4 2.4 0 0 0-1.77-.73 2.4 2.4 0 0 0-1.771.73 2.4 2.4 0 0 0-.73 1.77q0 1.042.73 1.77a2.4 2.4 0 0 0 1.77.73"/></symbol><symbol viewBox="0 0 24 24" id="search-objects" xmlns="http://www.w3.org/2000/svg"><path d="m19.792 20.958-2.563-2.541q-.375.229-.802.343t-.885.115a3.2 3.2 0 0 1-2.354-.98 3.2 3.2 0 0 1-.98-2.353q0-1.376.98-2.354a3.2 3.2 0 0 1 2.354-.98 3.2 3.2 0 0 1 2.354.98 3.2 3.2 0 0 1 .979 2.354 3.2 3.2 0 0 1-.48 1.708l2.563 2.542zM6.375 18.875a3.2 3.2 0 0 1-2.354-.98 3.2 3.2 0 0 1-.98-2.353q0-1.376.98-2.354a3.2 3.2 0 0 1 2.354-.98 3.2 3.2 0 0 1 2.354.98 3.2 3.2 0 0 1 .98 2.354 3.2 3.2 0 0 1-.98 2.354 3.2 3.2 0 0 1-2.354.979m9.167-1.667q.687 0 1.177-.49.49-.489.49-1.176 0-.688-.49-1.178a1.6 1.6 0 0 0-1.177-.489q-.688 0-1.177.49-.49.489-.49 1.177 0 .687.49 1.177.489.49 1.177.49m-9.167-7.5a3.2 3.2 0 0 1-2.354-.979 3.2 3.2 0 0 1-.98-2.354q0-1.375.98-2.354a3.2 3.2 0 0 1 2.354-.98 3.2 3.2 0 0 1 2.354.98 3.2 3.2 0 0 1 .98 2.354 3.2 3.2 0 0 1-.98 2.354 3.2 3.2 0 0 1-2.354.98m9.167 0a3.2 3.2 0 0 1-2.354-.979 3.2 3.2 0 0 1-.98-2.354q0-1.375.98-2.354a3.2 3.2 0 0 1 2.354-.98 3.2 3.2 0 0 1 2.354.98 3.2 3.2 0 0 1 .979 2.354 3.2 3.2 0 0 1-.98 2.354 3.2 3.2 0 0 1-2.353.98"/></symbol><symbol viewBox="0 0 24 24" id="send" xmlns="http://www.w3.org/2000/svg"><path d="M5.083 18.667v-5L11.75 12l-6.667-1.667v-5L20.917 12z"/></symbol><symbol viewBox="0 0 24 24" id="settings" xmlns="http://www.w3.org/2000/svg"><path d="m9.708 20.333-.333-2.666a3 3 0 0 1-.51-.25 7 7 0 0 1-.47-.313l-2.478 1.042-2.292-3.959 2.146-1.624a2 2 0 0 1-.021-.282v-.562q0-.135.02-.281L3.626 9.813l2.292-3.959 2.479 1.042q.229-.166.479-.313.25-.145.5-.25l.333-2.666h4.584l.333 2.666q.27.105.51.25.24.147.47.313l2.478-1.042 2.292 3.959-2.146 1.624q.021.147.021.282v.562q0 .135-.042.281l2.146 1.626-2.291 3.958-2.459-1.042a6 6 0 0 1-.479.313q-.25.145-.5.25l-.333 2.666zm2.334-5.416a2.8 2.8 0 0 0 2.062-.854A2.8 2.8 0 0 0 14.958 12a2.8 2.8 0 0 0-.854-2.062 2.8 2.8 0 0 0-2.062-.855q-1.23 0-2.073.855A2.83 2.83 0 0 0 9.125 12q0 1.209.844 2.063.843.854 2.073.854"/></symbol><symbol viewBox="0 0 24 24" id="shapes" xmlns="http://www.w3.org/2000/svg"><path d="M10.718 16.177a.625.625 0 0 1-.593.823h-6.25a.625.625 0 0 1-.593-.823l3.125-9.375a.625.625 0 0 1 1.186 0zm7.532-8.24a4.062 4.062 0 1 0-8.125 0 4.062 4.062 0 0 0 8.125 0m1.25 5.313h-6.875a.625.625 0 0 0-.625.625v4.375a.625.625 0 0 0 .625.625H19.5a.625.625 0 0 0 .625-.625v-4.375a.625.625 0 0 0-.625-.625"/></symbol><symbol viewBox="0 0 24 24" id="share" xmlns="http://www.w3.org/2000/svg"><path d="m17.28 9.05-2.09-2.09.88-.89L19.8 9.8l-3.73 3.73-.88-.88 2.093-2.1H15.53c-3.553 0-5.303 2.47-6.711 4.458l-.009.012c-.115.158-.225.317-.33.468l-.12.172-1.21-.88c.14-.19.29-.4.44-.62 1.43-2.03 3.6-5.11 7.94-5.11z"/><path d="M5.87 17.13V7.8H4.2v9c0 1.1.9 2 2 2h11v-1.67z"/></symbol><symbol viewBox="0 0 24 24" id="shuffle" xmlns="http://www.w3.org/2000/svg"><path d="M13.163 18.667V17h2.167l-2.646-2.646 1.188-1.187 2.625 2.625v-2.125h1.666v5zm-7.166 0L4.83 17.5 15.33 7h-2.167V5.333h5v5h-1.666V8.167zm3.145-7.855L4.83 6.5l1.167-1.167 4.312 4.313z"/></symbol><symbol viewBox="0 0 24 24" id="signpost" xmlns="http://www.w3.org/2000/svg"><path d="m21.219 11.168-2.63 2.918a1.25 1.25 0 0 1-.93.414h-5.034v5a.624.624 0 1 1-1.25 0v-5h-6.25a1.25 1.25 0 0 1-1.25-1.25v-5A1.25 1.25 0 0 1 5.125 7h6.25V4.5a.625.625 0 1 1 1.25 0V7h5.034a1.25 1.25 0 0 1 .93.414l2.63 2.918a.625.625 0 0 1 0 .836"/></symbol><symbol viewBox="0 0 24 24" id="skip-back" xmlns="http://www.w3.org/2000/svg"><path d="M6.583 17V7H8.25v10zm10.834 0-7.5-5 7.5-5z"/></symbol><symbol viewBox="0 0 24 24" id="skip-forward" xmlns="http://www.w3.org/2000/svg"><path d="M15.75 17V7h1.667v10zm-9.167 0V7l7.5 5z"/></symbol><symbol viewBox="0 0 24 24" id="skull" xmlns="http://www.w3.org/2000/svg"><path d="M10.75 15.125h2.5l-1.25-2.5zm-1.667-2.292q.688 0 1.177-.49.49-.489.49-1.176 0-.688-.49-1.177a1.6 1.6 0 0 0-1.177-.49q-.687 0-1.177.49-.49.489-.49 1.177 0 .687.49 1.177t1.177.49m5.834 0q.687 0 1.177-.49.49-.489.49-1.176 0-.688-.49-1.177a1.6 1.6 0 0 0-1.177-.49q-.688 0-1.178.49-.489.489-.489 1.177 0 .687.49 1.177.489.49 1.177.49M7 20.333v-3.541a4.8 4.8 0 0 1-1.427-.948A6 6 0 0 1 4.53 14.5a6.5 6.5 0 0 1-.646-1.604 7 7 0 0 1-.218-1.73q0-3.29 2.333-5.395t6-2.104q3.666 0 6 2.104t2.333 5.396a7 7 0 0 1-.218 1.729 6.5 6.5 0 0 1-.646 1.604q-.427.75-1.042 1.344-.614.594-1.427.948v3.541h-2.5v-1.666h-1.667v1.666h-1.666v-1.666H9.5v1.666z"/></symbol><symbol viewBox="0 0 24 24" id="sliders" xmlns="http://www.w3.org/2000/svg"><path d="M6.167 18.667v-5.834H4.5v-1.666h5v1.666H7.833v5.834zm0-9.167V5.333h1.666V9.5zm3.333 0V7.833h1.667v-2.5h1.666v2.5H14.5V9.5zm1.667 9.167v-7.5h1.666v7.5zm5 0v-2.5H14.5V14.5h5v1.667h-1.667v2.5zm0-5.834v-7.5h1.666v7.5z"/></symbol><symbol viewBox="0 0 24 24" id="sort-alpha-down" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M10.73 11.24H12L9.86 5.52H8.38l-2.14 5.72h1.3l.45-1.25h2.29zM8.42 8.77l.65-1.82h.11l.66 1.82z" clip-rule="evenodd"/><path d="m19.03 15.41-1.22 1.22V8.17h-1.25v8.46l-1.22-1.22-.88.88 2.72 2.73 2.73-2.73zm-8.07-1.3-2.45 3.17h2.64v1.18H7.17v-1.35l2.49-3.17H7.09v-1.18h3.87z"/></symbol><symbol viewBox="0 0 24 24" id="sort-alpha-up" xmlns="http://www.w3.org/2000/svg"><path d="m19.91 7.71-2.73-2.73-2.72 2.73.88.88 1.22-1.22v8.46h1.25V7.37l1.22 1.22z"/><path fill-rule="evenodd" d="M10.73 11.24H12L9.86 5.52H8.38l-2.14 5.72h1.3l.45-1.25h2.29zM8.42 8.77l.65-1.82h.11l.66 1.82z" clip-rule="evenodd"/><path d="m10.96 14.11-2.45 3.17h2.64v1.18H7.17v-1.35l2.49-3.17H7.09v-1.18h3.87z"/></symbol><symbol viewBox="0 0 24 24" id="sort-ascending" xmlns="http://www.w3.org/2000/svg"><path d="M17.48 6.5h-12v1.67h12zm-12 4.67h8v1.67h-8zm0 4.66h6v1.67h-6zm11.8.8 1.22-1.22.89.88-2.73 2.73-2.73-2.73.88-.88 1.22 1.22v-6.46h1.25z"/></symbol><symbol viewBox="0 0 24 24" id="sort-descending" xmlns="http://www.w3.org/2000/svg"><path d="m16.66 4.98 2.73 2.73-.89.88-1.22-1.22v6.46h-1.25V7.37l-1.22 1.22-.88-.88zM5.48 6.5h6v1.67h-6zm0 4.67h8v1.67h-8zm0 4.66v1.67h12v-1.67z"/></symbol><symbol viewBox="0 0 24 24" id="sort-time-down" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M3.97 12c0-3.04 2.46-5.5 5.5-5.5s5.5 2.46 5.5 5.5-2.46 5.5-5.5 5.5-5.5-2.46-5.5-5.5m4.67.42 2.5 2.5 1.17-1.17-2-2.02V8.67H8.64z" clip-rule="evenodd"/><path d="m18.88 16.63 1.22-1.22.88.88-2.73 2.73-2.73-2.73.88-.88 1.23 1.22V8.17h1.25z"/></symbol><symbol viewBox="0 0 24 24" id="sort-time-up" xmlns="http://www.w3.org/2000/svg"><path d="m18.25 4.98 2.73 2.73-.88.88-1.22-1.22v8.46h-1.25V7.37L16.4 8.59l-.88-.88z"/><path fill-rule="evenodd" d="M3.97 12c0-3.04 2.46-5.5 5.5-5.5s5.5 2.46 5.5 5.5-2.46 5.5-5.5 5.5-5.5-2.46-5.5-5.5m4.67.42 2.5 2.5 1.17-1.17-2-2.02V8.67H8.64z" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" id="square" xmlns="http://www.w3.org/2000/svg"><path d="M6.167 19.5q-.688 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177V6.167q0-.688.49-1.177.489-.49 1.177-.49h11.666q.688 0 1.177.49.49.489.49 1.177v11.666q0 .688-.49 1.177-.489.49-1.177.49z"/></symbol><symbol viewBox="0 0 24 24" id="square-add" xmlns="http://www.w3.org/2000/svg"><path d="M11.167 16.167h1.666v-3.334h3.334v-1.666h-3.334V7.833h-1.666v3.334H7.833v1.666h3.334zm-5 3.333q-.688 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177V6.167q0-.688.49-1.177.489-.49 1.177-.49h11.666q.688 0 1.177.49.49.489.49 1.177v11.666q0 .688-.49 1.177-.489.49-1.177.49z"/></symbol><symbol viewBox="0 0 24 24" id="square-inside" xmlns="http://www.w3.org/2000/svg"><path d="M18.25 4.5H5.75A1.25 1.25 0 0 0 4.5 5.75v12.5a1.25 1.25 0 0 0 1.25 1.25h12.5a1.25 1.25 0 0 0 1.25-1.25V5.75a1.25 1.25 0 0 0-1.25-1.25m0 13.75H5.75V5.75h12.5zM15.125 9.5v5a.624.624 0 0 1-.625.625h-5a.625.625 0 0 1-.625-.625v-5a.625.625 0 0 1 .625-.625h5a.625.625 0 0 1 .625.625"/></symbol><symbol viewBox="0 0 24 24" id="square-select" xmlns="http://www.w3.org/2000/svg"><path d="M10.125 5.125a.625.625 0 0 1 .625-.625h2.5a.625.625 0 1 1 0 1.25h-2.5a.625.625 0 0 1-.625-.625M13.25 18.25h-2.5a.624.624 0 1 0 0 1.25h2.5a.624.624 0 1 0 0-1.25m5-13.75h-1.875a.625.625 0 1 0 0 1.25h1.875v1.875a.625.625 0 1 0 1.25 0V5.75a1.25 1.25 0 0 0-1.25-1.25m.625 5.625a.624.624 0 0 0-.625.625v2.5a.624.624 0 1 0 1.25 0v-2.5a.624.624 0 0 0-.625-.625m0 5.625a.624.624 0 0 0-.625.625v1.875h-1.875a.624.624 0 1 0 0 1.25h1.875a1.25 1.25 0 0 0 1.25-1.25v-1.875a.624.624 0 0 0-.625-.625m-13.75-1.875a.625.625 0 0 0 .625-.625v-2.5a.625.625 0 1 0-1.25 0v2.5a.625.625 0 0 0 .625.625m2.5 4.375H5.75v-1.875a.625.625 0 1 0-1.25 0v1.875a1.25 1.25 0 0 0 1.25 1.25h1.875a.625.625 0 1 0 0-1.25m-2.5-10a.625.625 0 0 0 .625-.625V5.75h1.875a.625.625 0 0 0 0-1.25H5.75A1.25 1.25 0 0 0 4.5 5.75v1.875a.625.625 0 0 0 .625.625m11.25 7.5v-7.5a.625.625 0 0 0-.625-.625h-7.5a.625.625 0 0 0-.625.625v7.5a.625.625 0 0 0 .625.625h7.5a.624.624 0 0 0 .625-.625"/></symbol><symbol viewBox="0 0 24 24" id="stamp" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M18.173 13.153c-.33-.33-.72-.49-1.18-.49h-4.2c.33-3.33 2.7-3.54 2.7-6.5 0-1.93-1.57-3.5-3.5-3.5s-3.5 1.57-3.5 3.5c0 2.96 2.38 3.17 2.7 6.5h-4.19c-.46 0-.85.16-1.18.49s-.49.72-.49 1.18v5h13.33v-5c0-.46-.16-.85-.49-1.18m-1.17 2.84h-10v-1.67h10z" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" id="star" xmlns="http://www.w3.org/2000/svg"><path d="m19.972 11.014-3.375 2.912 1.028 4.355a1.23 1.23 0 0 1-1.838 1.337L12 17.287l-3.79 2.33a1.23 1.23 0 0 1-1.835-1.336l1.032-4.355-3.375-2.912a1.235 1.235 0 0 1 .699-2.164l4.425-.357 1.707-4.131a1.227 1.227 0 0 1 2.27 0l1.707 4.131 4.425.357a1.235 1.235 0 0 1 .702 2.165z"/></symbol><symbol viewBox="0 0 24 24" id="star-outlined" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M11.99 3.6c-.24 0-.48.07-.68.21s-.36.33-.45.55L9.15 8.49l-4.42.36a1.23 1.23 0 0 0-1.08 1.56c.07.23.2.44.38.6l3.38 2.91-1.03 4.36c-.06.24-.04.48.04.71s.23.43.43.57.43.22.67.23h.05c.23 0 .45-.06.64-.18L12 17.28l3.79 2.33c.19.12.42.18.64.18h.05c.24 0 .48-.09.67-.23a1.232 1.232 0 0 0 .47-1.28l-1.03-4.36 3.38-2.91a1.24 1.24 0 0 0 .37-1.31c-.08-.23-.22-.43-.41-.59a1.23 1.23 0 0 0-.66-.26l-4.42-.36-1.71-4.13c-.09-.23-.25-.42-.45-.55-.2-.14-.44-.21-.68-.21zm0 2.38 1.3 3.15c.24.58.78.97 1.41 1.02l3.39.27-2.59 2.24c-.47.41-.68 1.04-.53 1.64l.79 3.34-2.89-1.78c-.27-.16-.57-.25-.87-.25s-.61.08-.87.25l-2.89 1.78.79-3.33a1.68 1.68 0 0 0-.53-1.65l-2.59-2.24 3.39-.27c.62-.05 1.17-.45 1.41-1.02l1.3-3.15" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" id="start" xmlns="http://www.w3.org/2000/svg"><path d="M4.667 17V7h1.666v10zm11.666 0-1.187-1.167 3-3H8v-1.666h10.146l-2.98-3L16.334 7l5 5z"/></symbol><symbol viewBox="0 0 24 24" id="step" xmlns="http://www.w3.org/2000/svg"><path d="M17.833 14.5q-1.062 0-1.78-.719-.72-.719-.72-1.781t.72-1.781 1.78-.719 1.782.719.718 1.781q0 1.062-.718 1.781-.72.72-1.782.719M9.5 16.167l-1.167-1.188 2.146-2.146H3.667v-1.666h6.812L8.333 9 9.5 7.833 13.667 12z"/></symbol><symbol viewBox="0 0 24 24" id="stop" xmlns="http://www.w3.org/2000/svg"><path d="M7 17V7h10v10z"/></symbol><symbol viewBox="0 0 24 24" id="story" xmlns="http://www.w3.org/2000/svg"><path d="M12.33 7.46c.75 0 1.4.27 1.94.81s.81 1.19.81 1.94-.27 1.4-.81 1.94-1.19.81-1.94.81-1.4-.27-1.94-.81-.81-1.19-.81-1.94.27-1.4.81-1.94 1.18-.81 1.94-.81"/><path fill-rule="evenodd" d="M19 5c.46 0 .85.16 1.18.49s.49.72.49 1.18v10c0 .46-.16.85-.49 1.18a1.6 1.6 0 0 1-1.18.49H5.67a1.6 1.6 0 0 1-1.18-.49A1.6 1.6 0 0 1 4 16.67v-10c0-.46.16-.85.49-1.18A1.6 1.6 0 0 1 5.67 5zM5.68 6.5c-.06 0-.07 0-.12.05s-.05.06-.05.12v10c0 .06 0 .07.05.12s.06.05.12.05h.89c0-.4.11-.77.31-1.1.21-.35.49-.61.84-.79.74-.37 1.5-.65 2.27-.84s1.55-.28 2.35-.28 1.58.09 2.35.28 1.52.47 2.27.84c.35.19.63.45.84.79.2.34.31.7.31 1.1H19c.06 0 .07 0 .12-.05s.05-.06.05-.12h.01v-10c0-.06 0-.07-.05-.12s-.06-.05-.12-.05z" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" id="strategy" xmlns="http://www.w3.org/2000/svg"><path d="M10.438 16.688a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0m-4.246-5.496 1.12-1.12 1.12 1.12a.625.625 0 0 0 .885-.884l-1.12-1.12 1.12-1.12a.625.625 0 0 0-.884-.885l-1.12 1.12-1.12-1.12a.625.625 0 0 0-.885.884l1.12 1.12-1.12 1.12a.625.625 0 0 0 .884.885m12.63 5.496 1.12-1.12a.626.626 0 0 0-.884-.885l-1.12 1.12-1.12-1.12a.625.625 0 0 0-.885.884l1.12 1.12-1.12 1.12a.625.625 0 1 0 .884.885l1.12-1.12 1.12 1.12a.624.624 0 1 0 .885-.884zm-3.88-10.755-.183-.183h1.616a.625.625 0 0 0 0-1.25H13.25a.625.625 0 0 0-.625.625V8.25a.625.625 0 1 0 1.25 0V6.634l.183.183c1.4 1.401 1.398 2.766 1.149 3.664-.363 1.31-1.513 2.482-2.734 2.788a.624.624 0 1 0 .304 1.212c1.657-.414 3.153-1.922 3.636-3.666.476-1.723-.046-3.456-1.47-4.882"/></symbol><symbol viewBox="0 0 24 24" id="success" xmlns="http://www.w3.org/2000/svg"><path d="m10.833 15.833 5.875-5.875-1.166-1.166-4.709 4.708-2.375-2.375-1.166 1.167zm1.167 4.5a8.1 8.1 0 0 1-3.25-.656 8.4 8.4 0 0 1-2.646-1.781 8.4 8.4 0 0 1-1.781-2.646A8.1 8.1 0 0 1 3.667 12q0-1.73.656-3.25a8.4 8.4 0 0 1 1.781-2.646A8.4 8.4 0 0 1 8.75 4.323 8.1 8.1 0 0 1 12 3.667q1.73 0 3.25.656a8.4 8.4 0 0 1 2.646 1.781 8.4 8.4 0 0 1 1.781 2.646 8.1 8.1 0 0 1 .656 3.25 8.1 8.1 0 0 1-.656 3.25 8.4 8.4 0 0 1-1.781 2.646 8.4 8.4 0 0 1-2.646 1.781 8.1 8.1 0 0 1-3.25.656"/></symbol><symbol viewBox="0 0 24 24" id="sun" xmlns="http://www.w3.org/2000/svg"><path d="M12 16.167q-1.729 0-2.948-1.219Q7.833 13.73 7.833 12t1.22-2.948Q10.27 7.833 12 7.833t2.948 1.22q1.22 1.218 1.219 2.947t-1.219 2.948Q13.73 16.168 12 16.167m-5.833-3.334H2.833v-1.666h3.334zm15 0h-3.334v-1.666h3.334zm-10-6.666V2.833h1.666v3.334zm0 15v-3.334h1.666v3.334zM7.333 8.458 5.23 6.438l1.188-1.23 2 2.084zm10.25 10.334-2.02-2.105 1.104-1.145 2.104 2.02zM15.542 7.333l2.02-2.104 1.23 1.188-2.084 2zM5.208 17.583l2.105-2.02 1.145 1.104-2.02 2.104z"/></symbol><symbol viewBox="0 0 24 24" id="support" xmlns="http://www.w3.org/2000/svg"><path d="M12 20.333a8.1 8.1 0 0 1-3.25-.656 8.4 8.4 0 0 1-2.646-1.781 8.4 8.4 0 0 1-1.781-2.646A8.1 8.1 0 0 1 3.667 12q0-1.73.656-3.25a8.4 8.4 0 0 1 1.781-2.646A8.4 8.4 0 0 1 8.75 4.323 8.1 8.1 0 0 1 12 3.667q1.73 0 3.25.656a8.4 8.4 0 0 1 2.646 1.781 8.4 8.4 0 0 1 1.781 2.646 8.1 8.1 0 0 1 .656 3.25 8.1 8.1 0 0 1-.656 3.25 8.4 8.4 0 0 1-1.781 2.646 8.4 8.4 0 0 1-2.646 1.781 8.1 8.1 0 0 1-3.25.656m-2.417-2.125 1-2.291a3.9 3.9 0 0 1-1.51-.97 4.7 4.7 0 0 1-.99-1.53l-2.291.958a6.25 6.25 0 0 0 1.479 2.333 6.5 6.5 0 0 0 2.312 1.5m-1.5-7.625a4.7 4.7 0 0 1 .99-1.531q.635-.655 1.51-.969l-.958-2.291a6.5 6.5 0 0 0-2.333 1.5 6.5 6.5 0 0 0-1.5 2.333zM12 14.5q1.042 0 1.77-.73.73-.728.73-1.77t-.73-1.77A2.4 2.4 0 0 0 12 9.5q-1.042 0-1.77.73A2.4 2.4 0 0 0 9.5 12q0 1.042.73 1.77.728.73 1.77.73m2.417 3.708a6.5 6.5 0 0 0 2.302-1.49 6.5 6.5 0 0 0 1.49-2.301l-2.292-1a3.96 3.96 0 0 1-.959 1.51q-.645.636-1.5.99zm1.5-7.666 2.291-.959a6.5 6.5 0 0 0-1.49-2.302 6.5 6.5 0 0 0-2.301-1.49l-.959 2.334q.855.312 1.48.948.624.635.979 1.469"/></symbol><symbol viewBox="0 0 24 24" id="sync" xmlns="http://www.w3.org/2000/svg"><path d="M5.33 13.67h5v1.67H8.29l.21.21c.5.5 1.05.87 1.64 1.1.59.24 1.2.35 1.82.35 1.07 0 2.04-.31 2.91-.92s1.48-1.42 1.84-2.42h1.75c-.39 1.49-1.18 2.69-2.39 3.61-1.2.92-2.57 1.39-4.11 1.39-.83 0-1.65-.16-2.45-.47s-1.54-.81-2.22-1.49L7 16.37v2.29H5.33v-5zm2.59-6.94c1.21-.93 2.58-1.39 4.12-1.39.83 0 1.65.16 2.45.47s1.54.81 2.22 1.49l.29.33V5.34h1.67v5h-5V8.67h2.04l-.21-.21c-.5-.5-1.05-.87-1.64-1.1a4.8 4.8 0 0 0-1.82-.35c-1.07 0-2.04.31-2.91.92s-1.48 1.42-1.84 2.42H5.54c.39-1.49 1.18-2.69 2.39-3.61z"/></symbol><symbol viewBox="0 0 24 24" id="tag" xmlns="http://www.w3.org/2000/svg"><path d="M20.52 14.542 14.563 20.5a1.7 1.7 0 0 1-.562.375 1.7 1.7 0 0 1-.625.125q-.313 0-.625-.125a1.7 1.7 0 0 1-.563-.375l-7.354-7.354a1.646 1.646 0 0 1-.48-1.167v-5.98q.001-.687.49-1.176.49-.49 1.178-.49H12q.333 0 .646.136.312.135.541.364l7.334 7.354q.25.25.364.563.115.312.115.625 0 .312-.115.614a1.6 1.6 0 0 1-.364.552M8.105 9.333q.52 0 .885-.364.365-.366.365-.886t-.365-.885a1.2 1.2 0 0 0-.885-.365q-.52 0-.885.365a1.2 1.2 0 0 0-.365.885q0 .52.365.886.365.364.885.364"/></symbol><symbol viewBox="0 0 24 24" id="target" xmlns="http://www.w3.org/2000/svg"><path d="M12 20.333a8.1 8.1 0 0 1-3.25-.656 8.4 8.4 0 0 1-2.646-1.781 8.4 8.4 0 0 1-1.781-2.646A8.1 8.1 0 0 1 3.667 12q0-1.73.656-3.25a8.4 8.4 0 0 1 1.781-2.646A8.4 8.4 0 0 1 8.75 4.323 8.1 8.1 0 0 1 12 3.667q1.73 0 3.25.656a8.4 8.4 0 0 1 2.646 1.781 8.4 8.4 0 0 1 1.781 2.646 8.1 8.1 0 0 1 .656 3.25 8.1 8.1 0 0 1-.656 3.25 8.4 8.4 0 0 1-1.781 2.646 8.4 8.4 0 0 1-2.646 1.781 8.1 8.1 0 0 1-3.25.656m0-1.666q2.792 0 4.73-1.938 1.936-1.937 1.937-4.729 0-2.792-1.938-4.73Q14.792 5.335 12 5.334q-2.791 0-4.73 1.938Q5.335 9.208 5.334 12q0 2.792 1.938 4.73 1.937 1.936 4.73 1.937M12 17q-2.084 0-3.542-1.458Q7 14.083 7 12q0-2.084 1.458-3.542Q9.917 7 12 7q2.084 0 3.542 1.458Q17 9.917 17 12q0 2.084-1.458 3.542Q14.083 17 12 17m0-1.667a3.2 3.2 0 0 0 2.354-.979 3.2 3.2 0 0 0 .98-2.354 3.2 3.2 0 0 0-.98-2.354A3.2 3.2 0 0 0 12 8.666a3.2 3.2 0 0 0-2.354.98A3.2 3.2 0 0 0 8.666 12q0 1.375.98 2.354a3.2 3.2 0 0 0 2.354.98m0-1.666q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177q0-.687.49-1.177t1.177-.49 1.177.49.49 1.177-.49 1.177-1.177.49"/></symbol><symbol viewBox="0 0 24 24" id="target-2" xmlns="http://www.w3.org/2000/svg"><path d="M19.334 8.497a8.133 8.133 0 1 1-2.047-2.669l1.77-1.772a.626.626 0 0 1 .885.885L15.094 9.79l-2.946 2.946-1.871 1.871a3.125 3.125 0 0 0 4.843-2.787.626.626 0 0 1 1.25-.07 4.376 4.376 0 0 1-7.46 3.343 4.375 4.375 0 0 1 5.713-6.596l1.775-1.78a6.866 6.866 0 1 0 1.808 2.319.625.625 0 0 1 1.128-.54"/></symbol><symbol viewBox="0 0 24 24" id="task-alt" xmlns="http://www.w3.org/2000/svg"><path d="M12 20.333a8.1 8.1 0 0 1-3.25-.656 8.4 8.4 0 0 1-2.646-1.781 8.4 8.4 0 0 1-1.781-2.646A8.1 8.1 0 0 1 3.667 12q0-1.73.656-3.25a8.4 8.4 0 0 1 1.781-2.646A8.4 8.4 0 0 1 8.75 4.323 8.1 8.1 0 0 1 12 3.667a8.2 8.2 0 0 1 2.563.396 8.6 8.6 0 0 1 2.229 1.104l-1.209 1.229a7.2 7.2 0 0 0-1.687-.781A6.3 6.3 0 0 0 12 5.333q-2.77 0-4.719 1.948Q5.334 9.23 5.333 12t1.948 4.719Q9.23 18.667 12 18.667t4.719-1.948Q18.667 14.77 18.667 12q0-.375-.042-.75a6 6 0 0 0-.125-.73l1.354-1.353q.23.666.354 1.375.126.708.125 1.458a8.1 8.1 0 0 1-.656 3.25 8.4 8.4 0 0 1-1.781 2.646 8.4 8.4 0 0 1-2.646 1.781 8.1 8.1 0 0 1-3.25.656m-1.167-4.5-3.541-3.541 1.166-1.167 2.375 2.375 8.334-8.354 1.166 1.167z"/></symbol><symbol viewBox="0 0 24 24" id="text-add" xmlns="http://www.w3.org/2000/svg"><path d="M4.083 14.5v-1.667h5.834V14.5zm0-3.333V9.5h9.167v1.667zm0-3.334V6.167h9.167v1.666zm10.834 10V14.5h-3.334v-1.667h3.334V9.5h1.666v3.333h3.334V14.5h-3.334v3.333z"/></symbol><symbol viewBox="0 0 24 24" id="textbox" xmlns="http://www.w3.org/2000/svg"><path d="M21.375 8.25v7.5a1.25 1.25 0 0 1-1.25 1.25h-7.187a.313.313 0 0 1-.313-.312V7.313A.31.31 0 0 1 12.938 7h7.187a1.25 1.25 0 0 1 1.25 1.25m-10-2.5v12.5a.624.624 0 1 1-1.25 0V17h-6.25a1.25 1.25 0 0 1-1.25-1.25v-7.5A1.25 1.25 0 0 1 3.875 7h6.25V5.75a.625.625 0 1 1 1.25 0m-2.5 5a.625.625 0 0 0-.625-.625h-2.5a.625.625 0 1 0 0 1.25h.625v1.875a.625.625 0 1 0 1.25 0v-1.875h.625a.625.625 0 0 0 .625-.625"/></symbol><symbol viewBox="0 0 24 24" id="time-add" xmlns="http://www.w3.org/2000/svg"><path d="M12.029 19.493a7.4 7.4 0 0 1-2.927-.584 7.5 7.5 0 0 1-2.386-1.604 7.5 7.5 0 0 1-1.604-2.385 7.4 7.4 0 0 1-.583-2.927q0-1.563.583-2.928A7.5 7.5 0 0 1 6.716 6.68a7.5 7.5 0 0 1 2.386-1.604 7.4 7.4 0 0 1 2.927-.584 6.6 6.6 0 0 1 1.666.209v1.708a5.543 5.543 0 0 0-1.667-.25q-2.457 0-4.145 1.688t-1.687 4.145q0 2.46 1.687 4.146 1.688 1.688 4.146 1.688t4.146-1.688 1.687-4.146q0-.228-.02-.416a6 6 0 0 0-.063-.417h1.708q.042.23.042.417v.416a7.4 7.4 0 0 1-.584 2.928 7.5 7.5 0 0 1-1.604 2.385 7.5 7.5 0 0 1-2.385 1.604 7.4 7.4 0 0 1-2.927.584m2.333-4-3.167-3.167v-4.5h1.667v3.833l2.667 2.667zm3.5-6v-2.5h-2.5V5.325h2.5v-2.5h1.667v2.5h2.5v1.666h-2.5v2.5z"/></symbol><symbol viewBox="0 0 24 24" id="timer" xmlns="http://www.w3.org/2000/svg"><path d="M9.5 3.777V2.11h5v1.667zm1.667 9.167h1.666v-5h-1.666zM12 19.61a7.2 7.2 0 0 1-2.906-.593 7.7 7.7 0 0 1-2.386-1.615 7.7 7.7 0 0 1-1.614-2.385A7.2 7.2 0 0 1 4.5 12.11q0-1.542.594-2.907A7.7 7.7 0 0 1 6.708 6.82a7.7 7.7 0 0 1 2.386-1.615A7.2 7.2 0 0 1 12 4.61q1.292 0 2.48.417 1.186.416 2.228 1.208l1.167-1.166 1.167 1.166-1.167 1.167a8.1 8.1 0 0 1 1.208 2.23q.417 1.186.417 2.479a7.2 7.2 0 0 1-.594 2.906 7.7 7.7 0 0 1-1.614 2.385 7.7 7.7 0 0 1-2.386 1.615A7.2 7.2 0 0 1 12 19.61"/></symbol><symbol viewBox="0 0 24 24" id="toolbox" xmlns="http://www.w3.org/2000/svg"><path d="M9.5 8.133h5V6.467h-5zm-5.833 10v-4.166H7v.833h1.667v-.833h6.666v.833H17v-.833h3.333v4.166zm0-5V9.8q0-.687.49-1.177.489-.49 1.176-.49h2.5V6.467q0-.688.49-1.177T9.5 4.8h5q.687 0 1.177.49.49.489.49 1.177v1.666h2.5q.687 0 1.177.49t.49 1.177v3.333H17v-1.666h-1.667v1.666H8.667v-1.666H7v1.666z"/></symbol><symbol viewBox="0 0 24 24" id="tools" xmlns="http://www.w3.org/2000/svg"><path d="m17.948 19.51-4.563-4.562 1.75-1.75 4.563 4.562zm-11.5 0-1.75-1.75 5.75-5.75-1.417-1.416-.583.583-1.063-1.062v1.708l-.583.583-2.52-2.52.583-.584h1.708L5.53 8.26l2.96-2.958a2.6 2.6 0 0 1 .895-.604 2.67 2.67 0 0 1 1.959 0q.48.187.896.604L10.323 7.22l1.042 1.041-.584.584 1.417 1.416 1.875-1.875a3.5 3.5 0 0 1-.136-.479 2.5 2.5 0 0 1-.052-.5q0-1.23.844-2.073.845-.843 2.073-.843.312 0 .594.062.28.063.573.188l-2.063 2.062 1.5 1.5L19.47 6.24q.146.291.198.572.051.282.052.594 0 1.23-.844 2.073-.843.844-2.073.844-.25 0-.5-.042a2 2 0 0 1-.48-.146z"/></symbol><symbol viewBox="0 0 24 24" id="trash" xmlns="http://www.w3.org/2000/svg"><path d="M7.833 19.5q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.177V7h-.833V5.333H9.5V4.5h5v.833h4.167V7h-.834v10.833q0 .688-.49 1.177-.489.49-1.176.49zM9.5 16.167h1.667v-7.5H9.5zm3.333 0H14.5v-7.5h-1.667z"/></symbol><symbol viewBox="0 0 24 24" id="trophy" xmlns="http://www.w3.org/2000/svg"><path d="M7.833 19.5v-1.667h3.334V15.25a4.5 4.5 0 0 1-1.823-.865 3.73 3.73 0 0 1-1.177-1.593 4.05 4.05 0 0 1-2.615-1.365A4 4 0 0 1 4.5 8.667v-.834q0-.687.49-1.177.489-.49 1.177-.49h1.666V4.5h8.334v1.667h1.666q.688 0 1.177.49.49.489.49 1.176v.834a4 4 0 0 1-1.052 2.76 4.05 4.05 0 0 1-2.615 1.365 3.73 3.73 0 0 1-1.177 1.593 4.5 4.5 0 0 1-1.823.865v2.583h3.334V19.5zm0-8.5V7.833H6.167v.834q0 .79.458 1.427.459.635 1.208.906m8.334 0q.75-.27 1.208-.906.459-.636.458-1.427v-.834h-1.666z"/></symbol><symbol viewBox="0 0 24 24" id="truck-trailer" xmlns="http://www.w3.org/2000/svg"><path d="M7.82 19.076a2.4 2.4 0 0 1-1.771-.73 2.4 2.4 0 0 1-.73-1.77H3.654V7.409q0-.687.49-1.177.489-.49 1.177-.49h11.666v3.334h2.5l2.5 3.333v4.167H20.32a2.4 2.4 0 0 1-.73 1.77 2.4 2.4 0 0 1-1.77.73 2.4 2.4 0 0 1-1.771-.73 2.4 2.4 0 0 1-.73-1.77h-5a2.4 2.4 0 0 1-.729 1.77 2.4 2.4 0 0 1-1.77.73m0-1.667q.354 0 .593-.24.24-.24.24-.593a.8.8 0 0 0-.24-.594.8.8 0 0 0-.593-.24.8.8 0 0 0-.594.24.8.8 0 0 0-.24.594q0 .354.24.594t.594.24m10 0q.354 0 .593-.24.24-.24.24-.593a.8.8 0 0 0-.24-.594.8.8 0 0 0-.593-.24.8.8 0 0 0-.594.24.8.8 0 0 0-.24.594q0 .354.24.594t.594.24m-.834-4.166h3.542l-1.875-2.5h-1.667z"/></symbol><symbol viewBox="0 0 24 24" id="update" xmlns="http://www.w3.org/2000/svg"><path d="M12 19.5a7.3 7.3 0 0 1-2.927-.594 7.6 7.6 0 0 1-2.375-1.604 7.6 7.6 0 0 1-1.604-2.375A7.3 7.3 0 0 1 4.5 12q0-1.562.594-2.927.593-1.365 1.604-2.375a7.6 7.6 0 0 1 2.375-1.604A7.3 7.3 0 0 1 12 4.5q1.708 0 3.24.73a7.3 7.3 0 0 1 2.593 2.062V5.333H19.5v5h-5V8.667h2.292a6.2 6.2 0 0 0-2.105-1.834A5.6 5.6 0 0 0 12 6.167q-2.437 0-4.135 1.698T6.167 12t1.698 4.135T12 17.833q2.188 0 3.823-1.416 1.636-1.418 1.927-3.584h1.708q-.312 2.855-2.448 4.76Q14.876 19.5 12 19.5m2.333-4-3.166-3.167v-4.5h1.666v3.834l2.667 2.666z"/></symbol><symbol viewBox="0 0 24 24" id="upload" xmlns="http://www.w3.org/2000/svg"><path d="M11.167 15.333V8.542L9 10.708 7.833 9.5 12 5.333 16.167 9.5 15 10.708l-2.167-2.166v6.791zM7 18.667q-.687 0-1.177-.49A1.6 1.6 0 0 1 5.333 17v-2.5H7V17h10v-2.5h1.667V17q0 .687-.49 1.177t-1.177.49z"/></symbol><symbol viewBox="0 0 24 24" id="upload-cloud" xmlns="http://www.w3.org/2000/svg"><path d="M11.167 18.667h-3.75q-1.896 0-3.24-1.313t-1.344-3.208q0-1.626.98-2.896a4.33 4.33 0 0 1 2.562-1.625 5.66 5.66 0 0 1 2.083-3.104A5.7 5.7 0 0 1 12 5.333q2.438 0 4.135 1.698 1.698 1.697 1.698 4.136a3.64 3.64 0 0 1 2.386 1.24q.948 1.072.948 2.51 0 1.562-1.094 2.656t-2.656 1.094h-4.584v-5.959L14.167 14l1.166-1.167L12 9.5l-3.333 3.333L9.833 14l1.334-1.292z"/></symbol><symbol viewBox="0 0 24 24" id="user" xmlns="http://www.w3.org/2000/svg"><path d="M12 12a3.2 3.2 0 0 1-2.354-.98 3.2 3.2 0 0 1-.98-2.353q0-1.376.98-2.354A3.2 3.2 0 0 1 12 5.333a3.2 3.2 0 0 1 2.354.98 3.2 3.2 0 0 1 .98 2.354 3.2 3.2 0 0 1-.98 2.354A3.2 3.2 0 0 1 12 12m-6.667 6.667v-2.334q0-.708.365-1.302a2.43 2.43 0 0 1 .969-.906q1.29-.645 2.625-.969A11.5 11.5 0 0 1 12 12.833q1.376 0 2.708.323 1.334.323 2.625.969.604.312.97.906.364.594.364 1.302v2.334z"/></symbol><symbol viewBox="0 0 24 24" id="user-add" xmlns="http://www.w3.org/2000/svg"><path d="M17.663 13.17v-2.003h-1.995V9.5h1.995v-2h1.667v2h1.998v1.667H19.33v2.003zM10.997 12a3.2 3.2 0 0 1-2.354-.98 3.2 3.2 0 0 1-.98-2.353q0-1.376.98-2.354a3.2 3.2 0 0 1 2.354-.98 3.2 3.2 0 0 1 2.354.98 3.2 3.2 0 0 1 .979 2.354 3.2 3.2 0 0 1-.98 2.354 3.2 3.2 0 0 1-2.353.979M4.33 18.667v-2.334q0-.708.365-1.302t.968-.906q1.292-.645 2.625-.969a11.5 11.5 0 0 1 2.709-.323q1.375 0 2.708.323t2.625.969q.604.312.969.906.364.594.364 1.302v2.334z"/></symbol><symbol viewBox="0 0 24 24" id="user-details" xmlns="http://www.w3.org/2000/svg"><path d="M10.854 12.938a2.4 2.4 0 0 1-1.77.729 2.4 2.4 0 0 1-1.772-.73 2.4 2.4 0 0 1-.729-1.77q0-1.042.73-1.771a2.4 2.4 0 0 1 1.77-.73 2.4 2.4 0 0 1 1.771.73 2.4 2.4 0 0 1 .73 1.77 2.4 2.4 0 0 1-.73 1.771m3.229 4.146v1.584h-10v-1.584q0-.437.209-.833.208-.396.583-.625a7.7 7.7 0 0 1 1.99-.844 8.6 8.6 0 0 1 2.218-.281q1.167 0 2.22.281a7.7 7.7 0 0 1 1.989.844q.375.23.583.625.208.396.208.833M19.917 12v1.667H13.25V12zm0-6.667V7h-10V5.333zm0 5h-6.75a5 5 0 0 0-.282-.895 3.1 3.1 0 0 0-.468-.771h7.5z"/></symbol><symbol viewBox="0 0 24 24" id="user-group" xmlns="http://www.w3.org/2000/svg"><path d="M2 17v-1.312q0-.897.917-1.459.916-.562 2.416-.562.27 0 .521.01.25.01.48.052-.292.438-.438.917t-.146 1V17zm5 0v-1.354q0-.667.365-1.219.364-.551 1.03-.969.668-.416 1.595-.625a9.2 9.2 0 0 1 2.01-.208q1.104 0 2.031.208.928.21 1.594.625.667.417 1.02.97.355.55.355 1.218V17zm11.25 0v-1.354q0-.542-.135-1.021a3.3 3.3 0 0 0-.407-.896q.23-.042.47-.052.238-.01.489-.01 1.5 0 2.416.552.917.551.917 1.469V17zM5.333 12.833q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.176q0-.709.49-1.188.49-.48 1.177-.479.709 0 1.188.48.48.478.479 1.187 0 .687-.48 1.177-.478.49-1.187.49m13.334 0q-.688 0-1.177-.49a1.6 1.6 0 0 1-.49-1.176q0-.709.49-1.188.489-.48 1.177-.479.708 0 1.187.48.48.478.48 1.187 0 .687-.48 1.177t-1.187.49M12 12a2.4 2.4 0 0 1-1.77-.73A2.4 2.4 0 0 1 9.5 9.5q0-1.062.73-1.781A2.43 2.43 0 0 1 12 7q1.062 0 1.781.719.72.719.719 1.781 0 1.042-.719 1.77Q13.062 12 12 12"/></symbol><symbol viewBox="0 0 24 24" id="user-id-badge" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M18.005 4.465c-.33-.33-.72-.49-1.18-.49h-9.66c-.46 0-.85.16-1.18.49s-.49.72-.49 1.18v12.71c0 .46.16.85.49 1.18s.72.49 1.18.49h9.67c.46 0 .85-.16 1.18-.49s.49-.72.49-1.18V5.645c0-.46-.16-.85-.49-1.18zm-7.51 1.18h3c.28 0 .5.22.5.5s-.22.5-.5.5h-3c-.28 0-.5-.22-.5-.5s.22-.5.5-.5m-.09 4.94q.66-.66 1.59-.66t1.59.66.66 1.59-.66 1.59-1.59.66-1.59-.66-.66-1.59.66-1.59m6.09 7.43h-9v-1.12c.58-.28 1.14-.52 1.89-.69.8-.19 1.68-.28 2.61-.28s1.81.09 2.61.28c.75.17 1.31.41 1.89.69z" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" id="user-id-card" xmlns="http://www.w3.org/2000/svg"><path d="M13.667 12.833h4.166v-1.666h-4.166zm0-2.5h4.166V8.667h-4.166zm-7.5 5h6.666v-.458q0-.937-.916-1.49-.917-.552-2.417-.552t-2.417.553q-.916.552-.916 1.489zM9.5 12q.687 0 1.177-.49.49-.489.49-1.177 0-.687-.49-1.177a1.6 1.6 0 0 0-1.177-.49q-.687 0-1.177.49t-.49 1.177.49 1.178T9.5 12m-4.167 6.667q-.687 0-1.177-.49A1.6 1.6 0 0 1 3.666 17V7q0-.687.49-1.177t1.177-.49h13.334q.687 0 1.177.49T20.334 7v10q0 .687-.49 1.177t-1.177.49z"/></symbol><symbol viewBox="0 0 24 24" id="user-recent" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 17.833q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.176V7.833q0-.687.49-1.177t1.177-.49h8.333q.688 0 1.177.49t.49 1.177v8.334q0 .687-.49 1.177-.489.49-1.177.49zm0-3.041a8.2 8.2 0 0 1 1.958-.834 8.2 8.2 0 0 1 2.209-.291q1.166 0 2.208.291a8.2 8.2 0 0 1 1.958.834V7.833H4.5zm4.167-1.75q-.959 0-1.625-.667a2.2 2.2 0 0 1-.667-1.625q0-.958.667-1.625a2.2 2.2 0 0 1 1.625-.667q.958 0 1.625.667.666.666.666 1.625 0 .958-.666 1.625a2.2 2.2 0 0 1-1.625.667m7.5 4.791V6.167h1.666v11.666zm3.333 0V6.167h1.667v11.666z"/></symbol><symbol viewBox="0 0 24 24" id="verified" xmlns="http://www.w3.org/2000/svg"><path d="m4 9.41 2.44-1.45.61-2.74 2.82.27L12 3.62l2.13 1.87 2.82-.27.61 2.74L20 9.41 18.9 12l1.1 2.59-2.44 1.45-.61 2.74-2.82-.27L12 20.38l-2.13-1.87-2.82.27-.61-2.74L4 14.59 5.1 12zm7.12 5.55 4.71-4.71-1.17-1.21-3.54 3.54-1.79-1.75L8.16 12z"/></symbol><symbol viewBox="0 0 24 24" id="video" xmlns="http://www.w3.org/2000/svg"><path d="M5.333 17.833q-.687 0-1.177-.49a1.6 1.6 0 0 1-.49-1.176V7.833q0-.687.49-1.177t1.177-.49h13.334q.687 0 1.177.49t.49 1.177v8.334q0 .687-.49 1.177t-1.177.49zm5-2.5 5-3.333-5-3.333z"/></symbol><symbol viewBox="0 0 24 24" id="view-cards" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 16.585v-2.5c0-.69.56-1.25 1.25-1.25h4.17c.69 0 1.25.56 1.25 1.25v2.5c0 .69-.56 1.25-1.25 1.25H5.75c-.69 0-1.25-.56-1.25-1.25m8.33 0v-2.5c0-.69.56-1.25 1.25-1.25h4.17c.69 0 1.25.56 1.25 1.25v2.5c0 .69-.56 1.25-1.25 1.25h-4.17c-.69 0-1.25-.56-1.25-1.25M4.5 9.915v-2.5c0-.69.56-1.25 1.25-1.25h4.17c.69 0 1.25.56 1.25 1.25v2.5c0 .69-.56 1.25-1.25 1.25H5.75c-.69 0-1.25-.56-1.25-1.25m8.33 0v-2.5c0-.69.56-1.25 1.25-1.25h4.17c.69 0 1.25.56 1.25 1.25v2.5c0 .69-.56 1.25-1.25 1.25h-4.17c-.69 0-1.25-.56-1.25-1.25"/></symbol><symbol viewBox="0 0 24 24" id="view-doc" xmlns="http://www.w3.org/2000/svg"><path d="M9.82 17.345c.33.33.72.49 1.18.49h7.33c.46 0 .85-.16 1.18-.49s.49-.72.49-1.18v-8.33c0-.46-.16-.85-.49-1.18s-.72-.49-1.18-.49H11c-.46 0-.85.16-1.18.49s-.49.72-.49 1.18v8.33c0 .46.16.85.49 1.18M7.67 7.085H4v1.25h3.67zM4 9.945h3.67v1.25H4zm3.67 2.86H4v1.25h3.67zm0 2.85H4v1.25h3.67z"/></symbol><symbol viewBox="0 0 24 24" id="view-grid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M18.25 5.75a1.23 1.23 0 0 0-.85-.35H6.6c-.32 0-.62.13-.85.35-.22.22-.35.53-.35.85v10.8c0 .32.13.62.35.85.23.22.53.35.85.35h10.8c.32 0 .62-.13.85-.35.23-.23.35-.53.35-.85V6.6c0-.32-.13-.62-.35-.85M7.07 7.07h4.33v4.33H7.07zm0 5.53h4.33v4.33H7.07zm5.53 0h4.33v4.33H12.6zm0-1.2V7.07h4.33v4.33z" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" id="view-rows" xmlns="http://www.w3.org/2000/svg"><path d="M5.42 6h13.16a.62.62 0 0 1 .62.62v3.81a.62.62 0 0 1-.62.62H5.42a.62.62 0 0 1-.62-.62V6.62A.62.62 0 0 1 5.42 6m0 6.95h13.16a.62.62 0 0 1 .62.62v3.81a.62.62 0 0 1-.62.62H5.42a.62.62 0 0 1-.62-.62v-3.81a.62.62 0 0 1 .62-.62"/></symbol><symbol viewBox="0 0 24 24" id="view-table" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M19.645 5.535H4.355c-.35 0-.62.28-.62.62v11.06c0 .69.56 1.25 1.25 1.25h14.03c.69 0 1.25-.56 1.25-1.25V6.155c0-.35-.28-.62-.62-.62m-1.04 7.67h-9v-2.4h9zm-13.2-3.6v-2.4h13.2v2.4zm3 3.6h-3v-2.4h3zm-3 1.2h3v2.4h-3zm4.2 2.4v-2.4h9v2.4z" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" id="wand" xmlns="http://www.w3.org/2000/svg"><path d="M21.375 13.875a.625.625 0 0 1-.625.625H19.5v1.25a.625.625 0 0 1-1.25 0V14.5H17a.625.625 0 1 1 0-1.25h1.25V12a.625.625 0 1 1 1.25 0v1.25h1.25a.625.625 0 0 1 .625.625m-15-6.25h1.25v1.25a.625.625 0 0 0 1.25 0v-1.25h1.25a.625.625 0 0 0 0-1.25h-1.25v-1.25a.625.625 0 0 0-1.25 0v1.25h-1.25a.625.625 0 0 0 0 1.25m10 9.375h-.625v-.625a.625.625 0 0 0-1.25 0V17h-.625a.625.625 0 1 0 0 1.25h.625v.625a.625.625 0 1 0 1.25 0v-.625h.625a.625.625 0 1 0 0-1.25m2.759-8.75L8.25 19.134a1.25 1.25 0 0 1-1.767 0l-1.617-1.616a1.25 1.25 0 0 1 0-1.768L15.75 4.866a1.25 1.25 0 0 1 1.768 0l1.616 1.616a1.25 1.25 0 0 1 0 1.768m-.884-.884L16.634 5.75l-2.5 2.5 1.616 1.616z"/></symbol><symbol viewBox="0 0 24 24" id="warning" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M20.16 16.31 13.6 4.92c-.16-.28-.4-.51-.68-.67S12.32 4 12 4s-.64.08-.92.25-.51.39-.68.67L3.84 16.31c-.16.27-.24.58-.24.89s.08.62.24.89c.16.28.4.51.68.67s.6.24.92.24h13.12c.32 0 .64-.08.92-.24s.51-.39.68-.67c.16-.27.24-.58.24-.89s-.08-.62-.24-.89m-7.57-.05c-.16.16-.36.24-.59.24s-.43-.08-.59-.24a.8.8 0 0 1-.24-.59c0-.23.08-.43.24-.59s.36-.24.59-.24.43.08.59.24.24.36.24.59-.08.43-.24.59m.24-2.26h-1.67V9.83h1.67z" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" id="weight" xmlns="http://www.w3.org/2000/svg"><path d="m19.97 17.76-1.74-7a.995.995 0 0 0-.97-.76h-3.04c.48-.53.78-1.23.78-2 0-1.66-1.34-3-3-3S9 6.34 9 8c0 .77.3 1.47.78 2H6.74c-.46 0-.86.31-.97.76l-1.74 7c-.16.63.32 1.24.97 1.24h14c.65 0 1.13-.61.97-1.24M12 7c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1"/></symbol><symbol viewBox="0 0 24 24" id="widgets" xmlns="http://www.w3.org/2000/svg"><path d="m15.333 13.375-4.708-4.708 4.708-4.709 4.709 4.709zM3.958 11.708V5.042h6.667v6.666zm8.334 8.334v-6.667h6.666v6.667zm-8.334 0v-6.667h6.667v6.667z"/></symbol><symbol viewBox="0 0 24 24" id="work-order" xmlns="http://www.w3.org/2000/svg"><path d="M5.188 19.5v-15H18.52v8.333H6.854V14.5h4.167v1.667H6.854v1.666h4.167V19.5zm9.5 0-2.334-2.333L13.521 16l1.166 1.167 2.959-2.959 1.166 1.167zm-7.834-8.333h4.167V9.5H6.854zm5.834 0h4.166V9.5h-4.166zM6.854 7.833h4.167V6.167H6.854zm5.834 0h4.166V6.167h-4.166z"/></symbol><symbol viewBox="0 0 24 24" id="wrench" xmlns="http://www.w3.org/2000/svg"><path d="M20.125 9.5a5.624 5.624 0 0 1-7.886 5.156l-4.067 4.705-.03.033a2.5 2.5 0 1 1-3.537-3.536q.016-.016.034-.03l4.705-4.067a5.63 5.63 0 0 1 6.526-7.717.625.625 0 0 1 .307 1.03L13.25 8.25l.442 2.059 2.058.441 3.176-2.931a.625.625 0 0 1 1.03.307q.17.676.169 1.374"/></symbol><symbol viewBox="0 0 24 24" id="wrench-2" xmlns="http://www.w3.org/2000/svg"><path d="m18.063 9.646-2.938-2.938-1.77 1.75-1.772-1.75 2.355-2.375a1.54 1.54 0 0 1 .562-.364 1.8 1.8 0 0 1 1.26 0q.303.115.532.364l1.77 1.771q.375.354.553.823.177.47.177.948 0 .48-.177.938a2.4 2.4 0 0 1-.552.833m-11.48 3.833a1.2 1.2 0 0 1-.375-.885q0-.51.375-.886l2.042-2.062 1.77 1.77-2.062 2.063q-.354.375-.864.375a1.2 1.2 0 0 1-.886-.375m-.895 6.188a1.9 1.9 0 0 1-.355-.552 1.65 1.65 0 0 1-.125-.636q0-.333.115-.635.114-.303.365-.552l5.895-5.875L8.938 8.75a1.14 1.14 0 0 1-.375-.865q0-.51.375-.885.354-.375.875-.375.52 0 .895.375l2.646 2.646 1.188-1.188 2.333 2.375a.8.8 0 0 1 .25.584.8.8 0 0 1-.25.583.8.8 0 0 1-.583.25.8.8 0 0 1-.584-.25l-7.666 7.667q-.25.25-.552.364a1.673 1.673 0 0 1-1.24-.01 1.8 1.8 0 0 1-.562-.354"/></symbol><symbol viewBox="0 0 24 24" id="x" xmlns="http://www.w3.org/2000/svg"><path d="m7.333 17.833-1.166-1.166L10.833 12 6.167 7.333l1.166-1.166L12 10.833l4.667-4.666 1.166 1.166L13.167 12l4.666 4.667-1.166 1.166L12 13.167z"/></symbol><symbol viewBox="0 0 24 24" id="zoom-in" xmlns="http://www.w3.org/2000/svg"><path d="M13.852 10.779a.615.615 0 0 1-.614.614h-1.844v1.845a.614.614 0 1 1-1.23 0v-1.844H8.32a.615.615 0 1 1 0-1.23h1.844V8.32a.615.615 0 0 1 1.23 0v1.844h1.844a.614.614 0 0 1 .614.615m5.968 9.04a.614.614 0 0 1-.87 0l-3.847-3.847a6.77 6.77 0 1 1 .87-.869l3.847 3.847a.614.614 0 0 1 0 .87m-9.041-3.508a5.533 5.533 0 1 0-5.533-5.532 5.54 5.54 0 0 0 5.533 5.532"/></symbol><symbol viewBox="0 0 24 24" id="zoom-out" xmlns="http://www.w3.org/2000/svg"><path d="M13.852 10.779a.615.615 0 0 1-.614.614H8.32a.615.615 0 1 1 0-1.229h4.918a.614.614 0 0 1 .614.615m5.968 9.04a.614.614 0 0 1-.87 0l-3.847-3.847a6.77 6.77 0 1 1 .87-.869l3.847 3.847a.614.614 0 0 1 0 .87m-9.041-3.508a5.533 5.533 0 1 0-5.533-5.532 5.54 5.54 0 0 0 5.533 5.532"/></symbol></svg>';
2132
+ let spriteInjected = false;
2133
+ function injectSprite() {
2134
+ if (spriteInjected || typeof document === "undefined") return;
2135
+ try {
2136
+ const container = document.createElement("div");
2137
+ container.style.display = "none";
2138
+ container.setAttribute("aria-hidden", "true");
2139
+ container.innerHTML = spriteContent;
2140
+ if (document.body) {
2141
+ document.body.insertBefore(container, document.body.firstChild);
2142
+ spriteInjected = true;
2143
+ }
2144
+ } catch (error) {
2145
+ console.error("Error injecting sprite:", error);
2146
+ }
2147
+ }
2148
+ const Icon = ({
2149
+ name,
2150
+ size = "24",
2151
+ fill = "current",
2152
+ ...props
2153
+ }) => {
2154
+ const [cssProps, otherProps] = splitCssProps(props);
2155
+ const { css: cssProp, ...styleProps } = cssProps;
2156
+ const className = css(cssProp, styleProps);
2157
+ useEffect(() => {
2158
+ injectSprite();
2159
+ }, []);
2160
+ return /* @__PURE__ */ jsx(
2161
+ Box,
2162
+ {
2163
+ as: "svg",
2164
+ viewBox: "0 0 24 24",
2165
+ xmlns: "http://www.w3.org/2000/svg",
2166
+ className: cx(icon({ size, fill }), className),
2167
+ ...otherProps,
2168
+ children: /* @__PURE__ */ jsx("use", { xlinkHref: `#${name}` })
2169
+ }
2170
+ );
2171
+ };
2172
+ const IconNames = {
2173
+ "aa-placeholder": "aa-placeholder",
2174
+ "alarm": "alarm",
2175
+ "alt-route": "alt-route",
2176
+ "apps": "apps",
2177
+ "arrow-bubble": "arrow-bubble",
2178
+ "arrow-down": "arrow-down",
2179
+ "arrow-drop-down": "arrow-drop-down",
2180
+ "arrow-drop-up": "arrow-drop-up",
2181
+ "arrow-left": "arrow-left",
2182
+ "arrow-line-down": "arrow-line-down",
2183
+ "arrow-line-left": "arrow-line-left",
2184
+ "arrow-line-right": "arrow-line-right",
2185
+ "arrow-line-up": "arrow-line-up",
2186
+ "arrow-prompt": "arrow-prompt",
2187
+ "arrow-redo": "arrow-redo",
2188
+ "arrow-right": "arrow-right",
2189
+ "arrow-square-in": "arrow-square-in",
2190
+ "arrow-square-out": "arrow-square-out",
2191
+ "arrow-undo": "arrow-undo",
2192
+ "arrow-up": "arrow-up",
2193
+ "arrows-down-up": "arrows-down-up",
2194
+ "arrows-left-right": "arrows-left-right",
2195
+ "asterisk": "asterisk",
2196
+ "at": "at",
2197
+ "attachment": "attachment",
2198
+ "bank": "bank",
2199
+ "barcode-reader": "barcode-reader",
2200
+ "barcode": "barcode",
2201
+ "barricade": "barricade",
2202
+ "basket": "basket",
2203
+ "bell-active": "bell-active",
2204
+ "bell-slash": "bell-slash",
2205
+ "bell": "bell",
2206
+ "bin": "bin",
2207
+ "blog-post": "blog-post",
2208
+ "blueprint": "blueprint",
2209
+ "book-a": "book-a",
2210
+ "book": "book",
2211
+ "bookmark-outlined": "bookmark-outlined",
2212
+ "bookmark": "bookmark",
2213
+ "bookmarks": "bookmarks",
2214
+ "broadcast": "broadcast",
2215
+ "Building": "Building",
2216
+ "calendar-add": "calendar-add",
2217
+ "calendar-view-day": "calendar-view-day",
2218
+ "calendar-view-month": "calendar-view-month",
2219
+ "calendar-view-week": "calendar-view-week",
2220
+ "calendar": "calendar",
2221
+ "caret-down": "caret-down",
2222
+ "caret-left": "caret-left",
2223
+ "caret-right": "caret-right",
2224
+ "caret-up": "caret-up",
2225
+ "cart": "cart",
2226
+ "certificate": "certificate",
2227
+ "check-all": "check-all",
2228
+ "check-thick": "check-thick",
2229
+ "check": "check",
2230
+ "checkbox-checked": "checkbox-checked",
2231
+ "checkbox-focus": "checkbox-focus",
2232
+ "checkbox-indeterminate": "checkbox-indeterminate",
2233
+ "checkbox": "checkbox",
2234
+ "circle-change": "circle-change",
2235
+ "circle-check": "circle-check",
2236
+ "circle": "circle",
2237
+ "circles-add": "circles-add",
2238
+ "circuit": "circuit",
2239
+ "clipboard": "clipboard",
2240
+ "clock-countdown": "clock-countdown",
2241
+ "clock": "clock",
2242
+ "cloud-synced": "cloud-synced",
2243
+ "code": "code",
2244
+ "color": "color",
2245
+ "compass": "compass",
2246
+ "cone": "cone",
2247
+ "confetti": "confetti",
2248
+ "copy": "copy",
2249
+ "credit-card": "credit-card",
2250
+ "cube-focus": "cube-focus",
2251
+ "cursor-click": "cursor-click",
2252
+ "cursor": "cursor",
2253
+ "cut": "cut",
2254
+ "data-object": "data-object",
2255
+ "database": "database",
2256
+ "devices": "devices",
2257
+ "dictionary": "dictionary",
2258
+ "dna": "dna",
2259
+ "donut": "donut",
2260
+ "dot": "dot",
2261
+ "dots": "dots",
2262
+ "download-cloud": "download-cloud",
2263
+ "download": "download",
2264
+ "edit": "edit",
2265
+ "encrypted": "encrypted",
2266
+ "envelope": "envelope",
2267
+ "equal": "equal",
2268
+ "eraser": "eraser",
2269
+ "error": "error",
2270
+ "event-list": "event-list",
2271
+ "export": "export",
2272
+ "extension": "extension",
2273
+ "eye-slash": "eye-slash",
2274
+ "eye": "eye",
2275
+ "faq": "faq",
2276
+ "file-add": "file-add",
2277
+ "file": "file",
2278
+ "files": "files",
2279
+ "filter-remove": "filter-remove",
2280
+ "filter": "filter",
2281
+ "finish": "finish",
2282
+ "fit-screen": "fit-screen",
2283
+ "flag-checkered": "flag-checkered",
2284
+ "flag": "flag",
2285
+ "forklift": "forklift",
2286
+ "fullscreen-exit": "fullscreen-exit",
2287
+ "fullscreen": "fullscreen",
2288
+ "garage": "garage",
2289
+ "gauge": "gauge",
2290
+ "globe-grid": "globe-grid",
2291
+ "globe": "globe",
2292
+ "gripper": "gripper",
2293
+ "handle-vertical": "handle-vertical",
2294
+ "handle": "handle",
2295
+ "hash": "hash",
2296
+ "heart-outlined": "heart-outlined",
2297
+ "heart": "heart",
2298
+ "help": "help",
2299
+ "history": "history",
2300
+ "home": "home",
2301
+ "image": "image",
2302
+ "images": "images",
2303
+ "inbox": "inbox",
2304
+ "infinity": "infinity",
2305
+ "info": "info",
2306
+ "inventory": "inventory",
2307
+ "invoice": "invoice",
2308
+ "jump-back": "jump-back",
2309
+ "jump-forward": "jump-forward",
2310
+ "kanban": "kanban",
2311
+ "kbd-backspace": "kbd-backspace",
2312
+ "kbd-capslock": "kbd-capslock",
2313
+ "kbd-command": "kbd-command",
2314
+ "kbd-control": "kbd-control",
2315
+ "kbd-hide": "kbd-hide",
2316
+ "kbd-option": "kbd-option",
2317
+ "kbd-return": "kbd-return",
2318
+ "kbd-shift": "kbd-shift",
2319
+ "kbd-space": "kbd-space",
2320
+ "kbd": "kbd",
2321
+ "lightning": "lightning",
2322
+ "line-segment": "line-segment",
2323
+ "line-segments": "line-segments",
2324
+ "link-slash": "link-slash",
2325
+ "link": "link",
2326
+ "linked-services": "linked-services",
2327
+ "list-bullets": "list-bullets",
2328
+ "list-checks": "list-checks",
2329
+ "list-numbers": "list-numbers",
2330
+ "lock-open": "lock-open",
2331
+ "lock": "lock",
2332
+ "map-pin": "map-pin",
2333
+ "map": "map",
2334
+ "mark-unread": "mark-unread",
2335
+ "menu-close": "menu-close",
2336
+ "menu": "menu",
2337
+ "message": "message",
2338
+ "messages": "messages",
2339
+ "minus-thick": "minus-thick",
2340
+ "minus": "minus",
2341
+ "money": "money",
2342
+ "monitor": "monitor",
2343
+ "moon": "moon",
2344
+ "navigation": "navigation",
2345
+ "network-x": "network-x",
2346
+ "network": "network",
2347
+ "newspaper-clipping": "newspaper-clipping",
2348
+ "newspaper": "newspaper",
2349
+ "note-stack": "note-stack",
2350
+ "note": "note",
2351
+ "notepad": "notepad",
2352
+ "notification": "notification",
2353
+ "nut": "nut",
2354
+ "order": "order",
2355
+ "package": "package",
2356
+ "page-first": "page-first",
2357
+ "page-last": "page-last",
2358
+ "parts": "parts",
2359
+ "password": "password",
2360
+ "path": "path",
2361
+ "pause": "pause",
2362
+ "pencil": "pencil",
2363
+ "percent": "percent",
2364
+ "play-pause": "play-pause",
2365
+ "play": "play",
2366
+ "plus": "plus",
2367
+ "printer": "printer",
2368
+ "prohibit": "prohibit",
2369
+ "question-mark": "question-mark",
2370
+ "quote": "quote",
2371
+ "radio-checked": "radio-checked",
2372
+ "radio-focus": "radio-focus",
2373
+ "radio": "radio",
2374
+ "read-doc": "read-doc",
2375
+ "receipt": "receipt",
2376
+ "recycle": "recycle",
2377
+ "refresh": "refresh",
2378
+ "repeat": "repeat",
2379
+ "reply-all": "reply-all",
2380
+ "reply": "reply",
2381
+ "resize": "resize",
2382
+ "ribbon": "ribbon",
2383
+ "rows-add": "rows-add",
2384
+ "ruler": "ruler",
2385
+ "rules": "rules",
2386
+ "scale": "scale",
2387
+ "schedule-backward": "schedule-backward",
2388
+ "schedule-forward": "schedule-forward",
2389
+ "screwdriver": "screwdriver",
2390
+ "scroll": "scroll",
2391
+ "search-check": "search-check",
2392
+ "search-items": "search-items",
2393
+ "search-objects": "search-objects",
2394
+ "search": "search",
2395
+ "send": "send",
2396
+ "settings": "settings",
2397
+ "shapes": "shapes",
2398
+ "share": "share",
2399
+ "shuffle": "shuffle",
2400
+ "signpost": "signpost",
2401
+ "skip-back": "skip-back",
2402
+ "skip-forward": "skip-forward",
2403
+ "skull": "skull",
2404
+ "sliders": "sliders",
2405
+ "sort-alpha-down": "sort-alpha-down",
2406
+ "sort-alpha-up": "sort-alpha-up",
2407
+ "sort-ascending": "sort-ascending",
2408
+ "sort-descending": "sort-descending",
2409
+ "sort-time-down": "sort-time-down",
2410
+ "sort-time-up": "sort-time-up",
2411
+ "square-add": "square-add",
2412
+ "square-inside": "square-inside",
2413
+ "square-select": "square-select",
2414
+ "square": "square",
2415
+ "stamp": "stamp",
2416
+ "star-outlined": "star-outlined",
2417
+ "star": "star",
2418
+ "start": "start",
2419
+ "step": "step",
2420
+ "stop": "stop",
2421
+ "story": "story",
2422
+ "strategy": "strategy",
2423
+ "success": "success",
2424
+ "sun": "sun",
2425
+ "support": "support",
2426
+ "sync": "sync",
2427
+ "tag": "tag",
2428
+ "target-2": "target-2",
2429
+ "target": "target",
2430
+ "task-alt": "task-alt",
2431
+ "text-add": "text-add",
2432
+ "textbox": "textbox",
2433
+ "time-add": "time-add",
2434
+ "timer": "timer",
2435
+ "toolbox": "toolbox",
2436
+ "tools": "tools",
2437
+ "trash": "trash",
2438
+ "trophy": "trophy",
2439
+ "truck-trailer": "truck-trailer",
2440
+ "update": "update",
2441
+ "upload-cloud": "upload-cloud",
2442
+ "upload": "upload",
2443
+ "user-add": "user-add",
2444
+ "user-details": "user-details",
2445
+ "user-group": "user-group",
2446
+ "user-id-badge": "user-id-badge",
2447
+ "user-id-card": "user-id-card",
2448
+ "user-recent": "user-recent",
2449
+ "user": "user",
2450
+ "verified": "verified",
2451
+ "video": "video",
2452
+ "view-cards": "view-cards",
2453
+ "view-doc": "view-doc",
2454
+ "view-grid": "view-grid",
2455
+ "view-rows": "view-rows",
2456
+ "view-table": "view-table",
2457
+ "wand": "wand",
2458
+ "warning": "warning",
2459
+ "weight": "weight",
2460
+ "widgets": "widgets",
2461
+ "work-order": "work-order",
2462
+ "wrench-2": "wrench-2",
2463
+ "wrench": "wrench",
2464
+ "x": "x",
2465
+ "zoom-in": "zoom-in",
2466
+ "zoom-out": "zoom-out"
2467
+ };
2468
+ const IconButton = React.forwardRef(
2469
+ ({
2470
+ variant,
2471
+ size,
2472
+ href,
2473
+ className,
2474
+ children,
2475
+ loading,
2476
+ disabled,
2477
+ iconName,
2478
+ ...props
2479
+ }, ref) => {
2480
+ const trulyDisabled = loading || disabled;
2481
+ const asComponent = href ? "a" : "button";
2482
+ const iconSize = size === "small" ? "22" : "24";
2483
+ const content = children ?? (iconName ? /* @__PURE__ */ jsx(Icon, { name: iconName, size: iconSize }) : null);
2484
+ return (
2485
+ // @ts-expect-error - Polymorphic type inference issue
2486
+ /* @__PURE__ */ jsx(
2487
+ Box,
2488
+ {
2489
+ as: asComponent,
2490
+ ref,
2491
+ href,
2492
+ disabled: trulyDisabled,
2493
+ "aria-disabled": trulyDisabled,
2494
+ className: cx(iconButton({ variant, size }), className),
2495
+ type: asComponent === "button" ? "button" : void 0,
2496
+ ...props,
2497
+ children: /* @__PURE__ */ jsx(ButtonContent, { loading: !!loading, children: content })
2498
+ }
2499
+ )
2500
+ );
2501
+ }
2502
+ );
2503
+ const Code = ({
2504
+ lang,
2505
+ children,
2506
+ ...props
2507
+ }) => {
2508
+ const [className, otherProps] = splitProps(props);
2509
+ return /* @__PURE__ */ jsx(
2510
+ Box,
2511
+ {
2512
+ as: "code",
2513
+ className: cx(code({}), className),
2514
+ lang,
2515
+ ...otherProps,
2516
+ children: /* @__PURE__ */ jsx(Text, { children })
2517
+ }
2518
+ );
2519
+ };
2520
+ const Pre = ({
2521
+ children,
2522
+ lang,
2523
+ ...props
2524
+ }) => {
2525
+ const [className, otherProps] = splitProps(props);
2526
+ return /* @__PURE__ */ jsx(Box, { as: "pre", className: cx(pre({}), className), ...otherProps, children: /* @__PURE__ */ jsx(Code, { lang, slot: "react", bg: "transparent", ...otherProps, children }) });
2527
+ };
2528
+ const Heading = ({
2529
+ level = "h2",
2530
+ children,
2531
+ ...props
2532
+ }) => {
2533
+ const [className, otherProps] = splitProps(props);
2534
+ return /* @__PURE__ */ jsx(
2535
+ Text,
2536
+ {
2537
+ as: level,
2538
+ className: cx(heading({ level }), className),
2539
+ ...otherProps,
2540
+ children
2541
+ }
2542
+ );
2543
+ };
2544
+ const Link = ({
2545
+ href,
2546
+ external,
2547
+ disabled,
2548
+ children,
2549
+ size,
2550
+ family,
2551
+ weight,
2552
+ italic,
2553
+ bold,
2554
+ ...props
2555
+ }) => {
2556
+ const [className, otherProps] = splitProps(props);
2557
+ const handleClick = (e) => {
2558
+ if (disabled) {
2559
+ e.preventDefault();
2560
+ e.stopPropagation();
2561
+ }
2562
+ };
2563
+ return /* @__PURE__ */ jsxs(
2564
+ Box,
2565
+ {
2566
+ as: "a",
2567
+ href,
2568
+ target: external ? "_blank" : void 0,
2569
+ rel: external ? "noopener noreferrer" : void 0,
2570
+ "aria-disabled": disabled,
2571
+ className: cx(link({ family, italic, bold }), className),
2572
+ fontSize: size,
2573
+ fontWeight: weight,
2574
+ onClick: handleClick,
2575
+ ...otherProps,
2576
+ children: [
2577
+ children,
2578
+ external && /* @__PURE__ */ jsx(Icon, { name: "arrow-square-out", size: "20" })
2579
+ ]
2580
+ }
2581
+ );
2582
+ };
2583
+ const Label = ({
2584
+ htmlFor,
2585
+ children,
2586
+ ...props
2587
+ }) => {
2588
+ const [className, otherProps] = splitProps(props);
2589
+ return /* @__PURE__ */ jsx(
2590
+ Box,
2591
+ {
2592
+ htmlFor,
2593
+ as: "label",
2594
+ className: cx(label({}), className),
2595
+ ...otherProps,
2596
+ children
2597
+ }
2598
+ );
2599
+ };
2600
+ const Divider = ({
2601
+ direction,
2602
+ weight,
2603
+ ...props
2604
+ }) => {
2605
+ const [className, otherProps] = splitProps(props);
2606
+ return /* @__PURE__ */ jsx(
2607
+ Box,
2608
+ {
2609
+ as: "div",
2610
+ className: cx(divider({ direction, weight }), className),
2611
+ ...otherProps
2612
+ }
2613
+ );
2614
+ };
2615
+ const Checkbox = ({
2616
+ indeterminate,
2617
+ error,
2618
+ id,
2619
+ name,
2620
+ checked,
2621
+ onChange,
2622
+ ...props
2623
+ }) => {
2624
+ const { container, input, indicator } = checkbox({});
2625
+ const iconName = indeterminate ? "checkbox-indeterminate" : checked ? "checkbox-checked" : "checkbox";
2626
+ return /* @__PURE__ */ jsxs(Box, { className: container, ...error && { "data-error": true }, children: [
2627
+ /* @__PURE__ */ jsx(
2628
+ Box,
2629
+ {
2630
+ as: "input",
2631
+ type: "checkbox",
2632
+ className: input,
2633
+ name,
2634
+ id,
2635
+ checked,
2636
+ onChange,
2637
+ ...indeterminate && { "data-indeterminate": true },
2638
+ ...error && { "data-error": true },
2639
+ ...props
2640
+ }
2641
+ ),
2642
+ /* @__PURE__ */ jsx(Icon, { className: indicator, name: iconName }),
2643
+ /* @__PURE__ */ jsx(Icon, { className: indicator, name: "checkbox-focus" })
2644
+ ] });
2645
+ };
2646
+ const Radio = ({ id, name, error, ...props }) => {
2647
+ const { container, input, indicator } = radio({});
2648
+ return /* @__PURE__ */ jsxs(Label, { className: container, htmlFor: id, children: [
2649
+ /* @__PURE__ */ jsx(
2650
+ Box,
2651
+ {
2652
+ as: "input",
2653
+ type: "radio",
2654
+ id,
2655
+ name,
2656
+ "aria-label": name,
2657
+ className: input,
2658
+ ...props,
2659
+ ...error && { "data-error": true }
2660
+ }
2661
+ ),
2662
+ /* @__PURE__ */ jsx(Icon, { className: indicator, name: "radio" }),
2663
+ /* @__PURE__ */ jsx(Icon, { className: indicator, name: "radio-checked" }),
2664
+ /* @__PURE__ */ jsx(Icon, { className: indicator, name: "radio-focus" })
2665
+ ] });
2666
+ };
2667
+ const TextInput = ({
2668
+ size,
2669
+ error,
2670
+ autoSize = false,
2671
+ id,
2672
+ name,
2673
+ "aria-describedby": ariaDescribedBy,
2674
+ ...props
2675
+ }) => {
2676
+ const [className, otherProps] = splitProps(props);
2677
+ return /* @__PURE__ */ jsx(
2678
+ Box,
2679
+ {
2680
+ as: "input",
2681
+ id,
2682
+ "aria-label": name,
2683
+ "aria-invalid": error || void 0,
2684
+ "aria-describedby": ariaDescribedBy,
2685
+ ...error && { "data-error": true },
2686
+ className: cx(textinput({ size, autoSize }), className),
2687
+ ...otherProps
2688
+ }
2689
+ );
2690
+ };
2691
+ const Textarea = ({
2692
+ error,
2693
+ autoSize = false,
2694
+ id,
2695
+ name,
2696
+ disabled,
2697
+ ...props
2698
+ }) => {
2699
+ const [className, otherProps] = splitProps(props);
2700
+ return /* @__PURE__ */ jsx(
2701
+ Box,
2702
+ {
2703
+ as: "textarea",
2704
+ id,
2705
+ name,
2706
+ ...error && { "data-error": true },
2707
+ "aria-disabled": disabled,
2708
+ className: cx(textarea({ autoGrow: autoSize }), className),
2709
+ ...otherProps
2710
+ }
2711
+ );
2712
+ };
2713
+ Textarea.displayName = "Textarea";
2714
+ const Card = ({
2715
+ variant,
2716
+ href,
2717
+ children,
2718
+ disabled,
2719
+ grabbed,
2720
+ ...props
2721
+ }) => {
2722
+ const [className, otherProps] = splitProps(props);
2723
+ return /* @__PURE__ */ jsx(
2724
+ Box,
2725
+ {
2726
+ as: href ? "a" : "button",
2727
+ disabled,
2728
+ "aria-disabled": disabled,
2729
+ "data-grabbed": grabbed,
2730
+ className: cx(card({ variant }), className),
2731
+ ...href ? { href } : { type: "button" },
2732
+ ...otherProps,
2733
+ children
2734
+ }
2735
+ );
2736
+ };
2737
+ const Toggle = ({
2738
+ name,
2739
+ id,
2740
+ error,
2741
+ disabled,
2742
+ checked,
2743
+ ...props
2744
+ }) => {
2745
+ const { container, input, indicator, background } = toggle({});
2746
+ return /* @__PURE__ */ jsxs(
2747
+ Label,
2748
+ {
2749
+ className: container,
2750
+ ...disabled && { "data-disabled": true },
2751
+ color: { base: "gray.90", _dark: "gray.0" },
2752
+ children: [
2753
+ /* @__PURE__ */ jsx(
2754
+ Box,
2755
+ {
2756
+ as: "input",
2757
+ type: "checkbox",
2758
+ name,
2759
+ id,
2760
+ "aria-label": name,
2761
+ className: input,
2762
+ ...checked ? { "data-checked": true } : {},
2763
+ ...error ? { "data-error": true } : {},
2764
+ ...props
2765
+ }
2766
+ ),
2767
+ /* @__PURE__ */ jsx(Box, { as: "span", className: background, name: "toggle-bg" }),
2768
+ /* @__PURE__ */ jsx(Icon, { name: "circle", className: indicator }),
2769
+ /* @__PURE__ */ jsx(
2770
+ Icon,
2771
+ {
2772
+ name: "circle-check",
2773
+ className: indicator
2774
+ }
2775
+ )
2776
+ ]
2777
+ }
2778
+ );
2779
+ };
2780
+ const ToggleInput = ({
2781
+ name,
2782
+ id,
2783
+ children,
2784
+ error,
2785
+ ...props
2786
+ }) => {
2787
+ const [className, otherProps] = splitProps(props);
2788
+ return /* @__PURE__ */ jsxs(
2789
+ Label,
2790
+ {
2791
+ className: cx(toggleInput({}), className),
2792
+ ...otherProps,
2793
+ htmlFor: id,
2794
+ children: [
2795
+ /* @__PURE__ */ jsx(
2796
+ Toggle,
2797
+ {
2798
+ id,
2799
+ name,
2800
+ ...error && { "data-error": true },
2801
+ ...props
2802
+ }
2803
+ ),
2804
+ children && /* @__PURE__ */ jsx("div", { children })
2805
+ ]
2806
+ }
2807
+ );
2808
+ };
2809
+ const RadioInput = ({
2810
+ id,
2811
+ name,
2812
+ variant,
2813
+ children,
2814
+ error,
2815
+ ...props
2816
+ }) => {
2817
+ const [className, otherProps] = splitProps(props);
2818
+ return /* @__PURE__ */ jsxs(
2819
+ Label,
2820
+ {
2821
+ className: cx(radioInput({ variant }), className),
2822
+ ...otherProps,
2823
+ htmlFor: id,
2824
+ children: [
2825
+ /* @__PURE__ */ jsx(
2826
+ Radio,
2827
+ {
2828
+ name,
2829
+ id,
2830
+ ...error && { "data-error": true },
2831
+ ...props
2832
+ }
2833
+ ),
2834
+ children && /* @__PURE__ */ jsx(Box, { as: "div", children })
2835
+ ]
2836
+ }
2837
+ );
2838
+ };
2839
+ const CheckboxInput = ({
2840
+ id,
2841
+ name,
2842
+ children,
2843
+ error,
2844
+ indeterminate,
2845
+ checked,
2846
+ onChange,
2847
+ ...props
2848
+ }) => {
2849
+ const [className, otherProps] = splitProps(props);
2850
+ return /* @__PURE__ */ jsxs(
2851
+ Label,
2852
+ {
2853
+ className: cx(checkboxInput(), className),
2854
+ ...otherProps,
2855
+ htmlFor: id,
2856
+ children: [
2857
+ /* @__PURE__ */ jsx(
2858
+ Checkbox,
2859
+ {
2860
+ id,
2861
+ name,
2862
+ error,
2863
+ checked,
2864
+ onChange,
2865
+ indeterminate,
2866
+ ...props
2867
+ }
2868
+ ),
2869
+ children
2870
+ ]
2871
+ }
2872
+ );
2873
+ };
2874
+ const THEME_STORAGE_KEY = "okshaun-theme-preference";
2875
+ function getInitialTheme() {
2876
+ const storedTheme = localStorage.getItem(THEME_STORAGE_KEY);
2877
+ if (storedTheme) {
2878
+ return storedTheme;
2879
+ }
2880
+ if (window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches) {
2881
+ return "dark";
2882
+ }
2883
+ return "light";
2884
+ }
2885
+ const ThemeContext = createContext(void 0);
2886
+ function ThemeProvider({ children }) {
2887
+ const [theme, setThemeState] = useState(() => getInitialTheme());
2888
+ const setTheme = (newTheme) => {
2889
+ setThemeState(newTheme);
2890
+ localStorage.setItem(THEME_STORAGE_KEY, newTheme);
2891
+ };
2892
+ useEffect(() => {
2893
+ document.documentElement.removeAttribute("data-color-mode");
2894
+ document.documentElement.removeAttribute("data-theme");
2895
+ document.documentElement.setAttribute("data-color-mode", theme);
2896
+ }, [theme]);
2897
+ useEffect(() => {
2898
+ const mediaQuery = window.matchMedia("(prefers-color-scheme: dark)");
2899
+ const handleChange = (e) => {
2900
+ const storedTheme = localStorage.getItem(THEME_STORAGE_KEY);
2901
+ if (!storedTheme) {
2902
+ setThemeState(e.matches ? "dark" : "light");
2903
+ }
2904
+ };
2905
+ mediaQuery.addEventListener("change", handleChange);
2906
+ return () => mediaQuery.removeEventListener("change", handleChange);
2907
+ }, []);
2908
+ return /* @__PURE__ */ jsx(ThemeContext.Provider, { value: { theme, setTheme }, children });
2909
+ }
2910
+ function useTheme() {
2911
+ const context2 = useContext(ThemeContext);
2912
+ if (context2 === void 0) {
2913
+ throw new Error("useTheme must be used within a ThemeProvider");
2914
+ }
2915
+ return context2;
2916
+ }
2917
+ const themeSwitchStyles = css({
2918
+ position: "relative",
2919
+ borderWidth: "2",
2920
+ borderStyle: "solid",
2921
+ borderColor: { base: "gray.30", _dark: "gray.70" },
2922
+ color: "transparent",
2923
+ margin: "8",
2924
+ borderRadius: "100",
2925
+ cursor: "pointer",
2926
+ display: "grid",
2927
+ lineHeight: "none",
2928
+ width: "14",
2929
+ height: "14",
2930
+ transition: "all",
2931
+ "&:before": {
2932
+ content: '""',
2933
+ position: "absolute",
2934
+ inset: "0",
2935
+ opacity: 0,
2936
+ display: "block",
2937
+ borderRadius: "100",
2938
+ backgroundColor: { base: "gray.98", _dark: "gray.5" },
2939
+ transition: "all",
2940
+ transitionTimingFunction: "default",
2941
+ transitionDuration: "slow"
2942
+ },
2943
+ _hover: {
2944
+ cursor: "pointer",
2945
+ bg: { base: "gray.90", _dark: "gray.5" },
2946
+ borderColor: { base: "gray.90", _dark: "gray.5" },
2947
+ "&:before": {
2948
+ inset: "-8",
2949
+ opacity: 0.25
2950
+ }
2951
+ }
2952
+ });
2953
+ function ThemeSwitcher() {
2954
+ const { theme, setTheme } = useTheme();
2955
+ const toggleTheme = () => {
2956
+ setTheme(theme === "light" ? "dark" : "light");
2957
+ };
2958
+ return /* @__PURE__ */ jsx(
2959
+ "button",
2960
+ {
2961
+ className: themeSwitchStyles,
2962
+ onClick: toggleTheme,
2963
+ "aria-label": `Switch to ${theme === "light" ? "dark" : "light"} theme`,
2964
+ children: /* @__PURE__ */ jsx("span", {})
2965
+ }
2966
+ );
2967
+ }
2968
+ const Tooltip = ({
2969
+ trigger = "onHover",
2970
+ caret = true,
2971
+ text: text2,
2972
+ title,
2973
+ children,
2974
+ position = "bottom",
2975
+ ...props
2976
+ }) => {
2977
+ const [currentPlacement, setCurrentPlacement] = useState(position);
2978
+ const { wrapper, tooltipContent } = tooltip({
2979
+ position: currentPlacement,
2980
+ caret
2981
+ });
2982
+ const [show, setShow] = useState(false);
2983
+ const tooltipRef = useRef(null);
2984
+ const triggerRef = useRef(null);
2985
+ const resolvedPlacement = typeof position === "string" ? position : "bottom";
2986
+ const clockWisePlacement = [
2987
+ "bottom",
2988
+ "bottom-start",
2989
+ "bottom-end",
2990
+ "left",
2991
+ "left-start",
2992
+ "left-end",
2993
+ "top",
2994
+ "top-start",
2995
+ "top-end",
2996
+ "right",
2997
+ "right-start",
2998
+ "right-end"
2999
+ ];
3000
+ function getClockwise(start) {
3001
+ const index = clockWisePlacement.indexOf(start);
3002
+ if (index === -1) return clockWisePlacement;
3003
+ const reordered = [
3004
+ ...clockWisePlacement.slice(index + 1),
3005
+ ...clockWisePlacement.slice(0, index)
3006
+ ];
3007
+ return reordered;
3008
+ }
3009
+ const checkPosition = () => {
3010
+ const tooltipPositioning = tooltipRef.current;
3011
+ const triggerPositioning = triggerRef.current;
3012
+ if (!tooltipPositioning || !triggerPositioning) return;
3013
+ const triggerRect = triggerPositioning.getBoundingClientRect();
3014
+ const fallbacks = getClockwise(resolvedPlacement);
3015
+ for (const positioning of [resolvedPlacement, ...fallbacks]) {
3016
+ const tooltipRect = getSimulatedRect(
3017
+ triggerRect,
3018
+ tooltipPositioning.offsetWidth,
3019
+ tooltipPositioning.offsetHeight,
3020
+ positioning
3021
+ );
3022
+ const fits = tooltipRect.top >= 0 && tooltipRect.left >= 0 && tooltipRect.bottom <= window.innerHeight && tooltipRect.right <= window.innerWidth;
3023
+ if (fits) {
3024
+ setCurrentPlacement(positioning);
3025
+ return;
3026
+ }
3027
+ }
3028
+ setCurrentPlacement(resolvedPlacement);
3029
+ };
3030
+ function getSimulatedRect(triggerRect, tooltipWidth, tooltipHeight, place) {
3031
+ const gap = 8;
3032
+ const verticalCenter = triggerRect.left + triggerRect.width / 2 - tooltipWidth / 2;
3033
+ const horizontalCenter = triggerRect.top + triggerRect.height / 2 - tooltipHeight / 2;
3034
+ switch (place) {
3035
+ case "top":
3036
+ return {
3037
+ top: triggerRect.top - tooltipHeight - gap,
3038
+ bottom: triggerRect.top - gap,
3039
+ left: verticalCenter,
3040
+ right: verticalCenter + tooltipWidth
3041
+ };
3042
+ case "top-start":
3043
+ return {
3044
+ top: triggerRect.top - tooltipHeight - gap,
3045
+ bottom: triggerRect.top - gap,
3046
+ left: triggerRect.left,
3047
+ right: triggerRect.left + tooltipWidth
3048
+ };
3049
+ case "top-end":
3050
+ return {
3051
+ top: triggerRect.top - tooltipHeight - gap,
3052
+ bottom: triggerRect.top - gap,
3053
+ left: triggerRect.right - tooltipWidth,
3054
+ right: triggerRect.right
3055
+ };
3056
+ case "bottom":
3057
+ return {
3058
+ top: triggerRect.bottom + gap,
3059
+ bottom: triggerRect.bottom + tooltipHeight + gap,
3060
+ left: verticalCenter,
3061
+ right: verticalCenter + tooltipWidth
3062
+ };
3063
+ case "bottom-start":
3064
+ return {
3065
+ top: triggerRect.bottom + gap,
3066
+ bottom: triggerRect.bottom + gap + tooltipHeight,
3067
+ left: triggerRect.left,
3068
+ right: triggerRect.left + tooltipWidth
3069
+ };
3070
+ case "bottom-end":
3071
+ return {
3072
+ top: triggerRect.bottom + gap,
3073
+ bottom: triggerRect.bottom + gap + tooltipHeight,
3074
+ left: triggerRect.right - tooltipWidth,
3075
+ right: triggerRect.right
3076
+ };
3077
+ case "left":
3078
+ return {
3079
+ top: horizontalCenter,
3080
+ bottom: horizontalCenter + tooltipHeight,
3081
+ left: triggerRect.left - tooltipWidth - gap,
3082
+ right: triggerRect.left - gap
3083
+ };
3084
+ case "left-start":
3085
+ return {
3086
+ top: triggerRect.top,
3087
+ bottom: triggerRect.top + tooltipHeight,
3088
+ left: triggerRect.left - tooltipWidth - gap,
3089
+ right: triggerRect.left - gap
3090
+ };
3091
+ case "left-end":
3092
+ return {
3093
+ top: triggerRect.bottom - tooltipHeight,
3094
+ bottom: triggerRect.bottom,
3095
+ left: triggerRect.left - tooltipWidth - gap,
3096
+ right: triggerRect.left - gap
3097
+ };
3098
+ case "right":
3099
+ return {
3100
+ top: horizontalCenter,
3101
+ bottom: horizontalCenter + tooltipHeight,
3102
+ left: triggerRect.right + gap,
3103
+ right: triggerRect.right + gap + tooltipWidth
3104
+ };
3105
+ case "right-start":
3106
+ return {
3107
+ top: triggerRect.top,
3108
+ bottom: triggerRect.top + tooltipHeight,
3109
+ left: triggerRect.right + gap,
3110
+ right: triggerRect.right + gap + tooltipWidth
3111
+ };
3112
+ case "right-end":
3113
+ return {
3114
+ top: triggerRect.bottom - tooltipHeight,
3115
+ bottom: triggerRect.bottom,
3116
+ left: triggerRect.right + gap,
3117
+ right: triggerRect.right + gap + tooltipWidth
3118
+ };
3119
+ default:
3120
+ return { top: 0, bottom: 0, left: 0, right: 0 };
3121
+ }
3122
+ }
3123
+ useEffect(() => {
3124
+ if (show) {
3125
+ checkPosition();
3126
+ window.addEventListener("resize", checkPosition);
3127
+ return () => window.removeEventListener("resize", checkPosition);
3128
+ }
3129
+ }, [show, position]);
3130
+ useEffect(() => {
3131
+ if (trigger !== "onClick") return;
3132
+ const handleClickOutside = (event) => {
3133
+ if (tooltipRef.current && !tooltipRef.current.contains(event.target) && triggerRef.current && !triggerRef.current.contains(event.target)) {
3134
+ setShow(false);
3135
+ }
3136
+ };
3137
+ document.addEventListener("mousedown", handleClickOutside);
3138
+ return () => document.removeEventListener("mousedown", handleClickOutside);
3139
+ }, [trigger]);
3140
+ const handleMouseEnter = () => {
3141
+ if (trigger === "onHover") setShow(true);
3142
+ };
3143
+ const handleMouseLeave = () => {
3144
+ if (trigger === "onHover") setShow(false);
3145
+ };
3146
+ const handleClick = () => {
3147
+ if (trigger === "onClick") setShow((prev) => !prev);
3148
+ };
3149
+ return /* @__PURE__ */ jsxs(Box, { ...props, className: wrapper, children: [
3150
+ /* @__PURE__ */ jsx(
3151
+ Box,
3152
+ {
3153
+ ref: triggerRef,
3154
+ onMouseEnter: trigger === "onHover" ? handleMouseEnter : void 0,
3155
+ onMouseLeave: trigger === "onHover" ? handleMouseLeave : void 0,
3156
+ onClick: trigger === "onClick" ? handleClick : void 0,
3157
+ children
3158
+ }
3159
+ ),
3160
+ show && /* @__PURE__ */ jsxs(Box, { className: tooltipContent, ref: tooltipRef, children: [
3161
+ title && /* @__PURE__ */ jsx(
3162
+ Text,
3163
+ {
3164
+ as: "p",
3165
+ textStyle: "body-md",
3166
+ bold: true,
3167
+ color: { base: "gray.0", _dark: "gray.90" },
3168
+ children: title
3169
+ }
3170
+ ),
3171
+ text2 && /* @__PURE__ */ jsx(
3172
+ Text,
3173
+ {
3174
+ as: "span",
3175
+ textStyle: "body-sm",
3176
+ color: { base: "gray.0", _dark: "gray.90" },
3177
+ children: text2
3178
+ }
3179
+ )
3180
+ ] })
3181
+ ] });
3182
+ };
3183
+ const Breadcrumbs = ({
3184
+ items,
3185
+ ...props
3186
+ }) => {
3187
+ const [className, otherProps] = splitProps(props);
3188
+ return /* @__PURE__ */ jsx(Text, { as: "ul", className: cx(breadcrumbs({}), className), ...otherProps, children: items == null ? void 0 : items.map((item, index) => /* @__PURE__ */ jsxs(Text, { as: "li", children: [
3189
+ item.href ? /* @__PURE__ */ jsx(Link, { family: "mono", size: "14", href: item.href, children: item.label }) : /* @__PURE__ */ jsx(Text, { weight: "bold", family: "mono", size: "14", children: item.label }),
3190
+ index < (items == null ? void 0 : items.length) - 1 && /* @__PURE__ */ jsx(Text, { as: "span", family: "mono", size: "14", children: "/" })
3191
+ ] }, item.id)) });
3192
+ };
3193
+ const Tag = ({
3194
+ variant,
3195
+ hue,
3196
+ iconPosition = "left",
3197
+ children,
3198
+ iconName,
3199
+ ...props
3200
+ }) => {
3201
+ const [className, otherProps] = splitProps(props);
3202
+ const hasIcon = !!iconName;
3203
+ return /* @__PURE__ */ jsxs(
3204
+ Box,
3205
+ {
3206
+ as: "span",
3207
+ className: cx(tag({ variant, hue, iconPosition, hasIcon }), className),
3208
+ ...otherProps,
3209
+ children: [
3210
+ iconName && /* @__PURE__ */ jsx(Icon, { name: iconName, width: 20, height: 20 }),
3211
+ children
3212
+ ]
3213
+ }
3214
+ );
3215
+ };
3216
+ const Menu = ({
3217
+ menuSection,
3218
+ iconPlacement,
3219
+ variant,
3220
+ multiSelectType,
3221
+ onChange
3222
+ }) => {
3223
+ var _a;
3224
+ const {
3225
+ wrapper,
3226
+ wrapperInner,
3227
+ sectionTitle,
3228
+ menuItem,
3229
+ menuLabel,
3230
+ menuDescription,
3231
+ parentLabel,
3232
+ multiLevelIcon,
3233
+ dividerSection,
3234
+ spacerSection,
3235
+ iconSection
3236
+ } = menu({
3237
+ iconPlacement,
3238
+ multiSelectType
3239
+ });
3240
+ const [selected, setSelected] = useState([]);
3241
+ const [isChildren, setIsChildren] = useState([
3242
+ { menu: menuSection, parentLabel: null }
3243
+ ]);
3244
+ const current = isChildren[isChildren.length - 1];
3245
+ const handleSelect = (id) => {
3246
+ if (variant === "single-select") {
3247
+ if (selected.includes(id)) {
3248
+ setSelected([]);
3249
+ onChange == null ? void 0 : onChange(null);
3250
+ } else {
3251
+ setSelected([id]);
3252
+ onChange == null ? void 0 : onChange(id);
3253
+ }
3254
+ } else {
3255
+ setSelected(
3256
+ (prev) => prev.includes(id) ? prev.filter((x) => x !== id) : [...prev, id]
3257
+ );
3258
+ onChange == null ? void 0 : onChange(
3259
+ selected.includes(id) ? selected.filter((x) => x !== id) : [...selected, id]
3260
+ );
3261
+ }
3262
+ };
3263
+ const handleOpenSubmenu = (children, parentLabel2) => {
3264
+ if (children)
3265
+ setIsChildren([...isChildren, { menu: children, parentLabel: parentLabel2 }]);
3266
+ };
3267
+ const handleBack = () => {
3268
+ setIsChildren(isChildren.slice(0, -1));
3269
+ };
3270
+ return /* @__PURE__ */ jsxs(Box, { className: wrapper, children: [
3271
+ isChildren.length > 1 && /* @__PURE__ */ jsxs(
3272
+ Text,
3273
+ {
3274
+ onClick: handleBack,
3275
+ className: parentLabel,
3276
+ textStyle: { base: "body-lg", md: "body-md" },
3277
+ color: { base: "gray.90", _dark: "gray.0" },
3278
+ children: [
3279
+ /* @__PURE__ */ jsx(Icon, { name: "caret-left" }),
3280
+ (current == null ? void 0 : current.parentLabel) || "Back"
3281
+ ]
3282
+ }
3283
+ ),
3284
+ /* @__PURE__ */ jsx(
3285
+ Box,
3286
+ {
3287
+ "data-anim": isChildren.length > 1 ? "slide-left" : void 0,
3288
+ className: wrapperInner,
3289
+ children: (_a = current == null ? void 0 : current.menu) == null ? void 0 : _a.map((section) => {
3290
+ var _a2;
3291
+ return /* @__PURE__ */ jsxs(Box, { children: [
3292
+ section.title && /* @__PURE__ */ jsx(Box, { className: sectionTitle, children: /* @__PURE__ */ jsx(Text, { textStyle: "body-xs", children: section == null ? void 0 : section.title }) }),
3293
+ /* @__PURE__ */ jsx(Box, { children: (_a2 = section == null ? void 0 : section.items) == null ? void 0 : _a2.map((item) => {
3294
+ var _a3;
3295
+ const hasChildren = !!((_a3 = item.children) == null ? void 0 : _a3.length);
3296
+ const isSelected = selected.includes(item.id);
3297
+ const isDisabled = !!(item == null ? void 0 : item.disabled);
3298
+ const activateItem = () => {
3299
+ if (isDisabled) return;
3300
+ if (item == null ? void 0 : item.children) {
3301
+ handleOpenSubmenu(item.children, item.label);
3302
+ } else {
3303
+ handleSelect(item.id);
3304
+ }
3305
+ };
3306
+ return /* @__PURE__ */ jsxs(
3307
+ Box,
3308
+ {
3309
+ color: { base: "gray.100", _dark: "gray.90" },
3310
+ className: menuItem,
3311
+ tabIndex: isDisabled ? -1 : 0,
3312
+ disabled: item == null ? void 0 : item.disabled,
3313
+ "aria-disabled": item == null ? void 0 : item.disabled,
3314
+ "data-selected": isSelected,
3315
+ onClick: activateItem,
3316
+ onKeyDown: (e) => {
3317
+ if (e.key === " " || e.key === "Spacebar" || e.key === "Enter") {
3318
+ e.preventDefault();
3319
+ activateItem();
3320
+ }
3321
+ },
3322
+ role: "button",
3323
+ "aria-pressed": isSelected,
3324
+ children: [
3325
+ (iconPlacement || (item == null ? void 0 : item.iconName)) && /* @__PURE__ */ jsx(
3326
+ Box,
3327
+ {
3328
+ className: iconSection,
3329
+ color: { base: "gray.90", _dark: "gray.0" },
3330
+ children: (item == null ? void 0 : item.iconName) && /* @__PURE__ */ jsx(Icon, { name: `${item == null ? void 0 : item.iconName}` })
3331
+ }
3332
+ ),
3333
+ variant === "multi-select" && multiSelectType === "checkbox" && !(section == null ? void 0 : section.link) && /* @__PURE__ */ jsx(
3334
+ Checkbox,
3335
+ {
3336
+ name: item.id,
3337
+ checked: isSelected,
3338
+ onChange: () => handleSelect(item.id)
3339
+ }
3340
+ ),
3341
+ variant === "multi-select" && multiSelectType === "toggle" && !(section == null ? void 0 : section.link) && /* @__PURE__ */ jsx(
3342
+ Toggle,
3343
+ {
3344
+ name: "menu-toggle",
3345
+ checked: isSelected,
3346
+ onChange: () => handleSelect(item.id)
3347
+ }
3348
+ ),
3349
+ !(section == null ? void 0 : section.link) && /* @__PURE__ */ jsxs(Box, { children: [
3350
+ /* @__PURE__ */ jsx(
3351
+ Text,
3352
+ {
3353
+ textStyle: { base: "body-lg", md: "body-md" },
3354
+ className: menuLabel,
3355
+ color: { base: "gray.90", _dark: "gray.5" },
3356
+ children: item == null ? void 0 : item.label
3357
+ }
3358
+ ),
3359
+ (item == null ? void 0 : item.description) && /* @__PURE__ */ jsx(Text, { textStyle: "body-xs", className: menuDescription, children: item == null ? void 0 : item.description })
3360
+ ] }),
3361
+ (section == null ? void 0 : section.link) && /* @__PURE__ */ jsxs(
3362
+ Link,
3363
+ {
3364
+ href: `${item == null ? void 0 : item.href}`,
3365
+ color: { base: "gray.90", _dark: "gray.0" },
3366
+ children: [
3367
+ item == null ? void 0 : item.label,
3368
+ " ",
3369
+ /* @__PURE__ */ jsx(Icon, { name: "arrow-square-out" })
3370
+ ]
3371
+ }
3372
+ ),
3373
+ hasChildren && /* @__PURE__ */ jsx(
3374
+ Box,
3375
+ {
3376
+ className: multiLevelIcon,
3377
+ color: { base: "gray.90", _dark: "gray.0" },
3378
+ children: /* @__PURE__ */ jsx(Icon, { name: "caret-right" })
3379
+ }
3380
+ )
3381
+ ]
3382
+ },
3383
+ item == null ? void 0 : item.id
3384
+ );
3385
+ }) }),
3386
+ (section == null ? void 0 : section.divider) && /* @__PURE__ */ jsx(Box, { className: dividerSection, children: /* @__PURE__ */ jsx(Divider, { color: { base: "gray.10", _dark: "gray.60" } }) }),
3387
+ (section == null ? void 0 : section.spacer) && /* @__PURE__ */ jsx(Box, { className: spacerSection })
3388
+ ] }, section.id);
3389
+ })
3390
+ }
3391
+ )
3392
+ ] });
3393
+ };
3394
+ export {
3395
+ Badge,
3396
+ Box,
3397
+ Breadcrumbs,
3398
+ Button,
3399
+ Card,
3400
+ Checkbox,
3401
+ CheckboxInput,
3402
+ Divider,
3403
+ Heading,
3404
+ Icon,
3405
+ IconButton,
3406
+ IconNames,
3407
+ Label,
3408
+ Link,
3409
+ Menu,
3410
+ Pre,
3411
+ Radio,
3412
+ RadioInput,
3413
+ Spinner,
3414
+ Tag,
3415
+ Text,
3416
+ TextInput,
3417
+ Textarea,
3418
+ ThemeProvider,
3419
+ ThemeSwitcher,
3420
+ Toggle,
3421
+ ToggleInput,
3422
+ Tooltip,
3423
+ useTheme
3424
+ };
3425
+ //# sourceMappingURL=index.js.map