@okshaun/components 0.5.8 → 1.0.1

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.
Files changed (129) hide show
  1. package/README.md +22 -26
  2. package/dist/.mcp.json +11 -0
  3. package/dist/index.d.ts +3 -1268
  4. package/dist/index.js +1231 -957
  5. package/dist/index.js.map +1 -1
  6. package/dist/okshaun-logo-white.svg +11 -0
  7. package/dist/okshaun-logo.svg +11 -0
  8. package/dist/preset-BzrKiUEH.js +8452 -0
  9. package/dist/preset-BzrKiUEH.js.map +1 -0
  10. package/dist/preset.js +3 -7234
  11. package/dist/preset.js.map +1 -1
  12. package/dist/specs/animation-styles.json +4 -0
  13. package/dist/specs/color-palette.json +98 -0
  14. package/dist/specs/conditions.json +1901 -0
  15. package/dist/specs/keyframes.json +137 -0
  16. package/dist/specs/layer-styles.json +23 -0
  17. package/dist/specs/patterns.json +475 -0
  18. package/dist/specs/recipes.json +907 -0
  19. package/dist/specs/semantic-tokens.json +2837 -0
  20. package/dist/specs/text-styles.json +149 -0
  21. package/dist/specs/tokens.json +2750 -0
  22. package/dist/sprite.svg +1 -1
  23. package/dist/sprite.symbol.html +14 -14
  24. package/dist/styles/global.css +148 -0
  25. package/dist/styles/recipes/avatar.css +185 -0
  26. package/dist/styles/recipes/badge.css +85 -0
  27. package/dist/styles/recipes/breadcrumbs.css +38 -0
  28. package/dist/styles/recipes/button.css +195 -0
  29. package/dist/styles/recipes/card.css +57 -0
  30. package/dist/styles/recipes/checkbox-input.css +12 -0
  31. package/dist/styles/recipes/checkbox.css +90 -0
  32. package/dist/styles/recipes/chip.css +137 -0
  33. package/dist/styles/recipes/code.css +12 -0
  34. package/dist/styles/recipes/divider.css +43 -0
  35. package/dist/styles/recipes/form-field.css +39 -0
  36. package/dist/styles/recipes/heading.css +40 -0
  37. package/dist/styles/recipes/icon-button.css +181 -0
  38. package/dist/styles/recipes/label.css +14 -0
  39. package/dist/styles/recipes/link.css +49 -0
  40. package/dist/styles/recipes/menu.css +141 -0
  41. package/dist/styles/recipes/modal.css +99 -0
  42. package/dist/styles/recipes/pre.css +16 -0
  43. package/dist/styles/recipes/radio-input.css +7 -0
  44. package/dist/styles/recipes/radio.css +82 -0
  45. package/dist/styles/recipes/select.css +103 -0
  46. package/dist/styles/recipes/spinner.css +36 -0
  47. package/dist/styles/recipes/tag.css +27 -0
  48. package/dist/styles/recipes/text.css +46 -0
  49. package/dist/styles/recipes/textarea.css +91 -0
  50. package/dist/styles/recipes/textinput.css +87 -0
  51. package/dist/styles/recipes/theme-switcher.css +53 -0
  52. package/dist/styles/recipes/toggle-input.css +12 -0
  53. package/dist/styles/recipes/toggle.css +125 -0
  54. package/dist/styles/recipes/tooltip.css +133 -0
  55. package/dist/styles/recipes.css +30 -0
  56. package/dist/styles/reset.css +1 -0
  57. package/dist/styles/tokens.css +1016 -0
  58. package/dist/styles/utilities.css +1694 -0
  59. package/dist/styles.css +7 -0
  60. package/dist/svgs/building.svg +1 -0
  61. package/dist/types/index.d.ts +21626 -0
  62. package/dist/types/preset.d.ts +19 -0
  63. package/package.json +37 -35
  64. package/src/recipes/avatar.ts +205 -0
  65. package/src/recipes/badge.ts +203 -0
  66. package/src/recipes/box.ts +13 -0
  67. package/src/recipes/breadcrumbs.ts +29 -0
  68. package/src/recipes/button.ts +319 -0
  69. package/src/recipes/card.ts +148 -0
  70. package/src/recipes/checkbox.ts +87 -0
  71. package/src/recipes/checkboxinput.ts +15 -0
  72. package/src/recipes/chip.ts +189 -0
  73. package/src/recipes/code.ts +35 -0
  74. package/src/recipes/divider.ts +41 -0
  75. package/src/recipes/formField.ts +60 -0
  76. package/src/recipes/index.ts +28 -0
  77. package/src/recipes/menu.ts +205 -0
  78. package/src/recipes/modal.ts +120 -0
  79. package/src/recipes/radio.ts +71 -0
  80. package/src/recipes/radioinput.ts +12 -0
  81. package/src/recipes/select.ts +142 -0
  82. package/src/recipes/spinner.ts +52 -0
  83. package/src/recipes/tag.ts +262 -0
  84. package/src/recipes/text.ts +193 -0
  85. package/src/recipes/textarea.ts +153 -0
  86. package/src/recipes/textinput.ts +100 -0
  87. package/src/recipes/themeSwitcher.ts +48 -0
  88. package/src/recipes/toggle.ts +116 -0
  89. package/src/recipes/toggleinput.ts +16 -0
  90. package/src/recipes/tooltip.ts +359 -0
  91. package/src/styles/index.css +1 -0
  92. package/src/styles/primitives/animations.ts +16 -0
  93. package/src/styles/primitives/aspectRatios.ts +22 -0
  94. package/src/styles/primitives/blurs.ts +25 -0
  95. package/src/styles/primitives/borderWidths.ts +10 -0
  96. package/src/styles/primitives/borders.ts +36 -0
  97. package/src/styles/primitives/colors.ts +228 -0
  98. package/src/styles/primitives/durations.ts +25 -0
  99. package/src/styles/primitives/easings.ts +19 -0
  100. package/src/styles/primitives/fontSizes.ts +16 -0
  101. package/src/styles/primitives/fontWeights.ts +9 -0
  102. package/src/styles/primitives/fonts.ts +18 -0
  103. package/src/styles/primitives/index.ts +46 -0
  104. package/src/styles/primitives/letterSpacings.ts +22 -0
  105. package/src/styles/primitives/lineHeights.ts +16 -0
  106. package/src/styles/primitives/radii.ts +14 -0
  107. package/src/styles/primitives/shadows.ts +73 -0
  108. package/src/styles/primitives/sizes.ts +86 -0
  109. package/src/styles/primitives/spacings.ts +7 -0
  110. package/src/styles/semantics/colors.ts +774 -0
  111. package/src/styles/semantics/index.ts +2 -0
  112. package/src/styles/semantics/shadows.ts +32 -0
  113. package/src/styles/utilities/breakpoints.ts +8 -0
  114. package/src/styles/utilities/conditions.ts +140 -0
  115. package/src/styles/utilities/containerSizes.ts +17 -0
  116. package/src/styles/utilities/filters.ts +12 -0
  117. package/src/styles/utilities/globalStyle.ts +93 -0
  118. package/src/styles/utilities/index.ts +9 -0
  119. package/src/styles/utilities/keyframes.ts +89 -0
  120. package/src/styles/utilities/layerStyles.ts +18 -0
  121. package/src/styles/utilities/textStyles.ts +135 -0
  122. package/src/styles/utilities/transitions.ts +92 -0
  123. package/src/utils/injectSprite.ts +36 -0
  124. package/src/utils/splitProps.ts +19 -0
  125. package/src/utils/spriteContent.ts +4 -0
  126. package/dist/panda.buildinfo.json +0 -448
  127. package/dist/preset.d.ts +0 -5
  128. package/dist/transitions-DUgH88VW.js +0 -1041
  129. package/dist/transitions-DUgH88VW.js.map +0 -1
package/dist/index.js CHANGED
@@ -1,8 +1,9 @@
1
1
  import * as React from "react";
2
- import React__default, { forwardRef, useMemo, createElement, useEffect, useState, useRef, createContext, useContext, useCallback, useLayoutEffect, useId as useId$1, useSyncExternalStore } from "react";
2
+ import React__default, { forwardRef, useMemo, createElement, useEffect, useState, useRef, useCallback, createContext, useContext, useLayoutEffect, useId as useId$1, Children, isValidElement, cloneElement, useSyncExternalStore } from "react";
3
3
  import { jsx, jsxs, Fragment } from "react/jsx-runtime";
4
4
  import * as ReactDOM from "react-dom";
5
- import { b as breakpoints, c as containerSizes } from "./transitions-DUgH88VW.js";
5
+ import { b as breakpoints, c as containerSizes } from "./preset-BzrKiUEH.js";
6
+ import { o } from "./preset-BzrKiUEH.js";
6
7
  function isObject(value) {
7
8
  return typeof value === "object" && value != null && !Array.isArray(value);
8
9
  }
@@ -239,7 +240,7 @@ function normalizeHTMLProps(props) {
239
240
  return Object.fromEntries(Object.entries(props).map(([key, value]) => [convert(key), value]));
240
241
  }
241
242
  normalizeHTMLProps.keys = htmlProps;
242
- 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,_deleted,_collapsed,_error,_paused,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,@/2xs,@/xs,@/sm,@/md,@/lg,@/xl,@/2xl,@/3xl,@/4xl,@/5xl,@/6xl,@/7xl,@/8xl,base";
243
+ 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,_deleted,_collapsed,_utility,_error,_paused,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,@/2xs,@/xs,@/sm,@/md,@/lg,@/xl,@/2xl,@/3xl,@/4xl,@/5xl,@/6xl,@/7xl,@/8xl,base";
243
244
  const conditions = new Set(conditionsStr.split(","));
244
245
  const conditionRegex = /^@|&|&$/;
245
246
  function isCondition(value) {
@@ -267,7 +268,7 @@ function sortConditions(paths) {
267
268
  return 0;
268
269
  });
269
270
  }
270
- 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:transition-property,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,filtersProperty:filters,textStyle:textStyle,layerStyle:layerStyle";
271
+ 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,WebkitTextFillColor:wktf-c,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:transition-property,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,filtersProperty:filters,textStyle:textStyle,layerStyle:layerStyle";
271
272
  const classNameByProp = /* @__PURE__ */ new Map();
272
273
  const shorthands = /* @__PURE__ */ new Map();
273
274
  utilities.split(",").forEach((utility) => {
@@ -486,11 +487,11 @@ const breadcrumbs = /* @__PURE__ */ Object.assign(memo(breadcrumbsFn.recipeFn),
486
487
  getVariantProps: breadcrumbsFn.getVariantProps
487
488
  });
488
489
  const cardFn = /* @__PURE__ */ createRecipe("card", {
489
- "appearance": "default",
490
+ "variant": "default",
490
491
  "interactive": false
491
492
  }, [
492
493
  {
493
- "appearance": "default",
494
+ "variant": "default",
494
495
  "interactive": true,
495
496
  "css": {
496
497
  "cursor": "pointer",
@@ -514,7 +515,7 @@ const cardFn = /* @__PURE__ */ createRecipe("card", {
514
515
  }
515
516
  },
516
517
  {
517
- "appearance": "flat",
518
+ "variant": "flat",
518
519
  "interactive": true,
519
520
  "css": {
520
521
  "cursor": "pointer",
@@ -538,7 +539,7 @@ const cardFn = /* @__PURE__ */ createRecipe("card", {
538
539
  }
539
540
  },
540
541
  {
541
- "appearance": "sunken",
542
+ "variant": "sunken",
542
543
  "interactive": true,
543
544
  "css": {
544
545
  "cursor": "pointer",
@@ -562,7 +563,7 @@ const cardFn = /* @__PURE__ */ createRecipe("card", {
562
563
  }
563
564
  },
564
565
  {
565
- "appearance": "ghost",
566
+ "variant": "ghost",
566
567
  "interactive": true,
567
568
  "css": {
568
569
  "cursor": "pointer",
@@ -586,7 +587,7 @@ const cardFn = /* @__PURE__ */ createRecipe("card", {
586
587
  }
587
588
  },
588
589
  {
589
- "appearance": "overlay",
590
+ "variant": "overlay",
590
591
  "interactive": true,
591
592
  "css": {
592
593
  "_disabled": {
@@ -598,7 +599,7 @@ const cardFn = /* @__PURE__ */ createRecipe("card", {
598
599
  }
599
600
  ]);
600
601
  const cardVariantMap = {
601
- "appearance": [
602
+ "variant": [
602
603
  "default",
603
604
  "flat",
604
605
  "sunken",
@@ -703,6 +704,9 @@ const headingVariantMap = {
703
704
  "h2",
704
705
  "h3",
705
706
  "h4"
707
+ ],
708
+ "allcaps": [
709
+ "true"
706
710
  ]
707
711
  };
708
712
  const headingVariantKeys = Object.keys(headingVariantMap);
@@ -742,6 +746,33 @@ const labelVariantMap = {
742
746
  "underline": [
743
747
  "true"
744
748
  ],
749
+ "truncate": [
750
+ "true"
751
+ ],
752
+ "allcaps": [
753
+ "true"
754
+ ],
755
+ "size": [
756
+ "12",
757
+ "14",
758
+ "16",
759
+ "20",
760
+ "24",
761
+ "32",
762
+ "40",
763
+ "48",
764
+ "64",
765
+ "72",
766
+ "80",
767
+ "96"
768
+ ],
769
+ "weight": [
770
+ "light",
771
+ "normal",
772
+ "medium",
773
+ "bold",
774
+ "black"
775
+ ],
745
776
  "_disabled": [
746
777
  "true"
747
778
  ]
@@ -783,6 +814,33 @@ const linkVariantMap = {
783
814
  "underline": [
784
815
  "true"
785
816
  ],
817
+ "truncate": [
818
+ "true"
819
+ ],
820
+ "allcaps": [
821
+ "true"
822
+ ],
823
+ "size": [
824
+ "12",
825
+ "14",
826
+ "16",
827
+ "20",
828
+ "24",
829
+ "32",
830
+ "40",
831
+ "48",
832
+ "64",
833
+ "72",
834
+ "80",
835
+ "96"
836
+ ],
837
+ "weight": [
838
+ "light",
839
+ "normal",
840
+ "medium",
841
+ "bold",
842
+ "black"
843
+ ],
786
844
  "_disabled": [
787
845
  "true"
788
846
  ]
@@ -840,13 +898,14 @@ const radioInput = /* @__PURE__ */ Object.assign(memo(radioInputFn.recipeFn), {
840
898
  getVariantProps: radioInputFn.getVariantProps
841
899
  });
842
900
  const spinnerFn = /* @__PURE__ */ createRecipe("spinner", {
843
- "size": "standard"
901
+ "size": "md"
844
902
  }, []);
845
903
  const spinnerVariantMap = {
846
904
  "size": [
847
- "standard",
848
- "small",
849
- "large"
905
+ "xs",
906
+ "sm",
907
+ "md",
908
+ "lg"
850
909
  ],
851
910
  "inverse": [
852
911
  "true"
@@ -1263,6 +1322,33 @@ const textVariantMap = {
1263
1322
  ],
1264
1323
  "underline": [
1265
1324
  "true"
1325
+ ],
1326
+ "truncate": [
1327
+ "true"
1328
+ ],
1329
+ "allcaps": [
1330
+ "true"
1331
+ ],
1332
+ "size": [
1333
+ "12",
1334
+ "14",
1335
+ "16",
1336
+ "20",
1337
+ "24",
1338
+ "32",
1339
+ "40",
1340
+ "48",
1341
+ "64",
1342
+ "72",
1343
+ "80",
1344
+ "96"
1345
+ ],
1346
+ "weight": [
1347
+ "light",
1348
+ "normal",
1349
+ "medium",
1350
+ "bold",
1351
+ "black"
1266
1352
  ]
1267
1353
  };
1268
1354
  const textVariantKeys = Object.keys(textVariantMap);
@@ -1282,14 +1368,18 @@ const text = /* @__PURE__ */ Object.assign(memo(textFn.recipeFn), {
1282
1368
  getVariantProps: textFn.getVariantProps
1283
1369
  });
1284
1370
  const textareaFn = /* @__PURE__ */ createRecipe("textarea", {
1285
- "size": "medium"
1371
+ "size": "md"
1286
1372
  }, []);
1287
1373
  const textareaVariantMap = {
1288
1374
  "size": [
1289
- "medium",
1290
- "small",
1291
- "large",
1292
- "xlarge"
1375
+ "md",
1376
+ "sm",
1377
+ "lg",
1378
+ "xl"
1379
+ ],
1380
+ "autoSize": [
1381
+ "false",
1382
+ "true"
1293
1383
  ]
1294
1384
  };
1295
1385
  const textareaVariantKeys = Object.keys(textareaVariantMap);
@@ -1309,14 +1399,18 @@ const textarea = /* @__PURE__ */ Object.assign(memo(textareaFn.recipeFn), {
1309
1399
  getVariantProps: textareaFn.getVariantProps
1310
1400
  });
1311
1401
  const textinputFn = /* @__PURE__ */ createRecipe("textinput", {
1312
- "size": "medium"
1402
+ "size": "md"
1313
1403
  }, []);
1314
1404
  const textinputVariantMap = {
1315
1405
  "size": [
1316
- "medium",
1317
- "small",
1318
- "large",
1319
- "xlarge"
1406
+ "md",
1407
+ "sm",
1408
+ "lg",
1409
+ "xl"
1410
+ ],
1411
+ "autoSize": [
1412
+ "false",
1413
+ "true"
1320
1414
  ]
1321
1415
  };
1322
1416
  const textinputVariantKeys = Object.keys(textinputVariantMap);
@@ -1373,7 +1467,7 @@ const toggleInput = /* @__PURE__ */ Object.assign(memo(toggleInputFn.recipeFn),
1373
1467
  });
1374
1468
  const badgeDefaultVariants = {
1375
1469
  "size": "md",
1376
- "appearance": "danger"
1470
+ "variant": "danger"
1377
1471
  };
1378
1472
  const badgeCompoundVariants = [
1379
1473
  {
@@ -1425,9 +1519,9 @@ const badgeVariantKeys = [
1425
1519
  "size",
1426
1520
  "standalone",
1427
1521
  "dot",
1428
- "appearance"
1522
+ "variant"
1429
1523
  ];
1430
- const getVariantProps$b = (variants) => ({ ...badgeDefaultVariants, ...compact(variants) });
1524
+ const getVariantProps$c = (variants) => ({ ...badgeDefaultVariants, ...compact(variants) });
1431
1525
  const badge = /* @__PURE__ */ Object.assign(badgeFn, {
1432
1526
  __recipe__: false,
1433
1527
  __name__: "badge",
@@ -1448,7 +1542,7 @@ const badge = /* @__PURE__ */ Object.assign(badgeFn, {
1448
1542
  "true",
1449
1543
  "false"
1450
1544
  ],
1451
- "appearance": [
1545
+ "variant": [
1452
1546
  "neutral",
1453
1547
  "subtle",
1454
1548
  "inverted",
@@ -1462,15 +1556,15 @@ const badge = /* @__PURE__ */ Object.assign(badgeFn, {
1462
1556
  splitVariantProps(props) {
1463
1557
  return splitProps$1(props, badgeVariantKeys);
1464
1558
  },
1465
- getVariantProps: getVariantProps$b
1559
+ getVariantProps: getVariantProps$c
1466
1560
  });
1467
1561
  const buttonDefaultVariants = {
1468
- "appearance": "default",
1469
- "size": "default"
1562
+ "variant": "default",
1563
+ "size": "md"
1470
1564
  };
1471
1565
  const buttonCompoundVariants = [
1472
1566
  {
1473
- "size": "default",
1567
+ "size": "md",
1474
1568
  "iconBefore": true,
1475
1569
  "css": {
1476
1570
  "container": {
@@ -1479,7 +1573,7 @@ const buttonCompoundVariants = [
1479
1573
  }
1480
1574
  },
1481
1575
  {
1482
- "size": "default",
1576
+ "size": "md",
1483
1577
  "iconAfter": true,
1484
1578
  "css": {
1485
1579
  "container": {
@@ -1488,7 +1582,7 @@ const buttonCompoundVariants = [
1488
1582
  }
1489
1583
  },
1490
1584
  {
1491
- "size": "small",
1585
+ "size": "sm",
1492
1586
  "iconBefore": true,
1493
1587
  "css": {
1494
1588
  "container": {
@@ -1497,7 +1591,7 @@ const buttonCompoundVariants = [
1497
1591
  }
1498
1592
  },
1499
1593
  {
1500
- "size": "small",
1594
+ "size": "sm",
1501
1595
  "iconAfter": true,
1502
1596
  "css": {
1503
1597
  "container": {
@@ -1506,7 +1600,7 @@ const buttonCompoundVariants = [
1506
1600
  }
1507
1601
  },
1508
1602
  {
1509
- "size": "large",
1603
+ "size": "lg",
1510
1604
  "iconBefore": true,
1511
1605
  "css": {
1512
1606
  "container": {
@@ -1515,7 +1609,7 @@ const buttonCompoundVariants = [
1515
1609
  }
1516
1610
  },
1517
1611
  {
1518
- "size": "large",
1612
+ "size": "lg",
1519
1613
  "iconAfter": true,
1520
1614
  "css": {
1521
1615
  "container": {
@@ -1524,7 +1618,7 @@ const buttonCompoundVariants = [
1524
1618
  }
1525
1619
  },
1526
1620
  {
1527
- "size": "xlarge",
1621
+ "size": "xl",
1528
1622
  "iconBefore": true,
1529
1623
  "css": {
1530
1624
  "container": {
@@ -1533,7 +1627,7 @@ const buttonCompoundVariants = [
1533
1627
  }
1534
1628
  },
1535
1629
  {
1536
- "size": "xlarge",
1630
+ "size": "xl",
1537
1631
  "iconAfter": true,
1538
1632
  "css": {
1539
1633
  "container": {
@@ -1557,12 +1651,12 @@ const buttonFn = memo((props = {}) => {
1557
1651
  return Object.fromEntries(buttonSlotFns.map(([slotName, slotFn]) => [slotName, slotFn.recipeFn(props)]));
1558
1652
  });
1559
1653
  const buttonVariantKeys = [
1560
- "appearance",
1654
+ "variant",
1561
1655
  "size",
1562
1656
  "iconBefore",
1563
1657
  "iconAfter"
1564
1658
  ];
1565
- const getVariantProps$a = (variants) => ({ ...buttonDefaultVariants, ...compact(variants) });
1659
+ const getVariantProps$b = (variants) => ({ ...buttonDefaultVariants, ...compact(variants) });
1566
1660
  const button = /* @__PURE__ */ Object.assign(buttonFn, {
1567
1661
  __recipe__: false,
1568
1662
  __name__: "button",
@@ -1570,17 +1664,17 @@ const button = /* @__PURE__ */ Object.assign(buttonFn, {
1570
1664
  classNameMap: {},
1571
1665
  variantKeys: buttonVariantKeys,
1572
1666
  variantMap: {
1573
- "appearance": [
1667
+ "variant": [
1574
1668
  "default",
1575
1669
  "primary",
1576
1670
  "subtle",
1577
1671
  "hollow"
1578
1672
  ],
1579
1673
  "size": [
1580
- "default",
1581
- "xlarge",
1582
- "large",
1583
- "small"
1674
+ "md",
1675
+ "xl",
1676
+ "lg",
1677
+ "sm"
1584
1678
  ],
1585
1679
  "iconBefore": [
1586
1680
  "true"
@@ -1592,11 +1686,11 @@ const button = /* @__PURE__ */ Object.assign(buttonFn, {
1592
1686
  splitVariantProps(props) {
1593
1687
  return splitProps$1(props, buttonVariantKeys);
1594
1688
  },
1595
- getVariantProps: getVariantProps$a
1689
+ getVariantProps: getVariantProps$b
1596
1690
  });
1597
1691
  const iconButtonDefaultVariants = {
1598
- "appearance": "default",
1599
- "size": "default"
1692
+ "variant": "default",
1693
+ "size": "md"
1600
1694
  };
1601
1695
  const iconButtonCompoundVariants = [];
1602
1696
  const iconButtonSlotNames = [
@@ -1614,10 +1708,10 @@ const iconButtonFn = memo((props = {}) => {
1614
1708
  return Object.fromEntries(iconButtonSlotFns.map(([slotName, slotFn]) => [slotName, slotFn.recipeFn(props)]));
1615
1709
  });
1616
1710
  const iconButtonVariantKeys = [
1617
- "appearance",
1711
+ "variant",
1618
1712
  "size"
1619
1713
  ];
1620
- const getVariantProps$9 = (variants) => ({ ...iconButtonDefaultVariants, ...compact(variants) });
1714
+ const getVariantProps$a = (variants) => ({ ...iconButtonDefaultVariants, ...compact(variants) });
1621
1715
  const iconButton = /* @__PURE__ */ Object.assign(iconButtonFn, {
1622
1716
  __recipe__: false,
1623
1717
  __name__: "iconButton",
@@ -1625,22 +1719,23 @@ const iconButton = /* @__PURE__ */ Object.assign(iconButtonFn, {
1625
1719
  classNameMap: {},
1626
1720
  variantKeys: iconButtonVariantKeys,
1627
1721
  variantMap: {
1628
- "appearance": [
1722
+ "variant": [
1629
1723
  "default",
1630
1724
  "primary",
1631
1725
  "subtle",
1632
1726
  "hollow"
1633
1727
  ],
1634
1728
  "size": [
1635
- "default",
1636
- "large",
1637
- "small"
1729
+ "md",
1730
+ "sm",
1731
+ "lg",
1732
+ "xl"
1638
1733
  ]
1639
1734
  },
1640
1735
  splitVariantProps(props) {
1641
1736
  return splitProps$1(props, iconButtonVariantKeys);
1642
1737
  },
1643
- getVariantProps: getVariantProps$9
1738
+ getVariantProps: getVariantProps$a
1644
1739
  });
1645
1740
  const checkboxDefaultVariants = {};
1646
1741
  const checkboxCompoundVariants = [];
@@ -1663,7 +1758,7 @@ const checkboxFn = memo((props = {}) => {
1663
1758
  return Object.fromEntries(checkboxSlotFns.map(([slotName, slotFn]) => [slotName, slotFn.recipeFn(props)]));
1664
1759
  });
1665
1760
  const checkboxVariantKeys = [];
1666
- const getVariantProps$8 = (variants) => ({ ...checkboxDefaultVariants, ...compact(variants) });
1761
+ const getVariantProps$9 = (variants) => ({ ...checkboxDefaultVariants, ...compact(variants) });
1667
1762
  const checkbox = /* @__PURE__ */ Object.assign(checkboxFn, {
1668
1763
  __recipe__: false,
1669
1764
  __name__: "checkbox",
@@ -1674,7 +1769,7 @@ const checkbox = /* @__PURE__ */ Object.assign(checkboxFn, {
1674
1769
  splitVariantProps(props) {
1675
1770
  return splitProps$1(props, checkboxVariantKeys);
1676
1771
  },
1677
- getVariantProps: getVariantProps$8
1772
+ getVariantProps: getVariantProps$9
1678
1773
  });
1679
1774
  const radioDefaultVariants = {};
1680
1775
  const radioCompoundVariants = [];
@@ -1697,7 +1792,7 @@ const radioFn = memo((props = {}) => {
1697
1792
  return Object.fromEntries(radioSlotFns.map(([slotName, slotFn]) => [slotName, slotFn.recipeFn(props)]));
1698
1793
  });
1699
1794
  const radioVariantKeys = [];
1700
- const getVariantProps$7 = (variants) => ({ ...radioDefaultVariants, ...compact(variants) });
1795
+ const getVariantProps$8 = (variants) => ({ ...radioDefaultVariants, ...compact(variants) });
1701
1796
  const radio = /* @__PURE__ */ Object.assign(radioFn, {
1702
1797
  __recipe__: false,
1703
1798
  __name__: "radio",
@@ -1708,10 +1803,12 @@ const radio = /* @__PURE__ */ Object.assign(radioFn, {
1708
1803
  splitVariantProps(props) {
1709
1804
  return splitProps$1(props, radioVariantKeys);
1710
1805
  },
1711
- getVariantProps: getVariantProps$7
1806
+ getVariantProps: getVariantProps$8
1712
1807
  });
1713
1808
  const tooltipDefaultVariants = {
1714
- "position": "bottom"
1809
+ "position": "bottom",
1810
+ "caret": true,
1811
+ "size": "md"
1715
1812
  };
1716
1813
  const tooltipCompoundVariants = [
1717
1814
  {
@@ -1827,6 +1924,14 @@ const tooltipSlotNames = [
1827
1924
  [
1828
1925
  "tooltipContent",
1829
1926
  "tooltip__tooltipContent"
1927
+ ],
1928
+ [
1929
+ "title",
1930
+ "tooltip__title"
1931
+ ],
1932
+ [
1933
+ "text",
1934
+ "tooltip__text"
1830
1935
  ]
1831
1936
  ];
1832
1937
  const tooltipSlotFns = /* @__PURE__ */ tooltipSlotNames.map(([slotName, slotKey]) => [slotName, createRecipe(slotKey, tooltipDefaultVariants, getSlotCompoundVariant(tooltipCompoundVariants, slotName))]);
@@ -1835,9 +1940,10 @@ const tooltipFn = memo((props = {}) => {
1835
1940
  });
1836
1941
  const tooltipVariantKeys = [
1837
1942
  "position",
1838
- "caret"
1943
+ "caret",
1944
+ "size"
1839
1945
  ];
1840
- const getVariantProps$6 = (variants) => ({ ...tooltipDefaultVariants, ...compact(variants) });
1946
+ const getVariantProps$7 = (variants) => ({ ...tooltipDefaultVariants, ...compact(variants) });
1841
1947
  const tooltip = /* @__PURE__ */ Object.assign(tooltipFn, {
1842
1948
  __recipe__: false,
1843
1949
  __name__: "tooltip",
@@ -1862,15 +1968,20 @@ const tooltip = /* @__PURE__ */ Object.assign(tooltipFn, {
1862
1968
  "caret": [
1863
1969
  "true",
1864
1970
  "false"
1971
+ ],
1972
+ "size": [
1973
+ "sm",
1974
+ "md",
1975
+ "lg"
1865
1976
  ]
1866
1977
  },
1867
1978
  splitVariantProps(props) {
1868
1979
  return splitProps$1(props, tooltipVariantKeys);
1869
1980
  },
1870
- getVariantProps: getVariantProps$6
1981
+ getVariantProps: getVariantProps$7
1871
1982
  });
1872
1983
  const menuDefaultVariants = {
1873
- "size": "default",
1984
+ "packing": "default",
1874
1985
  "indicatorPosition": "left"
1875
1986
  };
1876
1987
  const menuCompoundVariants = [];
@@ -1925,10 +2036,10 @@ const menuFn = memo((props = {}) => {
1925
2036
  return Object.fromEntries(menuSlotFns.map(([slotName, slotFn]) => [slotName, slotFn.recipeFn(props)]));
1926
2037
  });
1927
2038
  const menuVariantKeys = [
1928
- "size",
2039
+ "packing",
1929
2040
  "indicatorPosition"
1930
2041
  ];
1931
- const getVariantProps$5 = (variants) => ({ ...menuDefaultVariants, ...compact(variants) });
2042
+ const getVariantProps$6 = (variants) => ({ ...menuDefaultVariants, ...compact(variants) });
1932
2043
  const menu = /* @__PURE__ */ Object.assign(menuFn, {
1933
2044
  __recipe__: false,
1934
2045
  __name__: "menu",
@@ -1936,7 +2047,7 @@ const menu = /* @__PURE__ */ Object.assign(menuFn, {
1936
2047
  classNameMap: {},
1937
2048
  variantKeys: menuVariantKeys,
1938
2049
  variantMap: {
1939
- "size": [
2050
+ "packing": [
1940
2051
  "default",
1941
2052
  "compact",
1942
2053
  "comfortable"
@@ -1949,10 +2060,10 @@ const menu = /* @__PURE__ */ Object.assign(menuFn, {
1949
2060
  splitVariantProps(props) {
1950
2061
  return splitProps$1(props, menuVariantKeys);
1951
2062
  },
1952
- getVariantProps: getVariantProps$5
2063
+ getVariantProps: getVariantProps$6
1953
2064
  });
1954
2065
  const selectDefaultVariants = {
1955
- "size": "default"
2066
+ "size": "md"
1956
2067
  };
1957
2068
  const selectCompoundVariants = [];
1958
2069
  const selectSlotNames = [
@@ -1980,7 +2091,7 @@ const selectFn = memo((props = {}) => {
1980
2091
  const selectVariantKeys = [
1981
2092
  "size"
1982
2093
  ];
1983
- const getVariantProps$4 = (variants) => ({ ...selectDefaultVariants, ...compact(variants) });
2094
+ const getVariantProps$5 = (variants) => ({ ...selectDefaultVariants, ...compact(variants) });
1984
2095
  const select = /* @__PURE__ */ Object.assign(selectFn, {
1985
2096
  __recipe__: false,
1986
2097
  __name__: "select",
@@ -1989,15 +2100,16 @@ const select = /* @__PURE__ */ Object.assign(selectFn, {
1989
2100
  variantKeys: selectVariantKeys,
1990
2101
  variantMap: {
1991
2102
  "size": [
1992
- "compact",
1993
- "default",
1994
- "comfortable"
2103
+ "md",
2104
+ "xl",
2105
+ "lg",
2106
+ "sm"
1995
2107
  ]
1996
2108
  },
1997
2109
  splitVariantProps(props) {
1998
2110
  return splitProps$1(props, selectVariantKeys);
1999
2111
  },
2000
- getVariantProps: getVariantProps$4
2112
+ getVariantProps: getVariantProps$5
2001
2113
  });
2002
2114
  const toggleDefaultVariants = {};
2003
2115
  const toggleCompoundVariants = [];
@@ -2024,7 +2136,7 @@ const toggleFn = memo((props = {}) => {
2024
2136
  return Object.fromEntries(toggleSlotFns.map(([slotName, slotFn]) => [slotName, slotFn.recipeFn(props)]));
2025
2137
  });
2026
2138
  const toggleVariantKeys = [];
2027
- const getVariantProps$3 = (variants) => ({ ...toggleDefaultVariants, ...compact(variants) });
2139
+ const getVariantProps$4 = (variants) => ({ ...toggleDefaultVariants, ...compact(variants) });
2028
2140
  const toggle = /* @__PURE__ */ Object.assign(toggleFn, {
2029
2141
  __recipe__: false,
2030
2142
  __name__: "toggle",
@@ -2035,14 +2147,14 @@ const toggle = /* @__PURE__ */ Object.assign(toggleFn, {
2035
2147
  splitVariantProps(props) {
2036
2148
  return splitProps$1(props, toggleVariantKeys);
2037
2149
  },
2038
- getVariantProps: getVariantProps$3
2150
+ getVariantProps: getVariantProps$4
2039
2151
  });
2040
2152
  const chipDefaultVariants = {
2041
- "size": "default"
2153
+ "size": "md"
2042
2154
  };
2043
2155
  const chipCompoundVariants = [
2044
2156
  {
2045
- "size": "default",
2157
+ "size": "md",
2046
2158
  "before": true,
2047
2159
  "css": {
2048
2160
  "container": {
@@ -2051,7 +2163,7 @@ const chipCompoundVariants = [
2051
2163
  }
2052
2164
  },
2053
2165
  {
2054
- "size": "default",
2166
+ "size": "md",
2055
2167
  "after": true,
2056
2168
  "css": {
2057
2169
  "container": {
@@ -2060,7 +2172,7 @@ const chipCompoundVariants = [
2060
2172
  }
2061
2173
  },
2062
2174
  {
2063
- "size": "small",
2175
+ "size": "sm",
2064
2176
  "before": true,
2065
2177
  "css": {
2066
2178
  "container": {
@@ -2069,7 +2181,7 @@ const chipCompoundVariants = [
2069
2181
  }
2070
2182
  },
2071
2183
  {
2072
- "size": "small",
2184
+ "size": "sm",
2073
2185
  "after": true,
2074
2186
  "css": {
2075
2187
  "container": {
@@ -2078,7 +2190,7 @@ const chipCompoundVariants = [
2078
2190
  }
2079
2191
  },
2080
2192
  {
2081
- "size": "large",
2193
+ "size": "lg",
2082
2194
  "before": true,
2083
2195
  "css": {
2084
2196
  "container": {
@@ -2087,7 +2199,7 @@ const chipCompoundVariants = [
2087
2199
  }
2088
2200
  },
2089
2201
  {
2090
- "size": "large",
2202
+ "size": "lg",
2091
2203
  "after": true,
2092
2204
  "css": {
2093
2205
  "container": {
@@ -2115,7 +2227,7 @@ const chipVariantKeys = [
2115
2227
  "before",
2116
2228
  "after"
2117
2229
  ];
2118
- const getVariantProps$2 = (variants) => ({ ...chipDefaultVariants, ...compact(variants) });
2230
+ const getVariantProps$3 = (variants) => ({ ...chipDefaultVariants, ...compact(variants) });
2119
2231
  const chip = /* @__PURE__ */ Object.assign(chipFn, {
2120
2232
  __recipe__: false,
2121
2233
  __name__: "chip",
@@ -2124,9 +2236,9 @@ const chip = /* @__PURE__ */ Object.assign(chipFn, {
2124
2236
  variantKeys: chipVariantKeys,
2125
2237
  variantMap: {
2126
2238
  "size": [
2127
- "default",
2128
- "small",
2129
- "large"
2239
+ "md",
2240
+ "sm",
2241
+ "lg"
2130
2242
  ],
2131
2243
  "before": [
2132
2244
  "true"
@@ -2138,7 +2250,7 @@ const chip = /* @__PURE__ */ Object.assign(chipFn, {
2138
2250
  splitVariantProps(props) {
2139
2251
  return splitProps$1(props, chipVariantKeys);
2140
2252
  },
2141
- getVariantProps: getVariantProps$2
2253
+ getVariantProps: getVariantProps$3
2142
2254
  });
2143
2255
  const avatarDefaultVariants = {
2144
2256
  "size": "md",
@@ -2175,7 +2287,7 @@ const avatarVariantKeys = [
2175
2287
  "size",
2176
2288
  "shape"
2177
2289
  ];
2178
- const getVariantProps$1 = (variants) => ({ ...avatarDefaultVariants, ...compact(variants) });
2290
+ const getVariantProps$2 = (variants) => ({ ...avatarDefaultVariants, ...compact(variants) });
2179
2291
  const avatar = /* @__PURE__ */ Object.assign(avatarFn, {
2180
2292
  __recipe__: false,
2181
2293
  __name__: "avatar",
@@ -2200,7 +2312,7 @@ const avatar = /* @__PURE__ */ Object.assign(avatarFn, {
2200
2312
  splitVariantProps(props) {
2201
2313
  return splitProps$1(props, avatarVariantKeys);
2202
2314
  },
2203
- getVariantProps: getVariantProps$1
2315
+ getVariantProps: getVariantProps$2
2204
2316
  });
2205
2317
  const modalDefaultVariants = {
2206
2318
  "size": "md"
@@ -2243,7 +2355,7 @@ const modalFn = memo((props = {}) => {
2243
2355
  const modalVariantKeys = [
2244
2356
  "size"
2245
2357
  ];
2246
- const getVariantProps = (variants) => ({ ...modalDefaultVariants, ...compact(variants) });
2358
+ const getVariantProps$1 = (variants) => ({ ...modalDefaultVariants, ...compact(variants) });
2247
2359
  const modal = /* @__PURE__ */ Object.assign(modalFn, {
2248
2360
  __recipe__: false,
2249
2361
  __name__: "modal",
@@ -2260,9 +2372,56 @@ const modal = /* @__PURE__ */ Object.assign(modalFn, {
2260
2372
  splitVariantProps(props) {
2261
2373
  return splitProps$1(props, modalVariantKeys);
2262
2374
  },
2375
+ getVariantProps: getVariantProps$1
2376
+ });
2377
+ const formFieldDefaultVariants = {
2378
+ "layout": "default"
2379
+ };
2380
+ const formFieldCompoundVariants = [];
2381
+ const formFieldSlotNames = [
2382
+ [
2383
+ "formFieldContainer",
2384
+ "formfield__formFieldContainer"
2385
+ ],
2386
+ [
2387
+ "contentWrapper",
2388
+ "formfield__contentWrapper"
2389
+ ],
2390
+ [
2391
+ "labelWrapper",
2392
+ "formfield__labelWrapper"
2393
+ ],
2394
+ [
2395
+ "headLabel",
2396
+ "formfield__headLabel"
2397
+ ]
2398
+ ];
2399
+ const formFieldSlotFns = /* @__PURE__ */ formFieldSlotNames.map(([slotName, slotKey]) => [slotName, createRecipe(slotKey, formFieldDefaultVariants, getSlotCompoundVariant(formFieldCompoundVariants, slotName))]);
2400
+ const formFieldFn = memo((props = {}) => {
2401
+ return Object.fromEntries(formFieldSlotFns.map(([slotName, slotFn]) => [slotName, slotFn.recipeFn(props)]));
2402
+ });
2403
+ const formFieldVariantKeys = [
2404
+ "layout"
2405
+ ];
2406
+ const getVariantProps = (variants) => ({ ...formFieldDefaultVariants, ...compact(variants) });
2407
+ const formField = /* @__PURE__ */ Object.assign(formFieldFn, {
2408
+ __recipe__: false,
2409
+ __name__: "formField",
2410
+ raw: (props) => props,
2411
+ classNameMap: {},
2412
+ variantKeys: formFieldVariantKeys,
2413
+ variantMap: {
2414
+ "layout": [
2415
+ "default",
2416
+ "inline"
2417
+ ]
2418
+ },
2419
+ splitVariantProps(props) {
2420
+ return splitProps$1(props, formFieldVariantKeys);
2421
+ },
2263
2422
  getVariantProps
2264
2423
  });
2265
- 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,filtersProperty,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,_deleted,_collapsed,_error,_paused,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,@/2xs,@/xs,@/sm,@/md,@/lg,@/xl,@/2xl,@/3xl,@/4xl,@/5xl,@/6xl,@/7xl,@/8xl,textStyle,layerStyle";
2424
+ 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,WebkitTextFillColor,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,filtersProperty,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,_deleted,_collapsed,_utility,_error,_paused,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,@/2xs,@/xs,@/sm,@/md,@/lg,@/xl,@/2xl,@/3xl,@/4xl,@/5xl,@/6xl,@/7xl,@/8xl,textStyle,layerStyle";
2266
2425
  var userGenerated = userGeneratedStr.split(",");
2267
2426
  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";
2268
2427
  var allCssProperties = cssPropertiesStr.split(",").concat(userGenerated);
@@ -2452,7 +2611,7 @@ const splitProps = (props) => {
2452
2611
  const [cssProps, otherProps] = splitCssProps(props);
2453
2612
  const { css: cssProp, ...styleProps } = cssProps;
2454
2613
  const generatedClassName = css(cssProp, styleProps);
2455
- const existingClassName = otherProps.className || "";
2614
+ const existingClassName = typeof otherProps.className === "string" ? otherProps.className : "";
2456
2615
  const mergedClassName = cx(existingClassName, generatedClassName);
2457
2616
  const { className: _className, ...remainingProps } = otherProps;
2458
2617
  return [mergedClassName, remainingProps];
@@ -2465,39 +2624,54 @@ const Box = ({ as = "div", ...props }) => {
2465
2624
  ...otherProps
2466
2625
  });
2467
2626
  };
2468
- const Text = ({
2469
- as = "span",
2470
- italic,
2471
- family,
2472
- bold,
2473
- underline,
2474
- size: size2,
2475
- weight,
2476
- children,
2477
- ...props
2478
- }) => {
2479
- const [className, otherProps] = splitProps(props);
2627
+ const Text = (props) => {
2628
+ const {
2629
+ as = "span",
2630
+ family,
2631
+ italic,
2632
+ bold,
2633
+ underline,
2634
+ size: size2,
2635
+ children,
2636
+ textStyle,
2637
+ weight,
2638
+ role,
2639
+ // role if use in form input text for refrence, also semantic role overrides if non-semantic tag.
2640
+ tabIndex,
2641
+ // tabIndex main use for in list or loop select text using key press focus
2642
+ truncate,
2643
+ allcaps,
2644
+ ...rest
2645
+ } = props;
2646
+ const [className, otherProps] = splitProps(rest);
2480
2647
  return /* @__PURE__ */ jsx(
2481
2648
  Box,
2482
2649
  {
2483
2650
  as,
2651
+ textStyle,
2484
2652
  className: cx(
2485
- text({ family, bold, underline, italic }),
2653
+ text({
2654
+ family,
2655
+ bold,
2656
+ underline,
2657
+ italic,
2658
+ size: size2,
2659
+ weight,
2660
+ truncate,
2661
+ allcaps
2662
+ }),
2486
2663
  className
2487
2664
  ),
2488
- fontSize: size2,
2489
- fontWeight: weight,
2665
+ role,
2666
+ tabIndex,
2490
2667
  ...otherProps,
2491
2668
  children
2492
2669
  }
2493
2670
  );
2494
2671
  };
2495
- const Spinner = ({
2496
- size: size2,
2497
- inverse,
2498
- ...props
2499
- }) => {
2500
- const [className, otherProps] = splitProps(props);
2672
+ const Spinner = (props) => {
2673
+ const { size: size2, inverse, ...rest } = props;
2674
+ const [className, otherProps] = splitProps(rest);
2501
2675
  return /* @__PURE__ */ jsx(
2502
2676
  Box,
2503
2677
  {
@@ -2507,7 +2681,7 @@ const Spinner = ({
2507
2681
  }
2508
2682
  );
2509
2683
  };
2510
- 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="chevron-down" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M17.475 9.995a.75.75 0 0 1 0 1.06l-4.95 4.95a.75.75 0 0 1-1.06 0l-4.94-4.93a.75.75 0 0 1 1.06-1.06l4.41 4.4 4.42-4.42a.75.75 0 0 1 1.06 0" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" id="chevron-filled-down" xmlns="http://www.w3.org/2000/svg"><path d="M17.475 11.055a.75.75 0 0 0-.532-1.28l-9.89.02a.75.75 0 0 0-.528 1.28l4.94 4.93a.75.75 0 0 0 1.06 0z"/></symbol><symbol viewBox="0 0 24 24" id="chevron-filled-left" xmlns="http://www.w3.org/2000/svg"><path d="M12.945 6.525a.75.75 0 0 1 1.28.532l-.02 9.89a.75.75 0 0 1-1.28.528l-4.93-4.94a.75.75 0 0 1 0-1.06z"/></symbol><symbol viewBox="0 0 24 24" id="chevron-filled-right" xmlns="http://www.w3.org/2000/svg"><path d="M11.055 6.525a.75.75 0 0 0-1.28.532l.02 9.89a.75.75 0 0 0 1.28.528l4.93-4.94a.75.75 0 0 0 0-1.06z"/></symbol><symbol viewBox="0 0 24 24" id="chevron-filled-up" xmlns="http://www.w3.org/2000/svg"><path d="M17.475 12.945a.75.75 0 0 1-.532 1.28l-9.89-.02a.75.75 0 0 1-.528-1.28l4.94-4.93a.75.75 0 0 1 1.06 0z"/></symbol><symbol viewBox="0 0 24 24" id="chevron-left" xmlns="http://www.w3.org/2000/svg"><path d="M12.945 6.525a.75.75 0 0 1 1.06 1.06l-4.42 4.42 4.4 4.41a.75.75 0 0 1-1.06 1.06l-4.93-4.94a.75.75 0 0 1 0-1.06z"/></symbol><symbol viewBox="0 0 24 24" id="chevron-right" xmlns="http://www.w3.org/2000/svg"><path d="M11.055 6.525a.75.75 0 0 0-1.06 1.06l4.42 4.42-4.4 4.41a.75.75 0 1 0 1.06 1.06l4.93-4.94a.75.75 0 0 0 0-1.06z"/></symbol><symbol viewBox="0 0 24 24" id="chevron-up" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M17.475 15.005a.75.75 0 0 0 0-1.06l-4.95-4.95a.75.75 0 0 0-1.06 0l-4.94 4.93a.75.75 0 0 0 1.06 1.06l4.41-4.4 4.42 4.42a.75.75 0 0 0 1.06 0" clip-rule="evenodd"/></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>';
2684
+ 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="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="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="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="chevron-down" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M17.475 9.995a.75.75 0 0 1 0 1.06l-4.95 4.95a.75.75 0 0 1-1.06 0l-4.94-4.93a.75.75 0 0 1 1.06-1.06l4.41 4.4 4.42-4.42a.75.75 0 0 1 1.06 0" clip-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" id="chevron-filled-down" xmlns="http://www.w3.org/2000/svg"><path d="M17.475 11.055a.75.75 0 0 0-.532-1.28l-9.89.02a.75.75 0 0 0-.528 1.28l4.94 4.93a.75.75 0 0 0 1.06 0z"/></symbol><symbol viewBox="0 0 24 24" id="chevron-filled-left" xmlns="http://www.w3.org/2000/svg"><path d="M12.945 6.525a.75.75 0 0 1 1.28.532l-.02 9.89a.75.75 0 0 1-1.28.528l-4.93-4.94a.75.75 0 0 1 0-1.06z"/></symbol><symbol viewBox="0 0 24 24" id="chevron-filled-right" xmlns="http://www.w3.org/2000/svg"><path d="M11.055 6.525a.75.75 0 0 0-1.28.532l.02 9.89a.75.75 0 0 0 1.28.528l4.93-4.94a.75.75 0 0 0 0-1.06z"/></symbol><symbol viewBox="0 0 24 24" id="chevron-filled-up" xmlns="http://www.w3.org/2000/svg"><path d="M17.475 12.945a.75.75 0 0 1-.532 1.28l-9.89-.02a.75.75 0 0 1-.528-1.28l4.94-4.93a.75.75 0 0 1 1.06 0z"/></symbol><symbol viewBox="0 0 24 24" id="chevron-left" xmlns="http://www.w3.org/2000/svg"><path d="M12.945 6.525a.75.75 0 0 1 1.06 1.06l-4.42 4.42 4.4 4.41a.75.75 0 0 1-1.06 1.06l-4.93-4.94a.75.75 0 0 1 0-1.06z"/></symbol><symbol viewBox="0 0 24 24" id="chevron-right" xmlns="http://www.w3.org/2000/svg"><path d="M11.055 6.525a.75.75 0 0 0-1.06 1.06l4.42 4.42-4.4 4.41a.75.75 0 1 0 1.06 1.06l4.93-4.94a.75.75 0 0 0 0-1.06z"/></symbol><symbol viewBox="0 0 24 24" id="chevron-up" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M17.475 15.005a.75.75 0 0 0 0-1.06l-4.95-4.95a.75.75 0 0 0-1.06 0l-4.94 4.93a.75.75 0 0 0 1.06 1.06l4.41-4.4 4.42 4.42a.75.75 0 0 0 1.06 0" clip-rule="evenodd"/></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>';
2511
2685
  let spriteInjected = false;
2512
2686
  function injectSprite() {
2513
2687
  if (spriteInjected || typeof document === "undefined") return;
@@ -2524,13 +2698,9 @@ function injectSprite() {
2524
2698
  console.error("Error injecting sprite:", error2);
2525
2699
  }
2526
2700
  }
2527
- const Icon = ({
2528
- name,
2529
- size: size2 = "24",
2530
- fill = "current",
2531
- ...props
2532
- }) => {
2533
- const [className, otherProps] = splitProps(props);
2701
+ const Icon = (props) => {
2702
+ const { name, size: size2 = "24", fill, ...rest } = props;
2703
+ const [className, otherProps] = splitProps(rest);
2534
2704
  useEffect(() => {
2535
2705
  injectSprite();
2536
2706
  }, []);
@@ -2590,7 +2760,7 @@ const IconNames = {
2590
2760
  "bookmark": "bookmark",
2591
2761
  "bookmarks": "bookmarks",
2592
2762
  "broadcast": "broadcast",
2593
- "Building": "Building",
2763
+ "building": "building",
2594
2764
  "calendar-add": "calendar-add",
2595
2765
  "calendar-view-day": "calendar-view-day",
2596
2766
  "calendar-view-month": "calendar-view-month",
@@ -2851,68 +3021,71 @@ const IconNames = {
2851
3021
  "zoom-in": "zoom-in",
2852
3022
  "zoom-out": "zoom-out"
2853
3023
  };
2854
- const Button = React.forwardRef(
2855
- ({
2856
- appearance,
3024
+ const Button = (props) => {
3025
+ const {
3026
+ variant,
2857
3027
  size: size2,
2858
3028
  href,
2859
- className,
3029
+ iconBefore,
3030
+ iconAfter,
2860
3031
  children,
2861
3032
  loading,
2862
3033
  disabled,
2863
- iconBefore,
2864
- iconAfter,
3034
+ type = "button",
2865
3035
  gap,
2866
- ...props
2867
- }, ref) => {
2868
- const trulyDisabled = loading || disabled;
2869
- const asComponent = href ? "a" : "button";
2870
- const classes = button({
2871
- appearance,
2872
- size: size2,
2873
- iconBefore: Boolean(iconBefore),
2874
- iconAfter: Boolean(iconAfter)
2875
- });
2876
- const [styleClassName, otherProps] = splitProps(props);
2877
- return /* @__PURE__ */ jsx(
2878
- Box,
2879
- {
2880
- as: asComponent,
2881
- ref,
2882
- href,
2883
- disabled: trulyDisabled,
2884
- "aria-disabled": trulyDisabled,
2885
- className: cx(classes.container, className, styleClassName),
2886
- type: asComponent === "button" ? "button" : void 0,
2887
- ...otherProps,
2888
- children: /* @__PURE__ */ jsxs(Fragment, { children: [
2889
- /* @__PURE__ */ jsxs(HStack, { gap: gap || "4", opacity: loading ? 0 : 1, children: [
2890
- iconBefore && /* @__PURE__ */ jsx(Icon, { name: iconBefore, className: classes.icon }),
2891
- children,
2892
- iconAfter && /* @__PURE__ */ jsx(Icon, { name: iconAfter, className: classes.icon })
2893
- ] }),
2894
- loading && /* @__PURE__ */ jsx(
2895
- Grid,
2896
- {
2897
- position: "absolute",
2898
- top: "0",
2899
- left: "0",
2900
- right: "0",
2901
- bottom: "0",
2902
- placeItems: "center",
2903
- children: /* @__PURE__ */ jsx(
2904
- Spinner,
2905
- {
2906
- ...appearance === "primary" ? { inverse: true } : {}
2907
- }
2908
- )
2909
- }
2910
- )
2911
- ] })
2912
- }
2913
- );
2914
- }
2915
- );
3036
+ ref,
3037
+ ...rest
3038
+ } = props;
3039
+ const classes = button({
3040
+ variant,
3041
+ size: size2,
3042
+ iconBefore: Boolean(iconBefore),
3043
+ iconAfter: Boolean(iconAfter)
3044
+ });
3045
+ const [className, otherProps] = splitProps(rest);
3046
+ const trulyDisabled = loading || disabled;
3047
+ return /* @__PURE__ */ jsx(
3048
+ Box,
3049
+ {
3050
+ as: href ? "a" : "button",
3051
+ ref,
3052
+ disabled: trulyDisabled,
3053
+ "aria-disabled": trulyDisabled,
3054
+ "aria-label": children,
3055
+ className: cx(classes.container, className),
3056
+ ...href ? { href } : { type },
3057
+ ...otherProps,
3058
+ ...trulyDisabled && href && {
3059
+ onClick: (e) => e.preventDefault()
3060
+ },
3061
+ children: /* @__PURE__ */ jsxs(Fragment, { children: [
3062
+ /* @__PURE__ */ jsxs(HStack, { gap: gap || "4", opacity: loading ? 0 : 1, children: [
3063
+ iconBefore && /* @__PURE__ */ jsx(Icon, { name: iconBefore, className: classes.icon }),
3064
+ children,
3065
+ iconAfter && /* @__PURE__ */ jsx(Icon, { name: iconAfter, className: classes.icon })
3066
+ ] }),
3067
+ loading && /* @__PURE__ */ jsx(
3068
+ Grid,
3069
+ {
3070
+ position: "absolute",
3071
+ top: "0",
3072
+ left: "0",
3073
+ right: "0",
3074
+ bottom: "0",
3075
+ placeItems: "center",
3076
+ children: /* @__PURE__ */ jsx(
3077
+ Spinner,
3078
+ {
3079
+ size: "sm",
3080
+ ...variant === "primary" ? { inverse: true } : {}
3081
+ }
3082
+ )
3083
+ }
3084
+ )
3085
+ ] })
3086
+ }
3087
+ );
3088
+ };
2916
3089
  const animationStyles = {
2917
3090
  pop: css({
2918
3091
  animationName: "badgePop",
@@ -2925,54 +3098,54 @@ const animationStyles = {
2925
3098
  animationTimingFunction: "default"
2926
3099
  })
2927
3100
  };
2928
- const Badge = React.forwardRef(
2929
- ({
3101
+ const Badge = (props) => {
3102
+ const {
2930
3103
  count: count2,
2931
3104
  showZero = false,
2932
3105
  overflowCount = 99,
2933
- appearance = "danger",
3106
+ variant = "danger",
2934
3107
  size: size2 = "md",
2935
3108
  children,
2936
- ...props
2937
- }, ref) => {
2938
- const [className, otherProps] = splitProps(props);
2939
- const prevCountRef = React.useRef(count2);
2940
- const [isAnimating, setIsAnimating] = React.useState(false);
2941
- React.useEffect(() => {
2942
- if (count2 !== void 0 && prevCountRef.current !== count2) {
2943
- if (prevCountRef.current !== void 0) {
2944
- setIsAnimating(true);
2945
- const timer = setTimeout(() => setIsAnimating(false), 200);
2946
- return () => clearTimeout(timer);
2947
- }
2948
- }
2949
- prevCountRef.current = count2;
2950
- }, [count2]);
2951
- const isCountMode = count2 !== void 0;
2952
- const isDotMode = !isCountMode;
2953
- const isVisible = isDotMode || count2 !== 0 || showZero;
2954
- const displayCount = isCountMode && count2 !== void 0 ? count2 > overflowCount ? `${overflowCount}+` : count2 : null;
2955
- const isStandalone = !children;
2956
- const classes = badge({
2957
- size: size2,
2958
- standalone: isStandalone,
2959
- dot: isDotMode,
2960
- appearance
2961
- });
2962
- const animationClass = isAnimating ? isStandalone ? animationStyles.popStandalone : animationStyles.pop : "";
2963
- if (!isVisible && !children) {
2964
- return null;
2965
- }
2966
- const indicator = isVisible ? /* @__PURE__ */ jsx("span", { className: cx(classes.indicator, animationClass), children: displayCount }) : null;
2967
- if (isStandalone) {
2968
- return /* @__PURE__ */ jsx("span", { ref, className: cx(classes.root, className), ...otherProps, children: indicator });
2969
- }
2970
- return /* @__PURE__ */ jsxs("span", { ref, className: cx(classes.root, className), ...otherProps, children: [
2971
- children,
2972
- indicator
2973
- ] });
3109
+ ref,
3110
+ ...rest
3111
+ } = props;
3112
+ const [className, otherProps] = splitProps(rest);
3113
+ const prevCountRef = React.useRef(count2);
3114
+ const [isAnimating, setIsAnimating] = React.useState(false);
3115
+ React.useEffect(() => {
3116
+ if (count2 !== void 0 && prevCountRef.current !== count2) {
3117
+ if (prevCountRef.current !== void 0) {
3118
+ setIsAnimating(true);
3119
+ const timer = setTimeout(() => setIsAnimating(false), 200);
3120
+ return () => clearTimeout(timer);
3121
+ }
3122
+ }
3123
+ prevCountRef.current = count2;
3124
+ }, [count2]);
3125
+ const isCountMode = count2 !== void 0;
3126
+ const isDotMode = !isCountMode;
3127
+ const isVisible = isDotMode || count2 !== 0 || showZero;
3128
+ const displayCount = isCountMode && count2 !== void 0 ? count2 > overflowCount ? `${overflowCount}+` : count2 : null;
3129
+ const isStandalone = !children;
3130
+ const classes = badge({
3131
+ size: size2,
3132
+ standalone: isStandalone,
3133
+ dot: isDotMode,
3134
+ variant
3135
+ });
3136
+ const animationClass = isAnimating ? isStandalone ? animationStyles.popStandalone : animationStyles.pop : "";
3137
+ if (!isVisible && !children) {
3138
+ return null;
2974
3139
  }
2975
- );
3140
+ const indicator = isVisible ? /* @__PURE__ */ jsx("span", { className: cx(classes.indicator, animationClass), children: displayCount }) : null;
3141
+ if (isStandalone) {
3142
+ return /* @__PURE__ */ jsx("span", { ref, className: cx(classes.root, className), ...otherProps, children: indicator });
3143
+ }
3144
+ return /* @__PURE__ */ jsxs("span", { ref, className: cx(classes.root, className), ...otherProps, children: [
3145
+ children,
3146
+ indicator
3147
+ ] });
3148
+ };
2976
3149
  Badge.displayName = "Badge";
2977
3150
  const presenceStyles = {
2978
3151
  online: css({ bg: "bg.success.bold" }),
@@ -3004,134 +3177,132 @@ function getInitials(name) {
3004
3177
  const lastPart = parts[parts.length - 1];
3005
3178
  return parts[0].charAt(0) + (lastPart ? lastPart.charAt(0) : "");
3006
3179
  }
3007
- const Avatar = React.forwardRef(
3008
- (props, ref) => {
3009
- const {
3010
- src,
3011
- alt = "",
3012
- name,
3013
- size: size2 = "md",
3014
- shape = "circle",
3015
- presence,
3016
- status,
3017
- fallback,
3018
- borderColor,
3019
- ...rest
3020
- } = props;
3021
- const [className, otherProps] = splitProps(rest);
3022
- const [imageError, setImageError] = React.useState(false);
3023
- const [imageLoaded, setImageLoaded] = React.useState(false);
3024
- React.useEffect(() => {
3025
- setImageError(false);
3026
- setImageLoaded(false);
3027
- }, [src]);
3028
- const safeSize = size2;
3029
- const classes = avatar({ size: safeSize, shape });
3030
- const showImage = src && !imageError;
3031
- const initials = name ? getInitials(name) : null;
3032
- const iconSize = sizeToStatusIconSize[safeSize];
3033
- return /* @__PURE__ */ jsxs(
3034
- "span",
3035
- {
3036
- ref,
3037
- className: cx(classes.root, className),
3038
- style: borderColor ? { borderColor } : void 0,
3039
- ...otherProps,
3040
- children: [
3041
- showImage && /* @__PURE__ */ jsx(
3042
- "img",
3043
- {
3044
- src,
3045
- alt,
3046
- className: classes.image,
3047
- onError: () => setImageError(true),
3048
- onLoad: () => setImageLoaded(true),
3049
- style: { opacity: imageLoaded ? 1 : 0 }
3050
- }
3051
- ),
3052
- (!showImage || !imageLoaded) && /* @__PURE__ */ jsx("span", { className: classes.fallback, children: fallback || initials || /* @__PURE__ */ jsx(Icon, { name: "user" }) }),
3053
- presence && /* @__PURE__ */ jsx(
3054
- "span",
3055
- {
3056
- className: cx(
3057
- classes.presence,
3058
- presenceStyles[presence]
3059
- )
3060
- }
3061
- ),
3062
- status && /* @__PURE__ */ jsxs(
3063
- "span",
3064
- {
3065
- className: cx(classes.status, statusStyles[status]),
3066
- children: [
3067
- status === "approved" && /* @__PURE__ */ jsx(Icon, { name: "check", size: iconSize }),
3068
- status === "declined" && /* @__PURE__ */ jsx(Icon, { name: "x", size: iconSize }),
3069
- status === "locked" && /* @__PURE__ */ jsx(Icon, { name: "lock", size: iconSize })
3070
- ]
3071
- }
3072
- )
3073
- ]
3074
- }
3075
- );
3076
- }
3077
- );
3078
- Avatar.displayName = "Avatar";
3079
- const IconButton = React.forwardRef(
3080
- ({
3081
- appearance,
3082
- size: size2,
3083
- href,
3084
- className,
3085
- loading,
3086
- disabled,
3087
- iconName,
3088
- ...props
3089
- }, ref) => {
3090
- const trulyDisabled = loading || disabled;
3091
- const asComponent = href ? "a" : "button";
3092
- const classes = iconButton({ appearance, size: size2 });
3093
- const [styleClassName, otherProps] = splitProps(props);
3094
- return /* @__PURE__ */ jsx(
3095
- Box,
3096
- {
3097
- as: asComponent,
3098
- ref,
3099
- href,
3100
- disabled: trulyDisabled,
3101
- "aria-disabled": trulyDisabled,
3102
- className: cx(classes.container, className, styleClassName),
3103
- type: asComponent === "button" ? "button" : void 0,
3104
- ...otherProps,
3105
- children: /* @__PURE__ */ jsxs(Fragment, { children: [
3106
- /* @__PURE__ */ jsx(HStack, { gap: "2", opacity: loading ? 0 : 1, children: /* @__PURE__ */ jsx(Icon, { name: iconName || "menu", className: classes.icon }) }),
3107
- loading && /* @__PURE__ */ jsx(
3108
- Grid,
3109
- {
3110
- position: "absolute",
3111
- top: "0",
3112
- left: "0",
3113
- right: "0",
3114
- bottom: "0",
3115
- placeItems: "center",
3116
- children: /* @__PURE__ */ jsx(
3117
- Spinner,
3118
- {
3119
- ...appearance === "primary" ? { inverse: true } : {}
3120
- }
3121
- )
3122
- }
3123
- )
3124
- ] })
3125
- }
3126
- );
3127
- }
3128
- );
3129
- const Code = ({
3130
- lang,
3131
- children,
3132
- ...props
3133
- }) => {
3134
- const [className, otherProps] = splitProps(props);
3180
+ const Avatar = (props) => {
3181
+ const {
3182
+ src,
3183
+ alt = "",
3184
+ name,
3185
+ size: size2 = "md",
3186
+ shape = "circle",
3187
+ presence,
3188
+ status,
3189
+ fallback,
3190
+ borderColor,
3191
+ ref,
3192
+ ...rest
3193
+ } = props;
3194
+ const [className, otherProps] = splitProps(rest);
3195
+ const [imageError, setImageError] = React.useState(false);
3196
+ const [imageLoaded, setImageLoaded] = React.useState(false);
3197
+ React.useEffect(() => {
3198
+ setImageError(false);
3199
+ setImageLoaded(false);
3200
+ }, [src]);
3201
+ const safeSize = size2;
3202
+ const classes = avatar({ size: safeSize, shape });
3203
+ const showImage = src && !imageError;
3204
+ const initials = name ? getInitials(name) : null;
3205
+ const iconSize = sizeToStatusIconSize[safeSize];
3206
+ return /* @__PURE__ */ jsxs(
3207
+ "span",
3208
+ {
3209
+ ref,
3210
+ className: cx(classes.root, className),
3211
+ style: borderColor ? { borderColor } : void 0,
3212
+ ...otherProps,
3213
+ children: [
3214
+ showImage && /* @__PURE__ */ jsx(
3215
+ "img",
3216
+ {
3217
+ src,
3218
+ alt,
3219
+ className: classes.image,
3220
+ onError: () => setImageError(true),
3221
+ onLoad: () => setImageLoaded(true),
3222
+ style: { opacity: imageLoaded ? 1 : 0 }
3223
+ }
3224
+ ),
3225
+ (!showImage || !imageLoaded) && /* @__PURE__ */ jsx("span", { className: classes.fallback, children: fallback || initials || /* @__PURE__ */ jsx(Icon, { name: "user" }) }),
3226
+ presence && /* @__PURE__ */ jsx(
3227
+ "span",
3228
+ {
3229
+ className: cx(
3230
+ classes.presence,
3231
+ presenceStyles[presence]
3232
+ )
3233
+ }
3234
+ ),
3235
+ status && /* @__PURE__ */ jsxs(
3236
+ "span",
3237
+ {
3238
+ className: cx(classes.status, statusStyles[status]),
3239
+ children: [
3240
+ status === "approved" && /* @__PURE__ */ jsx(Icon, { name: "check", size: iconSize }),
3241
+ status === "declined" && /* @__PURE__ */ jsx(Icon, { name: "x", size: iconSize }),
3242
+ status === "locked" && /* @__PURE__ */ jsx(Icon, { name: "lock", size: iconSize })
3243
+ ]
3244
+ }
3245
+ )
3246
+ ]
3247
+ }
3248
+ );
3249
+ };
3250
+ Avatar.displayName = "Avatar";
3251
+ const IconButton = (props) => {
3252
+ const {
3253
+ variant,
3254
+ size: size2,
3255
+ href,
3256
+ loading,
3257
+ disabled,
3258
+ iconName,
3259
+ type = "button",
3260
+ ref,
3261
+ ...rest
3262
+ } = props;
3263
+ const [className, otherProps] = splitProps(rest);
3264
+ const trulyDisabled = loading || disabled;
3265
+ const classes = iconButton({ variant, size: size2 });
3266
+ return /* @__PURE__ */ jsx(
3267
+ Box,
3268
+ {
3269
+ as: href ? "a" : "button",
3270
+ ref,
3271
+ disabled: trulyDisabled,
3272
+ "aria-disabled": trulyDisabled,
3273
+ className: cx(classes.container, className),
3274
+ ...href ? { href } : { type },
3275
+ ...otherProps,
3276
+ ...trulyDisabled && href && {
3277
+ onClick: (e) => e.preventDefault()
3278
+ },
3279
+ children: /* @__PURE__ */ jsxs(Fragment, { children: [
3280
+ /* @__PURE__ */ jsx(HStack, { gap: "2", opacity: loading ? 0 : 1, children: /* @__PURE__ */ jsx(Icon, { name: iconName || "menu", className: classes.icon }) }),
3281
+ loading && /* @__PURE__ */ jsx(
3282
+ Grid,
3283
+ {
3284
+ position: "absolute",
3285
+ top: "0",
3286
+ left: "0",
3287
+ right: "0",
3288
+ bottom: "0",
3289
+ placeItems: "center",
3290
+ children: /* @__PURE__ */ jsx(
3291
+ Spinner,
3292
+ {
3293
+ size: "sm",
3294
+ ...variant === "primary" ? { inverse: true } : {}
3295
+ }
3296
+ )
3297
+ }
3298
+ )
3299
+ ] })
3300
+ }
3301
+ );
3302
+ };
3303
+ const Code = (props) => {
3304
+ const { lang, children, ...rest } = props;
3305
+ const [className, otherProps] = splitProps(rest);
3135
3306
  return /* @__PURE__ */ jsx(
3136
3307
  Box,
3137
3308
  {
@@ -3143,43 +3314,38 @@ const Code = ({
3143
3314
  }
3144
3315
  );
3145
3316
  };
3146
- const Pre = ({
3147
- children,
3148
- lang,
3149
- ...props
3150
- }) => {
3151
- const [className, otherProps] = splitProps(props);
3317
+ const Pre = (props) => {
3318
+ const { children, lang, ...rest } = props;
3319
+ const [className, otherProps] = splitProps(rest);
3152
3320
  return /* @__PURE__ */ jsx(Box, { as: "pre", className: cx(pre({}), className), ...otherProps, children: /* @__PURE__ */ jsx(Code, { lang, slot: "react", bg: "transparent", ...otherProps, children }) });
3153
3321
  };
3154
- const Heading = ({
3155
- level = "h2",
3156
- children,
3157
- ...props
3158
- }) => {
3159
- const [className, otherProps] = splitProps(props);
3322
+ const Heading = (props) => {
3323
+ const { level = "h2", allcaps, children, ...rest } = props;
3324
+ const [className, otherProps] = splitProps(rest);
3160
3325
  return /* @__PURE__ */ jsx(
3161
3326
  Text,
3162
3327
  {
3163
3328
  as: level,
3164
- className: cx(heading({ level }), className),
3329
+ className: cx(heading({ level, allcaps }), className),
3165
3330
  ...otherProps,
3166
3331
  children
3167
3332
  }
3168
3333
  );
3169
3334
  };
3170
- const Link = ({
3171
- href,
3172
- external,
3173
- disabled,
3174
- children,
3175
- size: size2,
3176
- family,
3177
- weight,
3178
- italic,
3179
- bold,
3180
- ...props
3181
- }) => {
3182
- const [className, otherProps] = splitProps(props);
3335
+ const Link = (props) => {
3336
+ const {
3337
+ href,
3338
+ external,
3339
+ disabled,
3340
+ children,
3341
+ size: size2,
3342
+ family,
3343
+ weight,
3344
+ italic,
3345
+ bold,
3346
+ ...rest
3347
+ } = props;
3348
+ const [className, otherProps] = splitProps(rest);
3183
3349
  const handleClick = (e) => {
3184
3350
  if (disabled) {
3185
3351
  e.preventDefault();
@@ -3206,29 +3372,23 @@ const Link = ({
3206
3372
  }
3207
3373
  );
3208
3374
  };
3209
- const Label = ({
3210
- htmlFor,
3211
- children,
3212
- ...props
3213
- }) => {
3214
- const [className, otherProps] = splitProps(props);
3375
+ const Label = (props) => {
3376
+ const { htmlFor, children, ...rest } = props;
3377
+ const [className, otherProps] = splitProps(rest);
3215
3378
  return /* @__PURE__ */ jsx(
3216
3379
  Box,
3217
3380
  {
3218
- htmlFor,
3219
3381
  as: "label",
3382
+ htmlFor,
3220
3383
  className: cx(label({}), className),
3221
3384
  ...otherProps,
3222
3385
  children
3223
3386
  }
3224
3387
  );
3225
3388
  };
3226
- const Divider = ({
3227
- direction,
3228
- weight,
3229
- ...props
3230
- }) => {
3231
- const [className, otherProps] = splitProps(props);
3389
+ const Divider = (props) => {
3390
+ const { direction, weight, ...rest } = props;
3391
+ const [className, otherProps] = splitProps(rest);
3232
3392
  return /* @__PURE__ */ jsx(
3233
3393
  Box,
3234
3394
  {
@@ -3238,69 +3398,83 @@ const Divider = ({
3238
3398
  }
3239
3399
  );
3240
3400
  };
3241
- const Checkbox = ({
3242
- indeterminate,
3243
- error: error2,
3244
- id,
3245
- name,
3246
- checked,
3247
- disabled,
3248
- onChange,
3249
- ...props
3250
- }) => {
3401
+ const Checkbox = (props) => {
3402
+ const {
3403
+ name,
3404
+ checked,
3405
+ onChange,
3406
+ id,
3407
+ indeterminate,
3408
+ disabled,
3409
+ error: error2,
3410
+ ...rest
3411
+ } = props;
3412
+ const [className, otherProps] = splitProps(rest);
3251
3413
  const { container, input, indicator } = checkbox({});
3252
3414
  const iconName = indeterminate ? "checkbox-indeterminate" : checked ? "checkbox-checked" : "checkbox";
3253
- return /* @__PURE__ */ jsxs(Box, { className: container, ...error2 && { "data-error": true }, children: [
3254
- /* @__PURE__ */ jsx(
3255
- Box,
3256
- {
3257
- as: "input",
3258
- type: "checkbox",
3259
- className: input,
3260
- name,
3261
- id,
3262
- checked,
3263
- onChange,
3264
- disabled,
3265
- ...indeterminate && { "data-indeterminate": true },
3266
- ...error2 && { "data-error": true },
3267
- ...props
3268
- }
3269
- ),
3270
- /* @__PURE__ */ jsx(Icon, { className: indicator, name: iconName }),
3271
- /* @__PURE__ */ jsx(Icon, { className: indicator, name: "checkbox-focus" })
3272
- ] });
3415
+ return /* @__PURE__ */ jsxs(
3416
+ Box,
3417
+ {
3418
+ className: cx(container, className),
3419
+ ...error2 && { "data-error": true },
3420
+ ...otherProps,
3421
+ children: [
3422
+ /* @__PURE__ */ jsx(
3423
+ Box,
3424
+ {
3425
+ as: "input",
3426
+ type: "checkbox",
3427
+ className: input,
3428
+ name,
3429
+ id,
3430
+ checked,
3431
+ onChange,
3432
+ disabled,
3433
+ ...indeterminate && { "data-indeterminate": true },
3434
+ ...error2 && { "data-error": true }
3435
+ }
3436
+ ),
3437
+ /* @__PURE__ */ jsx(Icon, { className: indicator, name: iconName }),
3438
+ /* @__PURE__ */ jsx(Icon, { className: indicator, name: "checkbox-focus" })
3439
+ ]
3440
+ }
3441
+ );
3273
3442
  };
3274
- const Radio = ({ id, name, error: error2, ...props }) => {
3443
+ const Radio = (props) => {
3444
+ const { name, checked, onChange, id, disabled, error: error2, ...rest } = props;
3445
+ const [className, otherProps] = splitProps(rest);
3275
3446
  const { container, input, indicator } = radio({});
3276
- return /* @__PURE__ */ jsxs(Label, { className: container, htmlFor: id, children: [
3277
- /* @__PURE__ */ jsx(
3278
- Box,
3279
- {
3280
- as: "input",
3281
- type: "radio",
3282
- id,
3283
- name,
3284
- "aria-label": name,
3285
- className: input,
3286
- ...props,
3287
- ...error2 && { "data-error": true }
3288
- }
3289
- ),
3290
- /* @__PURE__ */ jsx(Icon, { className: indicator, name: "radio" }),
3291
- /* @__PURE__ */ jsx(Icon, { className: indicator, name: "radio-checked" }),
3292
- /* @__PURE__ */ jsx(Icon, { className: indicator, name: "radio-focus" })
3293
- ] });
3447
+ const iconName = checked ? "radio-checked" : "radio";
3448
+ return /* @__PURE__ */ jsxs(
3449
+ Box,
3450
+ {
3451
+ className: cx(container, className),
3452
+ ...error2 && { "data-error": true },
3453
+ ...otherProps,
3454
+ children: [
3455
+ /* @__PURE__ */ jsx(
3456
+ Box,
3457
+ {
3458
+ as: "input",
3459
+ type: "radio",
3460
+ className: input,
3461
+ name,
3462
+ id,
3463
+ checked,
3464
+ onChange,
3465
+ disabled,
3466
+ ...error2 && { "data-error": true }
3467
+ }
3468
+ ),
3469
+ /* @__PURE__ */ jsx(Icon, { className: indicator, name: iconName }),
3470
+ /* @__PURE__ */ jsx(Icon, { className: indicator, name: "radio-focus" })
3471
+ ]
3472
+ }
3473
+ );
3294
3474
  };
3295
- const TextInput = ({
3296
- size: size2,
3297
- error: error2,
3298
- id,
3299
- name,
3300
- disabled,
3301
- ...props
3302
- }) => {
3303
- const [className, otherProps] = splitProps(props);
3475
+ const TextInput = (props) => {
3476
+ const { size: size2, error: error2, autoSize = false, id, name, disabled, ...rest } = props;
3477
+ const [className, otherProps] = splitProps(rest);
3304
3478
  return /* @__PURE__ */ jsx(
3305
3479
  Box,
3306
3480
  {
@@ -3309,20 +3483,14 @@ const TextInput = ({
3309
3483
  name,
3310
3484
  ...error2 && { "data-error": true },
3311
3485
  "aria-disabled": disabled,
3312
- className: cx(textinput({ size: size2 }), className),
3486
+ className: cx(textinput({ size: size2, autoSize }), className),
3313
3487
  ...otherProps
3314
3488
  }
3315
3489
  );
3316
3490
  };
3317
- const Textarea = ({
3318
- size: size2,
3319
- error: error2,
3320
- id,
3321
- name,
3322
- disabled,
3323
- ...props
3324
- }) => {
3325
- const [className, otherProps] = splitProps(props);
3491
+ const Textarea = (props) => {
3492
+ const { size: size2, error: error2, autoSize = false, id, name, disabled, ...rest } = props;
3493
+ const [className, otherProps] = splitProps(rest);
3326
3494
  return /* @__PURE__ */ jsx(
3327
3495
  Box,
3328
3496
  {
@@ -3331,81 +3499,77 @@ const Textarea = ({
3331
3499
  name,
3332
3500
  ...error2 && { "data-error": true },
3333
3501
  "aria-disabled": disabled,
3334
- className: cx(textarea({ size: size2 }), className),
3502
+ className: cx(textarea({ size: size2, autoSize }), className),
3335
3503
  ...otherProps
3336
3504
  }
3337
3505
  );
3338
3506
  };
3339
- const Card = React.forwardRef(
3340
- ({
3507
+ const Card = (props) => {
3508
+ const {
3341
3509
  as,
3342
- appearance,
3510
+ variant,
3343
3511
  href,
3344
- className,
3345
3512
  children,
3346
3513
  disabled,
3514
+ grabbed,
3347
3515
  interactive,
3348
3516
  onClick,
3349
- ...props
3350
- }, ref) => {
3351
- const isInteractive = interactive || Boolean(href) || Boolean(onClick);
3352
- let asComponent = as || "div";
3353
- if (!as) {
3354
- if (href) {
3355
- asComponent = "a";
3356
- } else if (isInteractive) {
3357
- asComponent = "button";
3358
- }
3359
- }
3360
- const isButton = asComponent === "button";
3361
- const isLink = asComponent === "a";
3362
- const [styleClassName, otherProps] = splitProps(props);
3363
- return /* @__PURE__ */ jsx(
3364
- Box,
3365
- {
3366
- as: asComponent,
3367
- ref,
3368
- className: cx(
3369
- card({ appearance, interactive: isInteractive }),
3370
- className,
3371
- styleClassName
3372
- ),
3373
- ...href && { href },
3374
- ...isButton && { type: "button" },
3375
- ...isInteractive && disabled && {
3376
- disabled: true,
3377
- "aria-disabled": true,
3378
- ...isLink && { tabIndex: -1 }
3379
- },
3380
- ...!isInteractive && disabled && { "aria-disabled": true },
3381
- onClick,
3382
- ...otherProps,
3383
- children
3384
- }
3385
- );
3517
+ ref,
3518
+ ...rest
3519
+ } = props;
3520
+ const [className, otherProps] = splitProps(rest);
3521
+ const isInteractive = interactive || Boolean(href) || Boolean(onClick);
3522
+ let asComponent = as || "div";
3523
+ if (!as) {
3524
+ if (href) {
3525
+ asComponent = "a";
3526
+ } else if (isInteractive) {
3527
+ asComponent = "button";
3528
+ }
3386
3529
  }
3387
- );
3388
- const Toggle = ({ name, id, error: error2, disabled, checked, ...props }) => {
3530
+ const isLink = asComponent === "a";
3531
+ return /* @__PURE__ */ jsx(
3532
+ Box,
3533
+ {
3534
+ as: asComponent,
3535
+ "data-grabbed": grabbed,
3536
+ ref,
3537
+ className: cx(card({ variant, interactive: isInteractive }), className),
3538
+ ...href ? { href } : { type: "button" },
3539
+ ...disabled && {
3540
+ disabled: true,
3541
+ "aria-disabled": true,
3542
+ ...isLink && { tabIndex: -1 }
3543
+ },
3544
+ ...otherProps,
3545
+ children
3546
+ }
3547
+ );
3548
+ };
3549
+ const Toggle = (props) => {
3550
+ const { name, id, checked, onChange, disabled, error: error2, ...rest } = props;
3551
+ const [className, otherProps] = splitProps(rest);
3389
3552
  const { container, input, indicator, background } = toggle({});
3390
3553
  return /* @__PURE__ */ jsxs(
3391
- Label,
3554
+ Box,
3392
3555
  {
3393
- className: container,
3556
+ className: cx(container, className),
3394
3557
  ...disabled && { "data-disabled": true },
3395
- color: { base: "gray.90", _dark: "gray.10" },
3558
+ ...error2 && { "data-error": true },
3559
+ ...otherProps,
3396
3560
  children: [
3397
3561
  /* @__PURE__ */ jsx(
3398
3562
  Box,
3399
3563
  {
3400
3564
  as: "input",
3401
3565
  type: "checkbox",
3566
+ className: input,
3402
3567
  name,
3403
3568
  id,
3404
- "aria-label": name,
3405
- className: input,
3406
- ...checked ? { "data-checked": true } : {},
3407
- ...error2 ? { "data-error": true } : {},
3408
- ...props
3569
+ checked,
3570
+ onChange,
3571
+ disabled,
3572
+ ...error2 && { "data-error": true }
3409
3573
  }
3410
3574
  ),
3411
3575
  /* @__PURE__ */ jsx(Box, { as: "span", className: background, name: "toggle-bg" }),
@@ -3415,77 +3579,73 @@ const Toggle = ({ name, id, error: error2, disabled, checked, ...props }) => {
3415
3579
  }
3416
3580
  );
3417
3581
  };
3418
- const ToggleInput = ({
3419
- name,
3420
- id,
3421
- children,
3422
- error: error2,
3423
- ...props
3424
- }) => {
3425
- const [className, otherProps] = splitProps(props);
3582
+ const ToggleInput = (props) => {
3583
+ const { name, checked, onChange, id, error: error2, children, disabled, ...rest } = props;
3584
+ const [className, otherProps] = splitProps(rest);
3426
3585
  return /* @__PURE__ */ jsxs(
3427
3586
  Label,
3428
3587
  {
3429
- className: cx(toggleInput({}), className),
3588
+ className: cx(toggleInput(), className),
3430
3589
  ...otherProps,
3431
3590
  htmlFor: id,
3591
+ disabled,
3432
3592
  children: [
3433
3593
  /* @__PURE__ */ jsx(
3434
3594
  Toggle,
3435
3595
  {
3436
3596
  id,
3437
3597
  name,
3438
- ...error2 && { "data-error": true },
3439
- ...props
3598
+ error: error2,
3599
+ checked,
3600
+ onChange,
3601
+ disabled
3440
3602
  }
3441
3603
  ),
3442
- children && /* @__PURE__ */ jsx("div", { children })
3604
+ children
3443
3605
  ]
3444
3606
  }
3445
3607
  );
3446
3608
  };
3447
- const RadioInput = ({
3448
- id,
3449
- name,
3450
- variant,
3451
- children,
3452
- error: error2,
3453
- ...props
3454
- }) => {
3455
- const [className, otherProps] = splitProps(props);
3609
+ const RadioInput = (props) => {
3610
+ const { name, checked, onChange, id, error: error2, children, disabled, ...rest } = props;
3611
+ const [className, otherProps] = splitProps(rest);
3456
3612
  return /* @__PURE__ */ jsxs(
3457
3613
  Label,
3458
3614
  {
3459
- className: cx(radioInput({ variant }), className),
3615
+ className: cx(radioInput(), className),
3460
3616
  ...otherProps,
3461
3617
  htmlFor: id,
3618
+ disabled,
3462
3619
  children: [
3463
3620
  /* @__PURE__ */ jsx(
3464
3621
  Radio,
3465
3622
  {
3466
- name,
3467
3623
  id,
3468
- ...error2 && { "data-error": true },
3469
- ...props
3624
+ name,
3625
+ error: error2,
3626
+ checked,
3627
+ onChange,
3628
+ disabled
3470
3629
  }
3471
3630
  ),
3472
- children && /* @__PURE__ */ jsx(Box, { as: "div", children })
3631
+ children
3473
3632
  ]
3474
3633
  }
3475
3634
  );
3476
3635
  };
3477
- const CheckboxInput = ({
3478
- name,
3479
- checked,
3480
- onChange,
3481
- id,
3482
- error: error2,
3483
- children,
3484
- disabled,
3485
- indeterminate,
3486
- ...props
3487
- }) => {
3488
- const [className, otherProps] = splitProps(props);
3636
+ const CheckboxInput = (props) => {
3637
+ const {
3638
+ name,
3639
+ checked,
3640
+ onChange,
3641
+ id,
3642
+ error: error2,
3643
+ children,
3644
+ disabled,
3645
+ indeterminate,
3646
+ ...rest
3647
+ } = props;
3648
+ const [className, otherProps] = splitProps(rest);
3489
3649
  return /* @__PURE__ */ jsxs(
3490
3650
  Label,
3491
3651
  {
@@ -3503,8 +3663,7 @@ const CheckboxInput = ({
3503
3663
  checked,
3504
3664
  onChange,
3505
3665
  indeterminate,
3506
- disabled,
3507
- ...props
3666
+ disabled
3508
3667
  }
3509
3668
  ),
3510
3669
  children
@@ -3512,45 +3671,53 @@ const CheckboxInput = ({
3512
3671
  }
3513
3672
  );
3514
3673
  };
3515
- const Tooltip = ({
3516
- trigger = "onHover",
3517
- caret = true,
3518
- text: text2,
3519
- title,
3520
- children,
3521
- position = "bottom",
3522
- ...props
3523
- }) => {
3674
+ const Tooltip = (props) => {
3675
+ const {
3676
+ trigger = "onHover",
3677
+ caret = true,
3678
+ size: size2 = "md",
3679
+ text: text2,
3680
+ title,
3681
+ children,
3682
+ position = "bottom",
3683
+ ...rest
3684
+ } = props;
3685
+ const [className, otherProps] = splitProps(rest);
3524
3686
  const [currentPlacement, setCurrentPlacement] = useState(position);
3525
- const { wrapper, tooltipContent } = tooltip({
3526
- position: currentPlacement,
3527
- caret
3528
- });
3529
3687
  const [show, setShow] = useState(false);
3530
3688
  const tooltipRef = useRef(null);
3531
3689
  const triggerRef = useRef(null);
3532
3690
  const resolvedPlacement = typeof position === "string" ? position : "bottom";
3533
- const clockWisePlacement = [
3534
- "bottom",
3535
- "bottom-start",
3536
- "bottom-end",
3537
- "left",
3538
- "left-start",
3539
- "left-end",
3540
- "top",
3541
- "top-start",
3542
- "top-end",
3543
- "right",
3544
- "right-start",
3545
- "right-end"
3546
- ];
3547
- function getClockwise(start) {
3548
- const index2 = clockWisePlacement.indexOf(start);
3549
- if (index2 === -1) return clockWisePlacement;
3550
- const reordered = [...clockWisePlacement.slice(index2 + 1), ...clockWisePlacement.slice(0, index2)];
3551
- return reordered;
3552
- }
3553
- const checkPosition = () => {
3691
+ const clockWisePlacement = useMemo(
3692
+ () => [
3693
+ "bottom",
3694
+ "bottom-start",
3695
+ "bottom-end",
3696
+ "left",
3697
+ "left-start",
3698
+ "left-end",
3699
+ "top",
3700
+ "top-start",
3701
+ "top-end",
3702
+ "right",
3703
+ "right-start",
3704
+ "right-end"
3705
+ ],
3706
+ []
3707
+ );
3708
+ const getClockwise = useCallback(
3709
+ (start) => {
3710
+ const index2 = clockWisePlacement.indexOf(start);
3711
+ if (index2 === -1) return clockWisePlacement;
3712
+ const reordered = [
3713
+ ...clockWisePlacement.slice(index2 + 1),
3714
+ ...clockWisePlacement.slice(0, index2)
3715
+ ];
3716
+ return reordered;
3717
+ },
3718
+ [clockWisePlacement]
3719
+ );
3720
+ const checkPosition = useCallback(() => {
3554
3721
  const tooltipPositioning = tooltipRef.current;
3555
3722
  const triggerPositioning = triggerRef.current;
3556
3723
  if (!tooltipPositioning || !triggerPositioning) return;
@@ -3570,7 +3737,7 @@ const Tooltip = ({
3570
3737
  }
3571
3738
  }
3572
3739
  setCurrentPlacement(resolvedPlacement);
3573
- };
3740
+ }, [resolvedPlacement, getClockwise]);
3574
3741
  function getSimulatedRect(triggerRect, tooltipWidth, tooltipHeight, place) {
3575
3742
  const gap = 8;
3576
3743
  const verticalCenter = triggerRect.left + triggerRect.width / 2 - tooltipWidth / 2;
@@ -3670,7 +3837,7 @@ const Tooltip = ({
3670
3837
  window.addEventListener("resize", checkPosition);
3671
3838
  return () => window.removeEventListener("resize", checkPosition);
3672
3839
  }
3673
- }, [show, position]);
3840
+ }, [show, checkPosition]);
3674
3841
  useEffect(() => {
3675
3842
  if (trigger !== "onClick") return;
3676
3843
  const handleClickOutside = (event) => {
@@ -3690,7 +3857,12 @@ const Tooltip = ({
3690
3857
  const handleClick = () => {
3691
3858
  if (trigger === "onClick") setShow((prev) => !prev);
3692
3859
  };
3693
- return /* @__PURE__ */ jsxs(Box, { ...props, className: wrapper, children: [
3860
+ const classes = tooltip({
3861
+ position: currentPlacement,
3862
+ caret,
3863
+ size: size2
3864
+ });
3865
+ return /* @__PURE__ */ jsxs(Box, { className: classes.wrapper, ...otherProps, children: [
3694
3866
  /* @__PURE__ */ jsx(
3695
3867
  Box,
3696
3868
  {
@@ -3701,31 +3873,37 @@ const Tooltip = ({
3701
3873
  children
3702
3874
  }
3703
3875
  ),
3704
- show && /* @__PURE__ */ jsxs(Box, { className: tooltipContent, ref: tooltipRef, children: [
3705
- title && /* @__PURE__ */ jsx(Text, { as: "p", textStyle: "body-md", bold: true, color: { base: "gray.10", _dark: "gray.90" }, children: title }),
3706
- text2 && /* @__PURE__ */ jsx(Text, { as: "span", textStyle: "body-sm", color: { base: "gray.10", _dark: "gray.90" }, children: text2 })
3876
+ show && /* @__PURE__ */ jsxs(Box, { className: cx(classes.tooltipContent, className), ref: tooltipRef, children: [
3877
+ title && /* @__PURE__ */ jsx(Text, { className: classes.title, children: title }),
3878
+ text2 && /* @__PURE__ */ jsx(
3879
+ Text,
3880
+ {
3881
+ className: classes.text,
3882
+ color: title ? "text.subtlest" : "text",
3883
+ children: text2
3884
+ }
3885
+ )
3707
3886
  ] })
3708
3887
  ] });
3709
3888
  };
3710
- const Breadcrumbs = ({
3711
- items,
3712
- ...props
3713
- }) => {
3714
- const [className, otherProps] = splitProps(props);
3889
+ const Breadcrumbs = (props) => {
3890
+ const { items, ...rest } = props;
3891
+ const [className, otherProps] = splitProps(rest);
3715
3892
  return /* @__PURE__ */ jsx(Text, { as: "ul", className: cx(breadcrumbs({}), className), ...otherProps, children: items == null ? void 0 : items.map((item, index2) => /* @__PURE__ */ jsxs(Text, { as: "li", children: [
3716
3893
  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 }),
3717
3894
  index2 < (items == null ? void 0 : items.length) - 1 && /* @__PURE__ */ jsx(Text, { as: "span", family: "mono", size: "14", children: "/" })
3718
3895
  ] }, item.id)) });
3719
3896
  };
3720
- const Tag = ({
3721
- appearance,
3722
- hue,
3723
- iconPosition = "left",
3724
- children,
3725
- iconName,
3726
- ...props
3727
- }) => {
3728
- const [className, otherProps] = splitProps(props);
3897
+ const Tag = (props) => {
3898
+ const {
3899
+ appearance,
3900
+ hue,
3901
+ iconPosition = "left",
3902
+ children,
3903
+ iconName,
3904
+ ...rest
3905
+ } = props;
3906
+ const [className, otherProps] = splitProps(rest);
3729
3907
  const hasIcon = !!iconName;
3730
3908
  return /* @__PURE__ */ jsxs(
3731
3909
  Box,
@@ -3747,26 +3925,27 @@ const useChipGroup = () => {
3747
3925
  return useContext(ChipGroupContext);
3748
3926
  };
3749
3927
  const chipSizeToIconSize = {
3750
- small: "20",
3751
- default: "20",
3752
- large: "24"
3928
+ sm: "20",
3929
+ md: "20",
3930
+ lg: "24"
3753
3931
  };
3754
- const Chip = ({
3755
- size: size2 = "default",
3756
- children,
3757
- loading,
3758
- disabled,
3759
- deleted,
3760
- before,
3761
- after,
3762
- dismissable,
3763
- onDismiss,
3764
- value,
3765
- gap,
3766
- onClick,
3767
- ...props
3768
- }) => {
3769
- const [className, otherProps] = splitProps(props);
3932
+ const Chip = (props) => {
3933
+ const {
3934
+ size: size2 = "md",
3935
+ children,
3936
+ loading,
3937
+ disabled,
3938
+ deleted,
3939
+ before,
3940
+ after,
3941
+ dismissable,
3942
+ onDismiss,
3943
+ value,
3944
+ gap,
3945
+ onClick,
3946
+ ...rest
3947
+ } = props;
3948
+ const [className, otherProps] = splitProps(rest);
3770
3949
  const groupContext = useChipGroup();
3771
3950
  const buttonRef = useRef(null);
3772
3951
  const isSelectable = value !== void 0 && groupContext !== null;
@@ -4236,10 +4415,10 @@ function rectToClientRect(rect) {
4236
4415
  };
4237
4416
  }
4238
4417
  /*!
4239
- * tabbable 6.3.0
4418
+ * tabbable 6.4.0
4240
4419
  * @license MIT, https://github.com/focus-trap/tabbable/blob/master/LICENSE
4241
4420
  */
4242
- var candidateSelectors = ["input:not([inert])", "select:not([inert])", "textarea:not([inert])", "a[href]:not([inert])", "button:not([inert])", "[tabindex]:not(slot):not([inert])", "audio[controls]:not([inert])", "video[controls]:not([inert])", '[contenteditable]:not([contenteditable="false"]):not([inert])', "details>summary:first-of-type:not([inert])", "details:not([inert])"];
4421
+ var candidateSelectors = ["input:not([inert]):not([inert] *)", "select:not([inert]):not([inert] *)", "textarea:not([inert]):not([inert] *)", "a[href]:not([inert]):not([inert] *)", "button:not([inert]):not([inert] *)", "[tabindex]:not(slot):not([inert]):not([inert] *)", "audio[controls]:not([inert]):not([inert] *)", "video[controls]:not([inert]):not([inert] *)", '[contenteditable]:not([contenteditable="false"]):not([inert]):not([inert] *)', "details>summary:first-of-type:not([inert]):not([inert] *)", "details:not([inert]):not([inert] *)"];
4243
4422
  var candidateSelector = /* @__PURE__ */ candidateSelectors.join(",");
4244
4423
  var NoElement = typeof Element === "undefined";
4245
4424
  var matches = NoElement ? function() {
@@ -4257,7 +4436,9 @@ var _isInert = function isInert(node, lookUp) {
4257
4436
  }
4258
4437
  var inertAtt = node === null || node === void 0 ? void 0 : (_node$getAttribute = node.getAttribute) === null || _node$getAttribute === void 0 ? void 0 : _node$getAttribute.call(node, "inert");
4259
4438
  var inert = inertAtt === "" || inertAtt === "true";
4260
- var result = inert || lookUp && node && _isInert(node.parentNode);
4439
+ var result = inert || lookUp && node && // closest does not exist on shadow roots, so we fall back to a manual
4440
+ // lookup upward, in case it is not defined.
4441
+ (typeof node.closest === "function" ? node.closest("[inert]") : _isInert(node.parentNode));
4261
4442
  return result;
4262
4443
  };
4263
4444
  var isContentEditable = function isContentEditable2(node) {
@@ -4491,10 +4672,7 @@ var isDisabledFromFieldset = function isDisabledFromFieldset2(node) {
4491
4672
  return false;
4492
4673
  };
4493
4674
  var isNodeMatchingSelectorFocusable = function isNodeMatchingSelectorFocusable2(options, node) {
4494
- if (node.disabled || // we must do an inert look up to filter out any elements inside an inert ancestor
4495
- // because we're limited in the type of selectors we can use in JSDom (see related
4496
- // note related to `candidateSelectors`)
4497
- _isInert(node) || isHiddenInput(node) || isHidden(node, options) || // For a details element with a summary, the summary element gets the focus
4675
+ if (node.disabled || isHiddenInput(node) || isHidden(node, options) || // For a details element with a summary, the summary element gets the focus
4498
4676
  isDetailsWithSummary(node) || isDisabledFromFieldset(node)) {
4499
4677
  return false;
4500
4678
  }
@@ -8684,32 +8862,34 @@ const useMenuContext = () => {
8684
8862
  }
8685
8863
  return context2;
8686
8864
  };
8687
- const MenuTrigger = ({
8688
- children,
8689
- disabled = false
8690
- }) => {
8865
+ const MenuTrigger = (props) => {
8866
+ const { children, disabled = false } = props;
8691
8867
  const { refs, getReferenceProps, open } = useMenuContext();
8692
- return React__default.cloneElement(children, {
8693
- ref: refs.setReference,
8694
- "aria-haspopup": "menu",
8695
- "aria-expanded": open,
8696
- disabled,
8697
- ...getReferenceProps()
8698
- });
8868
+ return React__default.cloneElement(
8869
+ children,
8870
+ {
8871
+ ref: refs.setReference,
8872
+ "aria-haspopup": "menu",
8873
+ "aria-expanded": open,
8874
+ disabled,
8875
+ ...getReferenceProps()
8876
+ }
8877
+ );
8699
8878
  };
8700
- const Menu = ({
8701
- open,
8702
- onOpenChange,
8703
- placement = "bottom-start",
8704
- offset: offset$12 = 4,
8705
- children,
8706
- id,
8707
- size: size2,
8708
- indicatorPosition,
8709
- ...props
8710
- }) => {
8711
- const [className, otherProps] = splitProps(props);
8712
- const classes = menu({ size: size2, indicatorPosition });
8879
+ const Menu = (props) => {
8880
+ const {
8881
+ open,
8882
+ onOpenChange,
8883
+ placement = "bottom-start",
8884
+ offset: offset$12 = 4,
8885
+ children,
8886
+ id,
8887
+ packing,
8888
+ indicatorPosition,
8889
+ ...rest
8890
+ } = props;
8891
+ const [className, otherProps] = splitProps(rest);
8892
+ const classes = menu({ packing, indicatorPosition });
8713
8893
  const [activeIndex, setActiveIndex] = useState(null);
8714
8894
  const listRef = useRef([]);
8715
8895
  const listContentRef = useRef([]);
@@ -8803,22 +8983,22 @@ const highlightText$1 = (text2, match) => {
8803
8983
  (part, i) => regex.test(part) ? /* @__PURE__ */ jsx("mark", { children: part }, i) : part
8804
8984
  );
8805
8985
  };
8806
- const MenuItem = ({
8807
- type = "action",
8808
- selected = false,
8809
- onSelect,
8810
- disabled = false,
8811
- label: label2,
8812
- description,
8813
- iconLeft,
8814
- iconRight,
8815
- highlightMatch,
8816
- selectionIndicator = "checkmark",
8817
- index: index2,
8818
- className,
8819
- ...props
8820
- }) => {
8821
- const [cssClassName, otherProps] = splitProps(props);
8986
+ const MenuItem = (props) => {
8987
+ const {
8988
+ type = "action",
8989
+ selected = false,
8990
+ onSelect,
8991
+ disabled = false,
8992
+ label: label2,
8993
+ description,
8994
+ iconLeft,
8995
+ iconRight,
8996
+ highlightMatch,
8997
+ selectionIndicator = "checkmark",
8998
+ index: index2,
8999
+ ...rest
9000
+ } = props;
9001
+ const [className, otherProps] = splitProps(rest);
8822
9002
  const { getItemProps, activeIndex, listRef, classes, setOpen } = useMenuContext();
8823
9003
  const itemRef = useRef(null);
8824
9004
  useEffect(() => {
@@ -8876,7 +9056,7 @@ const MenuItem = ({
8876
9056
  "aria-disabled": disabled,
8877
9057
  "data-selected": selected,
8878
9058
  "data-active": isActive,
8879
- className: cx(classes.menuItem, cssClassName, className),
9059
+ className: cx(classes.menuItem, className),
8880
9060
  ...getItemProps({
8881
9061
  index: index2,
8882
9062
  active: isActive,
@@ -8896,35 +9076,28 @@ const MenuItem = ({
8896
9076
  }
8897
9077
  );
8898
9078
  };
8899
- const MenuDivider = ({
8900
- className,
8901
- ...props
8902
- }) => {
8903
- const [cssClassName, otherProps] = splitProps(props);
9079
+ const MenuDivider = (props) => {
9080
+ const [className, otherProps] = splitProps(props);
8904
9081
  const { classes } = useMenuContext();
8905
9082
  return /* @__PURE__ */ jsx(
8906
9083
  Box,
8907
9084
  {
8908
9085
  role: "separator",
8909
- className: cx(classes.menuDivider, cssClassName, className),
9086
+ className: cx(classes.menuDivider, className),
8910
9087
  ...otherProps
8911
9088
  }
8912
9089
  );
8913
9090
  };
8914
- const MenuGroup = ({
8915
- label: label2,
8916
- children,
8917
- className,
8918
- ...props
8919
- }) => {
8920
- const [cssClassName, otherProps] = splitProps(props);
9091
+ const MenuGroup = (props) => {
9092
+ const { label: label2, children, ...rest } = props;
9093
+ const [className, otherProps] = splitProps(rest);
8921
9094
  const { classes } = useMenuContext();
8922
9095
  return /* @__PURE__ */ jsxs(
8923
9096
  Box,
8924
9097
  {
8925
9098
  role: "group",
8926
9099
  "aria-label": label2,
8927
- className: cx(classes.menuGroup, cssClassName, className),
9100
+ className: cx(classes.menuGroup, className),
8928
9101
  ...otherProps,
8929
9102
  children: [
8930
9103
  label2 && /* @__PURE__ */ jsx(Box, { className: classes.menuGroupLabel, children: label2 }),
@@ -8933,21 +9106,20 @@ const MenuGroup = ({
8933
9106
  }
8934
9107
  );
8935
9108
  };
8936
- const MenuList = React__default.forwardRef(
8937
- ({ size: size2, indicatorPosition, role = "listbox", className, ...props }, ref) => {
8938
- const [cssClassName, otherProps] = splitProps(props);
8939
- const classes = menu({ size: size2, indicatorPosition });
8940
- return /* @__PURE__ */ jsx(
8941
- Box,
8942
- {
8943
- ref,
8944
- role,
8945
- className: cx(classes.menu, cssClassName, className),
8946
- ...otherProps
8947
- }
8948
- );
8949
- }
8950
- );
9109
+ const MenuList = (props) => {
9110
+ const { packing, indicatorPosition, role = "listbox", ref, ...rest } = props;
9111
+ const [className, otherProps] = splitProps(rest);
9112
+ const classes = menu({ packing, indicatorPosition });
9113
+ return /* @__PURE__ */ jsx(
9114
+ Box,
9115
+ {
9116
+ ref,
9117
+ role,
9118
+ className: cx(classes.menu, className),
9119
+ ...otherProps
9120
+ }
9121
+ );
9122
+ };
8951
9123
  MenuList.displayName = "MenuList";
8952
9124
  const highlightText = (text2, match) => {
8953
9125
  if (!match || typeof text2 !== "string") return text2;
@@ -8960,8 +9132,8 @@ const highlightText = (text2, match) => {
8960
9132
  (part, i) => regex.test(part) ? /* @__PURE__ */ jsx("mark", { children: part }, i) : part
8961
9133
  );
8962
9134
  };
8963
- const MenuListItem = React__default.forwardRef(
8964
- ({
9135
+ const MenuListItem = (props) => {
9136
+ const {
8965
9137
  type = "action",
8966
9138
  selected = false,
8967
9139
  active = false,
@@ -8973,104 +9145,93 @@ const MenuListItem = React__default.forwardRef(
8973
9145
  iconRight,
8974
9146
  highlightMatch,
8975
9147
  selectionIndicator = "checkmark",
8976
- size: size2,
9148
+ packing,
8977
9149
  indicatorPosition,
8978
9150
  role = "option",
8979
- className,
8980
- ...props
8981
- }, ref) => {
8982
- const [cssClassName, otherProps] = splitProps(props);
8983
- const classes = menu({ size: size2, indicatorPosition });
8984
- const checkboxId = useId$1();
8985
- const isSelectable = type === "single-select" || type === "multi-select";
8986
- const showIndicator = isSelectable;
8987
- const handleClick = useCallback(
8988
- (event) => {
8989
- if (disabled) return;
8990
- onClick == null ? void 0 : onClick(event);
8991
- },
8992
- [disabled, onClick]
8993
- );
8994
- const renderIndicator = () => {
8995
- if (!showIndicator) return null;
8996
- if (selectionIndicator === "checkbox") {
8997
- return /* @__PURE__ */ jsx(Box, { className: classes.menuItemIndicator, children: /* @__PURE__ */ jsx(
8998
- Checkbox,
8999
- {
9000
- name: `menu-list-item-checkbox-${checkboxId}`,
9001
- checked: selected,
9002
- onChange: () => {
9003
- },
9004
- tabIndex: -1,
9005
- "aria-hidden": true
9006
- }
9007
- ) });
9008
- }
9009
- return /* @__PURE__ */ jsx(Box, { className: classes.menuItemIndicator, children: selected && /* @__PURE__ */ jsx(Icon, { name: "check", size: "24" }) });
9010
- };
9011
- const renderLabel = () => {
9012
- const labelContent = typeof label2 === "string" && highlightMatch ? highlightText(label2, highlightMatch) : label2;
9013
- return /* @__PURE__ */ jsx(Box, { className: classes.menuItemLabel, children: labelContent });
9014
- };
9015
- return /* @__PURE__ */ jsxs(
9016
- Box,
9017
- {
9018
- ref,
9019
- role,
9020
- "aria-disabled": disabled,
9021
- "aria-selected": selected,
9022
- "data-selected": selected,
9023
- "data-active": active,
9024
- className: cx(classes.menuItem, cssClassName, className),
9025
- onClick: handleClick,
9026
- ...otherProps,
9027
- children: [
9028
- renderIndicator(),
9029
- iconLeft && /* @__PURE__ */ jsx(Box, { className: classes.menuItemIconLeft, children: /* @__PURE__ */ jsx(Icon, { name: iconLeft, size: "24" }) }),
9030
- /* @__PURE__ */ jsxs(Box, { className: classes.menuItemContent, children: [
9031
- renderLabel(),
9032
- description && /* @__PURE__ */ jsx(Box, { className: classes.menuItemDescription, children: description })
9033
- ] }),
9034
- iconRight && /* @__PURE__ */ jsx(Box, { className: classes.menuItemIconRight, children: /* @__PURE__ */ jsx(Icon, { name: iconRight, size: "24" }) })
9035
- ]
9036
- }
9037
- );
9038
- }
9039
- );
9151
+ ref,
9152
+ ...rest
9153
+ } = props;
9154
+ const [className, otherProps] = splitProps(rest);
9155
+ const classes = menu({ packing, indicatorPosition });
9156
+ const checkboxId = useId$1();
9157
+ const isSelectable = type === "single-select" || type === "multi-select";
9158
+ const showIndicator = isSelectable;
9159
+ const handleClick = useCallback(
9160
+ (event) => {
9161
+ if (disabled) return;
9162
+ onClick == null ? void 0 : onClick(event);
9163
+ },
9164
+ [disabled, onClick]
9165
+ );
9166
+ const renderIndicator = () => {
9167
+ if (!showIndicator) return null;
9168
+ if (selectionIndicator === "checkbox") {
9169
+ return /* @__PURE__ */ jsx(Box, { className: classes.menuItemIndicator, children: /* @__PURE__ */ jsx(
9170
+ Checkbox,
9171
+ {
9172
+ name: `menu-list-item-checkbox-${checkboxId}`,
9173
+ checked: selected,
9174
+ onChange: () => {
9175
+ },
9176
+ tabIndex: -1,
9177
+ "aria-hidden": true
9178
+ }
9179
+ ) });
9180
+ }
9181
+ return /* @__PURE__ */ jsx(Box, { className: classes.menuItemIndicator, children: selected && /* @__PURE__ */ jsx(Icon, { name: "check", size: "24" }) });
9182
+ };
9183
+ const renderLabel = () => {
9184
+ const labelContent = typeof label2 === "string" && highlightMatch ? highlightText(label2, highlightMatch) : label2;
9185
+ return /* @__PURE__ */ jsx(Box, { className: classes.menuItemLabel, children: labelContent });
9186
+ };
9187
+ return /* @__PURE__ */ jsxs(
9188
+ Box,
9189
+ {
9190
+ ref,
9191
+ role,
9192
+ "aria-disabled": disabled,
9193
+ "aria-selected": selected,
9194
+ "data-selected": selected,
9195
+ "data-active": active,
9196
+ className: cx(classes.menuItem, className),
9197
+ onClick: handleClick,
9198
+ ...otherProps,
9199
+ children: [
9200
+ renderIndicator(),
9201
+ iconLeft && /* @__PURE__ */ jsx(Box, { className: classes.menuItemIconLeft, children: /* @__PURE__ */ jsx(Icon, { name: iconLeft, size: "24" }) }),
9202
+ /* @__PURE__ */ jsxs(Box, { className: classes.menuItemContent, children: [
9203
+ renderLabel(),
9204
+ description && /* @__PURE__ */ jsx(Box, { className: classes.menuItemDescription, children: description })
9205
+ ] }),
9206
+ iconRight && /* @__PURE__ */ jsx(Box, { className: classes.menuItemIconRight, children: /* @__PURE__ */ jsx(Icon, { name: iconRight, size: "24" }) })
9207
+ ]
9208
+ }
9209
+ );
9210
+ };
9040
9211
  MenuListItem.displayName = "MenuListItem";
9041
- const MenuListDivider = ({
9042
- size: size2,
9043
- indicatorPosition,
9044
- className,
9045
- ...props
9046
- }) => {
9047
- const [cssClassName, otherProps] = splitProps(props);
9048
- const classes = menu({ size: size2, indicatorPosition });
9212
+ const MenuListDivider = (props) => {
9213
+ const { packing, indicatorPosition, ...rest } = props;
9214
+ const [className, otherProps] = splitProps(rest);
9215
+ const classes = menu({ packing, indicatorPosition });
9049
9216
  return /* @__PURE__ */ jsx(
9050
9217
  Box,
9051
9218
  {
9052
9219
  role: "separator",
9053
- className: cx(classes.menuDivider, cssClassName, className),
9220
+ className: cx(classes.menuDivider, className),
9054
9221
  ...otherProps
9055
9222
  }
9056
9223
  );
9057
9224
  };
9058
- const MenuListGroup = ({
9059
- label: label2,
9060
- size: size2,
9061
- indicatorPosition,
9062
- children,
9063
- className,
9064
- ...props
9065
- }) => {
9066
- const [cssClassName, otherProps] = splitProps(props);
9067
- const classes = menu({ size: size2, indicatorPosition });
9225
+ const MenuListGroup = (props) => {
9226
+ const { label: label2, packing, indicatorPosition, children, ...rest } = props;
9227
+ const [className, otherProps] = splitProps(rest);
9228
+ const classes = menu({ packing, indicatorPosition });
9068
9229
  return /* @__PURE__ */ jsxs(
9069
9230
  Box,
9070
9231
  {
9071
9232
  role: "group",
9072
9233
  "aria-label": label2,
9073
- className: cx(classes.menuGroup, cssClassName, className),
9234
+ className: cx(classes.menuGroup, className),
9074
9235
  ...otherProps,
9075
9236
  children: [
9076
9237
  label2 && /* @__PURE__ */ jsx(Box, { className: classes.menuGroupLabel, children: label2 }),
@@ -9087,17 +9248,21 @@ const caretStyles = css({
9087
9248
  transform: "rotate(180deg)"
9088
9249
  }
9089
9250
  });
9090
- const Dropdown = ({
9091
- label: label2,
9092
- placement = "bottom-start",
9093
- offset: offset2 = 4,
9094
- children,
9095
- id,
9096
- disabled = false,
9097
- size: size2,
9098
- indicatorPosition,
9099
- triggerProps
9100
- }) => {
9251
+ const Dropdown = (props) => {
9252
+ const {
9253
+ label: label2,
9254
+ placement = "bottom-start",
9255
+ offset: offset2 = 4,
9256
+ children,
9257
+ id,
9258
+ disabled = false,
9259
+ packing,
9260
+ indicatorPosition,
9261
+ triggerProps,
9262
+ ...rest
9263
+ } = props;
9264
+ const [className, otherProps] = splitProps(rest);
9265
+ const classes = menu({ packing, indicatorPosition });
9101
9266
  const [open, setOpen] = useState(false);
9102
9267
  return /* @__PURE__ */ jsxs(
9103
9268
  Menu,
@@ -9107,8 +9272,10 @@ const Dropdown = ({
9107
9272
  placement,
9108
9273
  offset: offset2,
9109
9274
  id,
9110
- size: size2,
9275
+ packing,
9111
9276
  indicatorPosition,
9277
+ className: cx(classes.menu, className),
9278
+ ...otherProps,
9112
9279
  children: [
9113
9280
  /* @__PURE__ */ jsx(MenuTrigger, { disabled, children: /* @__PURE__ */ jsxs(Button, { disabled, ...triggerProps, children: [
9114
9281
  label2,
@@ -9135,23 +9302,26 @@ const useSelectContext = () => {
9135
9302
  }
9136
9303
  return context2;
9137
9304
  };
9138
- const Select = ({
9139
- value: controlledValue,
9140
- onChange,
9141
- multiple = false,
9142
- placeholder = "Select...",
9143
- open: controlledOpen,
9144
- onOpenChange,
9145
- placement = "bottom-start",
9146
- offset: offset2 = 4,
9147
- children,
9148
- id,
9149
- disabled = false,
9150
- error: error2 = false,
9151
- size: size2 = "default",
9152
- indicatorPosition = "left",
9153
- ...props
9154
- }) => {
9305
+ const Select = (props) => {
9306
+ const {
9307
+ value: controlledValue,
9308
+ onChange,
9309
+ multiple = false,
9310
+ placeholder = "Select...",
9311
+ open: controlledOpen,
9312
+ onOpenChange,
9313
+ placement = "bottom-start",
9314
+ offset: offset2 = 4,
9315
+ children,
9316
+ id,
9317
+ disabled = false,
9318
+ error: error2 = false,
9319
+ size: size2 = "md",
9320
+ indicatorPosition = "left",
9321
+ packing = "default",
9322
+ ...rest
9323
+ } = props;
9324
+ const [className, otherProps] = splitProps(rest);
9155
9325
  const [internalOpen, setInternalOpen] = useState(false);
9156
9326
  const [internalValue, setInternalValue] = useState(
9157
9327
  null
@@ -9184,8 +9354,8 @@ const Select = ({
9184
9354
  }),
9185
9355
  [value, handleValueChange, multiple, placeholder]
9186
9356
  );
9187
- const options = React__default.Children.toArray(children).filter((child) => {
9188
- return React__default.isValidElement(child) && typeof child.props === "object" && child.props !== null && "value" in child.props;
9357
+ const options = Children.toArray(children).filter((child) => {
9358
+ return isValidElement(child) && typeof child.props === "object" && child.props !== null && "value" in child.props;
9189
9359
  });
9190
9360
  const getDisplayText = () => {
9191
9361
  var _a, _b;
@@ -9215,17 +9385,18 @@ const Select = ({
9215
9385
  placement,
9216
9386
  offset: offset2,
9217
9387
  id,
9218
- size: size2,
9388
+ packing,
9219
9389
  indicatorPosition,
9220
9390
  role: "listbox",
9221
9391
  "aria-orientation": "vertical",
9222
9392
  ...error2 && { "data-error": true },
9223
- ...props,
9393
+ ...otherProps,
9224
9394
  children: [
9225
9395
  /* @__PURE__ */ jsx(MenuTrigger, { disabled, children: /* @__PURE__ */ jsxs(
9226
9396
  Box,
9227
9397
  {
9228
- className: styles.trigger,
9398
+ className: cx(styles.trigger, className),
9399
+ size: size2,
9229
9400
  ...disabled && { "data-disabled": true },
9230
9401
  ...error2 && { "data-error": true },
9231
9402
  children: [
@@ -9242,8 +9413,8 @@ const Select = ({
9242
9413
  ]
9243
9414
  }
9244
9415
  ) }),
9245
- React__default.Children.map(children, (child, index2) => {
9246
- if (!React__default.isValidElement(child)) return child;
9416
+ Children.map(children, (child, index2) => {
9417
+ if (!isValidElement(child)) return child;
9247
9418
  if (typeof child.props === "object" && child.props !== null && "value" in child.props) {
9248
9419
  const childProps = child.props;
9249
9420
  const {
@@ -9288,54 +9459,52 @@ const Select = ({
9288
9459
  }
9289
9460
  ) });
9290
9461
  };
9291
- const SelectOption = ({
9292
- value: _value,
9293
- label: _label,
9294
- disabled: _disabled = false,
9295
- description: _description,
9296
- iconLeft: _iconLeft,
9297
- iconRight: _iconRight,
9298
- ..._props
9299
- }) => {
9462
+ const SelectOption = (props) => {
9463
+ const {
9464
+ value: _value,
9465
+ label: _label,
9466
+ disabled: _disabled = false,
9467
+ description: _description,
9468
+ iconLeft: _iconLeft,
9469
+ iconRight: _iconRight
9470
+ } = props;
9300
9471
  return null;
9301
9472
  };
9302
- const SelectTrigger = ({
9303
- children,
9304
- disabled = false
9305
- }) => {
9473
+ const SelectTrigger = (props) => {
9474
+ const { children, disabled = false, ...rest } = props;
9306
9475
  const { refs, getReferenceProps, open } = useMenuContext();
9307
- return React__default.cloneElement(
9308
- children,
9309
- {
9310
- ref: refs.setReference,
9311
- "aria-haspopup": "listbox",
9312
- "aria-expanded": open,
9313
- disabled,
9314
- ...getReferenceProps()
9315
- }
9316
- );
9476
+ return cloneElement(children, {
9477
+ ref: refs.setReference,
9478
+ "aria-haspopup": "listbox",
9479
+ "aria-expanded": open,
9480
+ disabled,
9481
+ ...rest,
9482
+ ...getReferenceProps()
9483
+ });
9317
9484
  };
9318
9485
  const defaultFilter = (option, inputValue) => {
9319
9486
  return option.label.toLowerCase().includes(inputValue.toLowerCase());
9320
9487
  };
9321
- const Autocomplete = ({
9322
- name,
9323
- value,
9324
- onChange,
9325
- options,
9326
- onSelect,
9327
- placeholder,
9328
- placement = "bottom-start",
9329
- offset: offset$12 = 4,
9330
- id,
9331
- disabled = false,
9332
- error: error2 = false,
9333
- size: size$12,
9334
- indicatorPosition,
9335
- filterFn = defaultFilter,
9336
- noResultsMessage = "No results found",
9337
- inputProps
9338
- }) => {
9488
+ const Autocomplete = (props) => {
9489
+ const {
9490
+ name,
9491
+ value,
9492
+ onChange,
9493
+ options,
9494
+ onSelect,
9495
+ placeholder,
9496
+ placement = "bottom-start",
9497
+ offset: offset$12 = 4,
9498
+ id,
9499
+ disabled = false,
9500
+ error: error2 = false,
9501
+ packing,
9502
+ size: size$12,
9503
+ indicatorPosition,
9504
+ filterFn = defaultFilter,
9505
+ noResultsMessage = "No results found",
9506
+ inputProps
9507
+ } = props;
9339
9508
  const [open, setOpen] = useState(false);
9340
9509
  const [activeIndex, setActiveIndex] = useState(null);
9341
9510
  const listRef = useRef([]);
@@ -9371,12 +9540,9 @@ const Autocomplete = ({
9371
9540
  virtual: true,
9372
9541
  loop: true
9373
9542
  });
9374
- const { getReferenceProps, getFloatingProps, getItemProps } = useInteractions([
9375
- click,
9376
- dismiss,
9377
- role,
9378
- listNavigation
9379
- ]);
9543
+ const { getReferenceProps, getFloatingProps, getItemProps } = useInteractions(
9544
+ [click, dismiss, role, listNavigation]
9545
+ );
9380
9546
  const handleInputChange = useCallback(
9381
9547
  (e) => {
9382
9548
  onChange(e.target.value);
@@ -9386,10 +9552,12 @@ const Autocomplete = ({
9386
9552
  );
9387
9553
  const handleInputKeyDown = useCallback(
9388
9554
  (e) => {
9389
- if (e.key === "Enter" && activeIndex !== null && filteredOptions[activeIndex]) {
9555
+ if (e.key === "Enter" && open && filteredOptions.length > 0) {
9390
9556
  e.preventDefault();
9391
- const option = filteredOptions[activeIndex];
9392
- if (!option.disabled) {
9557
+ e.stopPropagation();
9558
+ const indexToSelect = activeIndex !== null ? activeIndex : 0;
9559
+ const option = filteredOptions[indexToSelect];
9560
+ if (option && !option.disabled) {
9393
9561
  onSelect(option);
9394
9562
  onChange(option.label);
9395
9563
  setOpen(false);
@@ -9400,6 +9568,20 @@ const Autocomplete = ({
9400
9568
  setOpen(true);
9401
9569
  }
9402
9570
  },
9571
+ [activeIndex, filteredOptions, onSelect, onChange, open]
9572
+ );
9573
+ const handleMenuKeyDown = useCallback(
9574
+ (e) => {
9575
+ if (e.key === "Enter" && activeIndex !== null && filteredOptions[activeIndex]) {
9576
+ e.preventDefault();
9577
+ const option = filteredOptions[activeIndex];
9578
+ if (!option.disabled) {
9579
+ onSelect(option);
9580
+ onChange(option.label);
9581
+ setOpen(false);
9582
+ }
9583
+ }
9584
+ },
9403
9585
  [activeIndex, filteredOptions, onSelect, onChange]
9404
9586
  );
9405
9587
  const handleOptionClick = useCallback(
@@ -9411,6 +9593,16 @@ const Autocomplete = ({
9411
9593
  },
9412
9594
  [onSelect, onChange]
9413
9595
  );
9596
+ const handleOptionKeyDown = useCallback(
9597
+ (e, option) => {
9598
+ if (option.disabled) return;
9599
+ if (e.key === "Enter" || e.key === " ") {
9600
+ e.preventDefault();
9601
+ handleOptionClick(option);
9602
+ }
9603
+ },
9604
+ [handleOptionClick]
9605
+ );
9414
9606
  const handleInputFocus = useCallback(() => {
9415
9607
  if (filteredOptions.length > 0) {
9416
9608
  setOpen(true);
@@ -9424,8 +9616,8 @@ const Autocomplete = ({
9424
9616
  name,
9425
9617
  id,
9426
9618
  value,
9619
+ size: size$12,
9427
9620
  onChange: handleInputChange,
9428
- onKeyDown: handleInputKeyDown,
9429
9621
  onFocus: handleInputFocus,
9430
9622
  placeholder,
9431
9623
  disabled,
@@ -9434,55 +9626,93 @@ const Autocomplete = ({
9434
9626
  "aria-autocomplete": "list",
9435
9627
  "aria-expanded": open,
9436
9628
  "aria-controls": open ? `${id ?? name}-listbox` : void 0,
9437
- ...getReferenceProps(),
9629
+ ...getReferenceProps({
9630
+ onKeyDown: handleInputKeyDown
9631
+ }),
9438
9632
  ...inputProps
9439
9633
  }
9440
9634
  ),
9441
- open && /* @__PURE__ */ jsx(FloatingPortal, { children: /* @__PURE__ */ jsx(FloatingFocusManager, { context: context2, modal: false, initialFocus: -1, children: /* @__PURE__ */ jsx(
9442
- MenuList,
9635
+ open && /* @__PURE__ */ jsx(FloatingPortal, { children: /* @__PURE__ */ jsx(
9636
+ FloatingFocusManager,
9443
9637
  {
9444
- ref: refs.setFloating,
9445
- style: floatingStyles,
9446
- id: `${id ?? name}-listbox`,
9447
- role: "listbox",
9448
- size: size$12,
9449
- indicatorPosition,
9450
- ...getFloatingProps(),
9451
- children: filteredOptions.length === 0 ? /* @__PURE__ */ jsx(
9452
- MenuListItem,
9638
+ context: context2,
9639
+ modal: false,
9640
+ initialFocus: -1,
9641
+ children: /* @__PURE__ */ jsx(
9642
+ MenuList,
9453
9643
  {
9454
- label: noResultsMessage,
9455
- disabled: true,
9456
- size: size$12,
9457
- indicatorPosition
9644
+ ref: refs.setFloating,
9645
+ style: floatingStyles,
9646
+ id: `${id ?? name}-listbox`,
9647
+ role: "listbox",
9648
+ packing,
9649
+ indicatorPosition,
9650
+ onKeyDown: handleMenuKeyDown,
9651
+ ...getFloatingProps(),
9652
+ children: filteredOptions.length === 0 ? /* @__PURE__ */ jsx(
9653
+ MenuListItem,
9654
+ {
9655
+ label: noResultsMessage,
9656
+ disabled: true,
9657
+ indicatorPosition
9658
+ }
9659
+ ) : filteredOptions.map((option, index2) => {
9660
+ const isActive = activeIndex === index2;
9661
+ return /* @__PURE__ */ jsx(
9662
+ MenuListItem,
9663
+ {
9664
+ ref: (node) => {
9665
+ listRef.current[index2] = node;
9666
+ },
9667
+ active: isActive,
9668
+ "aria-selected": isActive,
9669
+ disabled: option.disabled,
9670
+ label: option.label,
9671
+ description: option.description,
9672
+ iconLeft: option.icon,
9673
+ highlightMatch: value || void 0,
9674
+ indicatorPosition,
9675
+ ...getItemProps({
9676
+ index: index2,
9677
+ active: isActive,
9678
+ onClick: () => handleOptionClick(option),
9679
+ onKeyDown: (e) => handleOptionKeyDown(e, option)
9680
+ })
9681
+ },
9682
+ option.id
9683
+ );
9684
+ })
9458
9685
  }
9459
- ) : filteredOptions.map((option, index2) => {
9460
- const isActive = activeIndex === index2;
9461
- return /* @__PURE__ */ jsx(
9462
- MenuListItem,
9463
- {
9464
- ref: (node) => {
9465
- listRef.current[index2] = node;
9466
- },
9467
- active: isActive,
9468
- "aria-selected": isActive,
9469
- disabled: option.disabled,
9470
- label: option.label,
9471
- description: option.description,
9472
- iconLeft: option.icon,
9473
- highlightMatch: value || void 0,
9474
- onClick: () => handleOptionClick(option),
9475
- size: size$12,
9476
- indicatorPosition,
9477
- ...getItemProps()
9478
- },
9479
- option.id
9480
- );
9481
- })
9686
+ )
9482
9687
  }
9483
- ) }) })
9688
+ ) })
9484
9689
  ] });
9485
9690
  };
9691
+ const ThemeContext = createContext(void 0);
9692
+ function useTheme() {
9693
+ const context2 = useContext(ThemeContext);
9694
+ if (context2 === void 0) {
9695
+ throw new Error("useTheme must be used within a ThemeProvider");
9696
+ }
9697
+ return context2;
9698
+ }
9699
+ const ThemeSwitcher = (props) => {
9700
+ const [className, otherProps] = splitProps(props);
9701
+ const { theme, setTheme } = useTheme();
9702
+ const toggleTheme = () => {
9703
+ setTheme(theme === "light" ? "dark" : "light");
9704
+ };
9705
+ return /* @__PURE__ */ jsx(
9706
+ Box,
9707
+ {
9708
+ as: "button",
9709
+ className: cx(themeSwitcher(), className),
9710
+ onClick: toggleTheme,
9711
+ "aria-label": `Switch to ${theme === "light" ? "dark" : "light"} theme`,
9712
+ ...otherProps
9713
+ }
9714
+ );
9715
+ };
9486
9716
  const THEME_STORAGE_KEY = "okshaun-theme-preference";
9487
9717
  function getInitialTheme() {
9488
9718
  const storedTheme = localStorage.getItem(THEME_STORAGE_KEY);
@@ -9494,7 +9724,6 @@ function getInitialTheme() {
9494
9724
  }
9495
9725
  return "light";
9496
9726
  }
9497
- const ThemeContext = createContext(void 0);
9498
9727
  function ThemeProvider({ children }) {
9499
9728
  const [theme, setThemeState] = useState(() => getInitialTheme());
9500
9729
  const setTheme = (newTheme) => {
@@ -9519,27 +9748,6 @@ function ThemeProvider({ children }) {
9519
9748
  }, []);
9520
9749
  return /* @__PURE__ */ jsx(ThemeContext.Provider, { value: { theme, setTheme }, children });
9521
9750
  }
9522
- function useTheme() {
9523
- const context2 = useContext(ThemeContext);
9524
- if (context2 === void 0) {
9525
- throw new Error("useTheme must be used within a ThemeProvider");
9526
- }
9527
- return context2;
9528
- }
9529
- function ThemeSwitcher() {
9530
- const { theme, setTheme } = useTheme();
9531
- const toggleTheme = () => {
9532
- setTheme(theme === "light" ? "dark" : "light");
9533
- };
9534
- return /* @__PURE__ */ jsx(
9535
- "button",
9536
- {
9537
- className: themeSwitcher(),
9538
- onClick: toggleTheme,
9539
- "aria-label": `Switch to ${theme === "light" ? "dark" : "light"} theme`
9540
- }
9541
- );
9542
- }
9543
9751
  function useMediaQuery(breakpoint, direction = "min") {
9544
9752
  const query = useMemo(() => {
9545
9753
  const breakpointValue = breakpoints[breakpoint];
@@ -9572,7 +9780,7 @@ function useMediaQuery(breakpoint, direction = "min") {
9572
9780
  }
9573
9781
  function useContainerQuery(containerRef, size2, direction = "min") {
9574
9782
  const query = useMemo(() => {
9575
- const sizeValue = containerSizes[size2].value;
9783
+ const sizeValue = containerSizes[size2];
9576
9784
  const sizeNum = parseFloat(sizeValue);
9577
9785
  return direction === "min" ? `(min-width: ${sizeValue})` : `(max-width: ${sizeNum - 0.0625}rem)`;
9578
9786
  }, [size2, direction]);
@@ -9583,7 +9791,7 @@ function useContainerQuery(containerRef, size2, direction = "min") {
9583
9791
  };
9584
9792
  }
9585
9793
  const element = containerRef.current;
9586
- const sizeValue = containerSizes[size2].value;
9794
+ const sizeValue = containerSizes[size2];
9587
9795
  const sizeNum = parseFloat(sizeValue);
9588
9796
  const threshold = direction === "min" ? sizeNum : sizeNum - 0.0625;
9589
9797
  const checkSize = () => {
@@ -9628,7 +9836,7 @@ function useContainerQuery(containerRef, size2, direction = "min") {
9628
9836
  return false;
9629
9837
  }
9630
9838
  const element = containerRef.current;
9631
- const sizeValue = containerSizes[size2].value;
9839
+ const sizeValue = containerSizes[size2];
9632
9840
  const sizeNum = parseFloat(sizeValue);
9633
9841
  const threshold = direction === "min" ? sizeNum : sizeNum - 0.0625;
9634
9842
  if ("queryContainer" in element) {
@@ -9677,16 +9885,17 @@ const useModalContext = () => {
9677
9885
  }
9678
9886
  return context2;
9679
9887
  };
9680
- const Modal = ({
9681
- open,
9682
- onOpenChange,
9683
- size: size2 = "md",
9684
- preventOverlayClose = false,
9685
- children,
9686
- id,
9687
- ...props
9688
- }) => {
9689
- const [className, otherProps] = splitProps(props);
9888
+ const Modal = (props) => {
9889
+ const {
9890
+ open,
9891
+ onOpenChange,
9892
+ size: size2 = "md",
9893
+ preventOverlayClose = false,
9894
+ children,
9895
+ id,
9896
+ ...rest
9897
+ } = props;
9898
+ const [className, otherProps] = splitProps(rest);
9690
9899
  const classes = modal({ size: size2 });
9691
9900
  const [isClosing, setIsClosing] = useState(false);
9692
9901
  const [shouldRender, setShouldRender] = useState(open);
@@ -9756,13 +9965,9 @@ const Modal = ({
9756
9965
  ) })
9757
9966
  ] }) });
9758
9967
  };
9759
- const ModalHeader = ({
9760
- title,
9761
- showCloseButton = true,
9762
- children,
9763
- ...props
9764
- }) => {
9765
- const [className, otherProps] = splitProps(props);
9968
+ const ModalHeader = (props) => {
9969
+ const { title, showCloseButton = true, children, ...rest } = props;
9970
+ const [className, otherProps] = splitProps(rest);
9766
9971
  const classes = modal();
9767
9972
  const { onClose } = useModalContext();
9768
9973
  return /* @__PURE__ */ jsx(Box, { className: cx(classes.header, className), ...otherProps, children: children ? children : /* @__PURE__ */ jsxs(Fragment, { children: [
@@ -9787,16 +9992,83 @@ const ModalHeader = ({
9787
9992
  )
9788
9993
  ] }) });
9789
9994
  };
9790
- const ModalBody = ({ children, ...props }) => {
9791
- const [className, otherProps] = splitProps(props);
9995
+ const ModalBody = (props) => {
9996
+ const { children, ...rest } = props;
9997
+ const [className, otherProps] = splitProps(rest);
9792
9998
  const classes = modal();
9793
9999
  return /* @__PURE__ */ jsx(Box, { className: cx(classes.body, className), ...otherProps, children });
9794
10000
  };
9795
- const ModalFooter = ({ children, ...props }) => {
9796
- const [className, otherProps] = splitProps(props);
10001
+ const ModalFooter = (props) => {
10002
+ const { children, ...rest } = props;
10003
+ const [className, otherProps] = splitProps(rest);
9797
10004
  const classes = modal();
9798
10005
  return /* @__PURE__ */ jsx(Box, { className: cx(classes.footer, className), ...otherProps, children });
9799
10006
  };
10007
+ const FormField = (props) => {
10008
+ const {
10009
+ layout = "default",
10010
+ label: label2,
10011
+ helpText,
10012
+ required,
10013
+ error: error2,
10014
+ errorText,
10015
+ disabled,
10016
+ tooltip: tooltip2,
10017
+ tooltipTitle,
10018
+ tooltipDescription,
10019
+ tooltipCaret,
10020
+ children,
10021
+ ...rest
10022
+ } = props;
10023
+ const [className, otherProps] = splitProps(rest);
10024
+ const { formFieldContainer, contentWrapper, labelWrapper, headLabel } = formField({
10025
+ layout: layout === "inline" ? "inline" : "default"
10026
+ });
10027
+ const enhancedChildren = Children.map(children, (child) => {
10028
+ if (isValidElement(child)) {
10029
+ const c = child;
10030
+ return cloneElement(c, {
10031
+ error: error2 ?? c.props.error
10032
+ // disabled: disabled ?? c.props.disabled,
10033
+ });
10034
+ }
10035
+ return child;
10036
+ });
10037
+ return /* @__PURE__ */ jsxs(
10038
+ Box,
10039
+ {
10040
+ className: cx(formFieldContainer, className),
10041
+ ...otherProps,
10042
+ disabled,
10043
+ children: [
10044
+ /* @__PURE__ */ jsxs(Box, { className: labelWrapper, children: [
10045
+ /* @__PURE__ */ jsxs(Box, { className: headLabel, children: [
10046
+ /* @__PURE__ */ jsxs(Text, { textStyle: "body.md", children: [
10047
+ label2,
10048
+ " "
10049
+ ] }),
10050
+ required && /* @__PURE__ */ jsx(Text, { as: "span", color: "text.error", children: "*" }),
10051
+ tooltip2 && /* @__PURE__ */ jsx(
10052
+ Tooltip,
10053
+ {
10054
+ title: tooltipTitle,
10055
+ text: `${tooltipDescription}`,
10056
+ caret: tooltipCaret,
10057
+ children: /* @__PURE__ */ jsx(Icon, { name: "info", fill: "icon.decorative" })
10058
+ }
10059
+ )
10060
+ ] }),
10061
+ layout === "default" && helpText && /* @__PURE__ */ jsx(Text, { as: "span", textStyle: "body.sm", children: helpText })
10062
+ ] }),
10063
+ /* @__PURE__ */ jsxs(Box, { className: contentWrapper, children: [
10064
+ enhancedChildren,
10065
+ layout === "inline" && /* @__PURE__ */ jsx(Text, { textStyle: "body.sm", children: helpText }),
10066
+ error2 && /* @__PURE__ */ jsx(Text, { as: "span", textStyle: "body.xs", color: "text.error", children: errorText })
10067
+ ] })
10068
+ ]
10069
+ }
10070
+ );
10071
+ };
9800
10072
  export {
9801
10073
  Autocomplete,
9802
10074
  Avatar,
@@ -9813,6 +10085,7 @@ export {
9813
10085
  Code,
9814
10086
  Divider,
9815
10087
  Dropdown,
10088
+ FormField,
9816
10089
  Heading,
9817
10090
  Icon,
9818
10091
  IconButton,
@@ -9848,6 +10121,7 @@ export {
9848
10121
  Toggle,
9849
10122
  ToggleInput,
9850
10123
  Tooltip,
10124
+ o as okshaunPreset,
9851
10125
  splitProps,
9852
10126
  useContainerQuery,
9853
10127
  useMediaQuery,