@adamjanicki/ui 1.5.8 → 1.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/components/Accordion/Accordion.d.ts +3 -11
  2. package/components/Accordion/Accordion.js +27 -5
  3. package/components/Box/Box.js +3 -38
  4. package/components/Button/Button.d.ts +6 -12
  5. package/components/Button/Button.js +12 -12
  6. package/components/Carousel/Carousel.js +5 -1
  7. package/components/ClickOutside/ClickOutside.d.ts +3 -3
  8. package/components/ClickOutside/ClickOutside.js +1 -1
  9. package/components/Icon/Icon.d.ts +3 -2
  10. package/components/Icon/Icon.js +2 -4
  11. package/components/Icon/icons.d.ts +2 -7
  12. package/components/Icon/icons.js +174 -23
  13. package/components/Input/IconInput.js +1 -1
  14. package/components/Input/Input.js +1 -1
  15. package/components/Input/TextArea.js +1 -1
  16. package/components/Layer/Layer.d.ts +3 -3
  17. package/components/Layer/Layer.js +19 -18
  18. package/components/Link/Link.d.ts +38 -8
  19. package/components/Link/Link.js +14 -8
  20. package/components/Link/index.d.ts +2 -2
  21. package/components/Link/index.js +2 -2
  22. package/components/Select/Select.js +1 -1
  23. package/dist/aui.cjs.js +22 -0
  24. package/dist/aui.es.js +1091 -0
  25. package/dist/aui.umd.js +22 -0
  26. package/functions/assertDefined.d.ts +8 -0
  27. package/functions/assertDefined.js +13 -0
  28. package/functions/classNames.js +4 -1
  29. package/functions/index.d.ts +2 -2
  30. package/functions/index.js +2 -2
  31. package/package.json +14 -4
  32. package/style.css +1 -564
  33. package/utils/transformLayout.d.ts +2 -0
  34. package/utils/transformLayout.js +76 -0
  35. package/utils/types.d.ts +51 -34
  36. package/vite.config.ts +23 -0
  37. package/functions/assert.d.ts +0 -15
  38. package/functions/assert.js +0 -24
@@ -1,18 +1,10 @@
1
1
  import React from "react";
2
- import type { Style } from "../../utils/types";
3
- type Props = {
2
+ import { type BoxProps } from "../Box/Box";
3
+ type Props = Omit<BoxProps, "children"> & {
4
4
  /**
5
5
  * Drawers to render as accordion sections
6
6
  */
7
7
  drawers: Drawer[];
8
- /**
9
- * [Optional] additional class name to apply to the accordion
10
- */
11
- className?: string;
12
- /**
13
- * [Optional] additional styles to apply to the accordion
14
- */
15
- style?: Style;
16
8
  /**
17
9
  * Duration of the drawer animation (in seconds)
18
10
  */
@@ -23,7 +15,7 @@ type Props = {
23
15
  */
24
16
  hideDividers?: boolean;
25
17
  };
26
- declare const Accordion: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLDivElement>>;
18
+ declare const Accordion: React.ForwardRefExoticComponent<Omit<Props, "ref"> & React.RefAttributes<HTMLDivElement>>;
27
19
  type Drawer = {
28
20
  /**
29
21
  * Label for the accordion drawer
@@ -1,14 +1,36 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ var __rest = (this && this.__rest) || function (s, e) {
13
+ var t = {};
14
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
15
+ t[p] = s[p];
16
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
17
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
18
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
19
+ t[p[i]] = s[p[i]];
20
+ }
21
+ return t;
22
+ };
1
23
  import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
24
  import React, { useState, useRef, useEffect } from "react";
3
- import Box from "../Box";
25
+ import Box from "../Box/Box";
4
26
  import Icon from "../Icon";
5
27
  import { UnstyledButton } from "../Button";
6
28
  import Animated from "../Animated";
7
29
  import { classNames } from "../../functions";
8
30
  var Accordion = React.forwardRef(function (_a, ref) {
9
- var drawers = _a.drawers, className = _a.className, style = _a.style, duration = _a.duration, hideDividers = _a.hideDividers;
31
+ var drawers = _a.drawers, className = _a.className, duration = _a.duration, hideDividers = _a.hideDividers, layout = _a.layout, rest = __rest(_a, ["drawers", "className", "duration", "hideDividers", "layout"]);
10
32
  var _b = useState(new Set()), openIndices = _b[0], setOpenIndices = _b[1];
11
- return (_jsx(Box, { layout: { axis: "y" }, className: classNames("aui-accordion aui-corners--rounded", className), style: style, ref: ref, children: drawers.map(function (item, i) { return (_jsx(Drawer, { item: item, open: openIndices.has(i), onOpenChange: function (open) {
33
+ return (_jsx(Box, __assign({ layout: __assign({ axis: "y" }, layout) }, rest, { className: classNames("aui-accordion aui-corners--rounded", className), ref: ref, children: drawers.map(function (item, i) { return (_jsx(Drawer, { item: item, open: openIndices.has(i), onOpenChange: function (open) {
12
34
  return setOpenIndices(function (prev) {
13
35
  var next = new Set(prev);
14
36
  if (open) {
@@ -19,7 +41,7 @@ var Accordion = React.forwardRef(function (_a, ref) {
19
41
  }
20
42
  return next;
21
43
  });
22
- }, duration: duration, showDivider: !hideDividers && i < drawers.length - 1 }, i)); }) }));
44
+ }, duration: duration, showDivider: !hideDividers && i < drawers.length - 1 }, i)); }) })));
23
45
  });
24
46
  var Drawer = function (_a) {
25
47
  var item = _a.item, open = _a.open, onOpenChange = _a.onOpenChange, duration = _a.duration, showDivider = _a.showDivider;
@@ -33,7 +55,7 @@ var Drawer = function (_a) {
33
55
  }, [open, children]);
34
56
  // TODO: change this to use calc-size when supported
35
57
  // https://developer.mozilla.org/en-US/docs/Web/CSS/calc-size#browser_compatibility
36
- return (_jsxs(_Fragment, { children: [_jsxs(Box, { layout: { axis: "y" }, children: [_jsx(UnstyledButton, { onClick: function () { return onOpenChange(!open); }, children: _jsxs(Box, { layout: { axis: "x", align: "center", gap: "m", padding: "l" }, children: [_jsx(Icon, { size: 12, icon: open ? "down" : "right", className: "aui-accordion-arrow" }), _jsx("span", { className: "aui-accordion-label", children: item.label })] }) }), _jsx(Animated, { style: { overflow: "hidden" }, keepMounted: true, duration: duration, animated: open, animateFrom: {
58
+ return (_jsxs(_Fragment, { children: [_jsxs(Box, { layout: { axis: "y" }, children: [_jsx(UnstyledButton, { onClick: function () { return onOpenChange(!open); }, children: _jsxs(Box, { layout: { axis: "x", align: "center", gap: "s", padding: "m" }, children: [_jsx(Icon, { size: "xs", icon: open ? "chevron-down" : "chevron-right", className: "aui-accordion-arrow" }), _jsx("span", { className: "aui-accordion-label", children: item.label })] }) }), _jsx(Animated, { style: { overflow: "hidden" }, keepMounted: true, duration: duration, animated: open, animateFrom: {
37
59
  style: {
38
60
  visibility: "hidden",
39
61
  height: 0,
@@ -23,44 +23,9 @@ var __rest = (this && this.__rest) || function (s, e) {
23
23
  import { jsx as _jsx } from "react/jsx-runtime";
24
24
  import React from "react";
25
25
  import { classNames } from "../../functions";
26
+ import transformLayout from "../../utils/transformLayout";
26
27
  var Box = React.forwardRef(function (_a, ref) {
27
- var layout = _a.layout, className = _a.className, style = _a.style, rest = __rest(_a, ["layout", "className", "style"]);
28
- var transformedLayout = transformLayout(layout);
29
- return (_jsx("div", __assign({}, rest, { className: classNames(transformedLayout.className, className), style: __assign(__assign({}, transformedLayout.style), style), ref: ref })));
28
+ var layout = _a.layout, className = _a.className, rest = __rest(_a, ["layout", "className"]);
29
+ return (_jsx("div", __assign({}, rest, { className: classNames(transformLayout(layout), className), ref: ref })));
30
30
  });
31
- function transformLayout(layout) {
32
- if (!layout)
33
- return { className: undefined, style: undefined };
34
- var axis = layout.axis, gap = layout.gap, align = layout.align, justify = layout.justify, padding = layout.padding, margin = layout.margin, wrap = layout.wrap;
35
- var style = {};
36
- var className = "aui-flex-".concat(axis);
37
- if (align) {
38
- className = classNames(className, "aui-align-".concat(align));
39
- }
40
- if (justify) {
41
- className = classNames(className, "aui-justify-".concat(justify));
42
- }
43
- if (wrap) {
44
- className = classNames(className, "aui-flex-wrap");
45
- }
46
- if (gap) {
47
- if (typeof gap === "number")
48
- style.gap = gap;
49
- else
50
- className = classNames(className, "aui-gap-".concat(gap));
51
- }
52
- if (padding) {
53
- if (typeof padding === "number")
54
- style.padding = padding;
55
- else
56
- className = classNames(className, "aui-pa-".concat(padding));
57
- }
58
- if (margin) {
59
- if (typeof margin === "number")
60
- style.margin = margin;
61
- else
62
- className = classNames(className, "aui-ma-".concat(margin));
63
- }
64
- return { className: className, style: style };
65
- }
66
31
  export default Box;
@@ -1,20 +1,12 @@
1
1
  import React from "react";
2
- import { type CustomLinkElement } from "../Link/Link";
3
- import type { CornerType } from "../../utils/types";
2
+ import type { CornerType, Layout } from "../../utils/types";
4
3
  type DefaultButtonProps = React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement> & {
5
4
  /**
6
- * [Optional] This can be used as a link if the `to` prop is provided
7
- * If this is the case, the onClick event will be ignored
5
+ * Additional styles to apply to the layout that are transformed to classNames to be easier to override if needed
8
6
  */
9
- to?: string;
10
- /**
11
- * [Optional] Custom link element to use
12
- * This is useful for using a different link element, like a React Router Link
13
- * If this is not provided, a normal anchor tag will be used
14
- */
15
- LinkElement?: CustomLinkElement;
7
+ layout?: Layout;
16
8
  };
17
- type ButtonProps = DefaultButtonProps & {
9
+ export type VisualButtonProps = {
18
10
  /**
19
11
  * Type of button
20
12
  * @default "primary"
@@ -31,6 +23,8 @@ type ButtonProps = DefaultButtonProps & {
31
23
  */
32
24
  size?: "regular" | "small";
33
25
  };
26
+ type ButtonProps = DefaultButtonProps & VisualButtonProps;
34
27
  export declare const UnstyledButton: React.ForwardRefExoticComponent<Omit<DefaultButtonProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
35
28
  declare const Button: React.ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
29
+ export declare const getButtonClassName: ({ variant, corners, size, }: VisualButtonProps) => string;
36
30
  export default Button;
@@ -21,19 +21,19 @@ var __rest = (this && this.__rest) || function (s, e) {
21
21
  return t;
22
22
  };
23
23
  import { jsx as _jsx } from "react/jsx-runtime";
24
- import { forwardRef } from "react";
25
- import { UnstyledLink } from "../Link/Link";
24
+ import React from "react";
26
25
  import classNames from "../../functions/classNames";
27
- export var UnstyledButton = forwardRef(function (_a, ref) {
28
- var to = _a.to, LinkElement = _a.LinkElement, className = _a.className, props = __rest(_a, ["to", "LinkElement", "className"]);
29
- className = classNames("aui-button-base", className);
30
- if (to) {
31
- return (_jsx(UnstyledLink, { to: to, className: className, style: props.style, role: "button", LinkElement: LinkElement, "aria-label": props["aria-label"], children: props.children }));
32
- }
33
- return (_jsx("button", __assign({}, props, { className: classNames("aui-action", className), ref: ref })));
26
+ import transformLayout from "../../utils/transformLayout";
27
+ export var UnstyledButton = React.forwardRef(function (_a, ref) {
28
+ var className = _a.className, layout = _a.layout, props = __rest(_a, ["className", "layout"]);
29
+ return (_jsx("button", __assign({}, props, { className: classNames("aui-action aui-button", transformLayout(layout), className), ref: ref })));
34
30
  });
35
- var Button = forwardRef(function (_a, ref) {
36
- var _b = _a.variant, variant = _b === void 0 ? "primary" : _b, _c = _a.corners, corners = _c === void 0 ? "rounded" : _c, className = _a.className, _d = _a.size, size = _d === void 0 ? "regular" : _d, rest = __rest(_a, ["variant", "corners", "className", "size"]);
37
- return (_jsx(UnstyledButton, __assign({}, rest, { className: classNames("aui-button--".concat(variant, " aui-button-size--").concat(size, " aui-corners--").concat(corners), className), ref: ref })));
31
+ var Button = React.forwardRef(function (_a, ref) {
32
+ var variant = _a.variant, corners = _a.corners, className = _a.className, size = _a.size, rest = __rest(_a, ["variant", "corners", "className", "size"]);
33
+ return (_jsx(UnstyledButton, __assign({}, rest, { className: classNames(getButtonClassName({ variant: variant, corners: corners, size: size }), className), ref: ref })));
38
34
  });
35
+ export var getButtonClassName = function (_a) {
36
+ var _b = _a.variant, variant = _b === void 0 ? "primary" : _b, _c = _a.corners, corners = _c === void 0 ? "rounded" : _c, _d = _a.size, size = _d === void 0 ? "regular" : _d;
37
+ return "aui-button--".concat(variant, " aui-button-size--").concat(size, " aui-corners--").concat(corners);
38
+ };
39
39
  export default Button;
@@ -81,7 +81,11 @@ var Carousel = React.forwardRef(function (_a, ref) {
81
81
  transition: "transform ".concat(duration, "s ease-in-out"),
82
82
  }
83
83
  : undefined;
84
- return (_jsxs(Box, __assign({}, rest, { className: classNames("aui-carousel", className), ref: ref, children: [_jsxs(Box, { className: "aui-carousel-slider", style: __assign(__assign({}, animatingStyles), { flexDirection: delta >= 0 ? "row" : "row-reverse" }), onTransitionEnd: onTransitionEnd, children: [_jsx(Box, { className: "aui-carousel-item", children: children[cur] }), _jsx(Box, { className: "aui-carousel-item", "aria-hidden": true, children: children[next] })] }), length > 1 && (_jsxs(_Fragment, { children: [!hideArrows && (_jsxs(_Fragment, { children: [_jsx(Button, { className: classNames("aui-flex-x aui-align-center aui-justify-center aui-carousel-arrow", leftArrowProps === null || leftArrowProps === void 0 ? void 0 : leftArrowProps.className), style: __assign({ left: 8 }, leftArrowProps === null || leftArrowProps === void 0 ? void 0 : leftArrowProps.style), corners: "pill", "aria-label": "previous", onClick: function () { return startTransition(-1); }, children: (_b = leftArrowProps === null || leftArrowProps === void 0 ? void 0 : leftArrowProps.children) !== null && _b !== void 0 ? _b : (_jsx(Icon, { icon: "left", size: 12, style: { marginRight: 2 } })) }), _jsx(Button, { className: classNames("aui-flex-x aui-align-center aui-justify-center aui-carousel-arrow", rightArrowProps === null || rightArrowProps === void 0 ? void 0 : rightArrowProps.className), style: __assign({ right: 8 }, rightArrowProps === null || rightArrowProps === void 0 ? void 0 : rightArrowProps.style), corners: "pill", "aria-label": "next", onClick: function () { return startTransition(1); }, children: (_c = rightArrowProps === null || rightArrowProps === void 0 ? void 0 : rightArrowProps.children) !== null && _c !== void 0 ? _c : (_jsx(Icon, { icon: "right", size: 12, style: { marginLeft: 2 } })) })] })), !hideDots && (_jsx(Box, { layout: { axis: "x", align: "center", gap: "xs" }, className: "aui-carousel-dots", children: children.map(function (_, i) { return (_jsx(Button, { className: classNames("aui-carousel-dot", dotProps === null || dotProps === void 0 ? void 0 : dotProps.className), corners: "pill", disabled: cur === i || animating, onClick: function () { return startTransition(i - cur); }, style: dotProps === null || dotProps === void 0 ? void 0 : dotProps.style }, i)); }) }))] }))] })));
84
+ return (_jsxs(Box, __assign({}, rest, { className: classNames("aui-carousel", className), ref: ref, children: [_jsxs(Box, { layout: {
85
+ axis: delta >= 0 ? "x" : "-x",
86
+ width: "full",
87
+ height: "full",
88
+ }, style: animatingStyles, onTransitionEnd: onTransitionEnd, children: [_jsx(Box, { className: "aui-carousel-item", children: children[cur] }), _jsx(Box, { className: "aui-carousel-item", "aria-hidden": true, children: children[next] })] }), length > 1 && (_jsxs(_Fragment, { children: [!hideArrows && (_jsxs(_Fragment, { children: [_jsx(Button, { className: classNames("aui-flex-x aui-align-center aui-justify-center aui-carousel-arrow", leftArrowProps === null || leftArrowProps === void 0 ? void 0 : leftArrowProps.className), style: __assign({ left: 8 }, leftArrowProps === null || leftArrowProps === void 0 ? void 0 : leftArrowProps.style), corners: "pill", "aria-label": "previous", onClick: function () { return startTransition(-1); }, children: (_b = leftArrowProps === null || leftArrowProps === void 0 ? void 0 : leftArrowProps.children) !== null && _b !== void 0 ? _b : (_jsx(Icon, { icon: "chevron-left", size: "xs", style: { marginRight: 2 } })) }), _jsx(Button, { className: classNames("aui-flex-x aui-align-center aui-justify-center aui-carousel-arrow", rightArrowProps === null || rightArrowProps === void 0 ? void 0 : rightArrowProps.className), style: __assign({ right: 8 }, rightArrowProps === null || rightArrowProps === void 0 ? void 0 : rightArrowProps.style), corners: "pill", "aria-label": "next", onClick: function () { return startTransition(1); }, children: (_c = rightArrowProps === null || rightArrowProps === void 0 ? void 0 : rightArrowProps.children) !== null && _c !== void 0 ? _c : (_jsx(Icon, { icon: "chevron-right", size: "xs", style: { marginLeft: 2 } })) })] })), !hideDots && (_jsx(Box, { layout: { axis: "x", align: "center", gap: "xxs" }, className: "aui-carousel-dots", children: children.map(function (_, i) { return (_jsx(Button, { className: classNames("aui-carousel-dot", dotProps === null || dotProps === void 0 ? void 0 : dotProps.className), corners: "pill", disabled: cur === i || animating, onClick: function () { return startTransition(i - cur); }, style: dotProps === null || dotProps === void 0 ? void 0 : dotProps.style }, i)); }) }))] }))] })));
85
89
  });
86
90
  function safeMod(n, m) {
87
91
  return ((n % m) + m) % m;
@@ -1,10 +1,10 @@
1
1
  import React from "react";
2
- type Props<T extends React.ElementType> = {
2
+ type Props = {
3
3
  /**
4
4
  * The children to render.
5
5
  * IMPORTANT: The child must be a single element which can hold a ref.
6
6
  */
7
- children: React.ReactElement<React.ComponentPropsWithRef<T>>;
7
+ children: React.ReactElement<any>;
8
8
  /**
9
9
  * The function to call when a click occurs outside the child element.
10
10
  *
@@ -12,5 +12,5 @@ type Props<T extends React.ElementType> = {
12
12
  */
13
13
  onClickOutside: (event: MouseEvent) => void;
14
14
  };
15
- declare const ClickOutside: <T extends React.ElementType>({ children, onClickOutside, }: Props<T>) => React.JSX.Element;
15
+ declare const ClickOutside: ({ children, onClickOutside, }: Props) => React.JSX.Element;
16
16
  export default ClickOutside;
@@ -31,7 +31,7 @@ var ClickOutside = function (_a) {
31
31
  onClick: function (event) {
32
32
  var _a, _b;
33
33
  // point of this is to let us know that click originated
34
- // from the child element, so we can ignore it if the click ends outside
34
+ // from the child element, so we can ignore it
35
35
  clickWithinChildRef.current = true;
36
36
  (_b = (_a = children.props) === null || _a === void 0 ? void 0 : _a.onClick) === null || _b === void 0 ? void 0 : _b.call(_a, event);
37
37
  },
@@ -6,9 +6,10 @@ type Props = Omit<React.DetailedHTMLProps<React.SVGAttributes<SVGSVGElement>, SV
6
6
  */
7
7
  icon: IconType;
8
8
  /**
9
- * Size of the icon
9
+ * Size of the icon; will control both width and height
10
+ * @default "s"
10
11
  */
11
- size?: number;
12
+ size?: "xxs" | "xs" | "s" | "m" | "l" | "xl" | "xxl";
12
13
  };
13
14
  declare const Icon: React.ForwardRefExoticComponent<Omit<Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
14
15
  export default Icon;
@@ -24,10 +24,8 @@ import { jsx as _jsx } from "react/jsx-runtime";
24
24
  import React from "react";
25
25
  import icons from "./icons";
26
26
  import { classNames } from "../../functions";
27
- var defaultViewBox = "0 0 512 512";
28
27
  var Icon = React.forwardRef(function (_a, ref) {
29
- var icon = _a.icon, className = _a.className, size = _a.size, style = _a.style, rest = __rest(_a, ["icon", "className", "size", "style"]);
30
- var _b = icons[icon], contents = _b.contents, viewBox = _b.viewBox;
31
- return (_jsx("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: viewBox || defaultViewBox, className: classNames("aui-icon", className), style: __assign({ width: size, height: size }, style) }, rest, { ref: ref, children: contents.map(function (icon, i) { return (_jsx(React.Fragment, { children: icon }, i)); }) })));
28
+ var icon = _a.icon, className = _a.className, _b = _a.size, size = _b === void 0 ? "s" : _b, rest = __rest(_a, ["icon", "className", "size"]);
29
+ return (_jsx("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", className: classNames("aui-icon", "aui-icon-".concat(size), className) }, rest, { ref: ref, children: _jsx("path", { d: icons[icon] }) })));
32
30
  });
33
31
  export default Icon;
@@ -1,9 +1,4 @@
1
- import React from "react";
2
- type IconDefinition = {
3
- readonly contents: React.JSX.Element[];
4
- readonly viewBox?: string;
5
- };
6
- export declare const iconTypes: readonly ["up", "down", "left", "right"];
1
+ export declare const iconTypes: readonly ["architect", "arrow-down", "arrow-left", "arrow-right", "arrow-up", "atom", "award", "bar-graph", "building", "calculator", "calendar", "car", "check", "check-circle", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "city", "clipboard", "clock", "clone", "cloud", "code", "comment", "cube", "database", "desktop", "document", "download", "edit", "evergreen", "export", "external", "file", "film", "flower", "folder", "gem", "globe", "graph-down", "graph-up", "grid", "heart", "home", "info-circle", "info-square", "letter", "license", "link", "list", "lock", "login", "logout", "menu", "minus", "minus-circle", "moon", "more", "mountains", "newspaper", "not-a-moon", "overflow", "person", "plus", "plus-circle", "podium", "search", "settings", "shell", "shuffle", "snowflake", "sparkles", "star", "sun", "tag", "ticket", "trash", "tree", "tv", "unlock", "upload", "vista", "warning-circle", "x", "x-circle"];
7
2
  export type IconType = (typeof iconTypes)[number];
8
- declare const icons: Record<IconType, IconDefinition>;
3
+ declare const icons: Record<IconType, string>;
9
4
  export default icons;
@@ -1,26 +1,177 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- export var iconTypes = ["up", "down", "left", "right"];
3
- var arrowPath = "M94.0908,296.3057c-29.82338,0-54-24.17662-54-54s24.17662-54,54-54c.00237,0,.00475,0,.00712,0c.0017,0,141.65138,0,221.99288,0v-222c0-29.82338,24.17662-54,54-54s54,24.17662,54,54c0,.00237,0,.00475,0,.00712s0,273.40726,0,275.97468c0,.00607,0,.01213,0,.0182c0,29.82338-24.17662,54-54,54h-276Z";
1
+ export var iconTypes = [
2
+ "architect",
3
+ "arrow-down",
4
+ "arrow-left",
5
+ "arrow-right",
6
+ "arrow-up",
7
+ "atom",
8
+ "award",
9
+ "bar-graph",
10
+ "building",
11
+ "calculator",
12
+ "calendar",
13
+ "car",
14
+ "check",
15
+ "check-circle",
16
+ "chevron-down",
17
+ "chevron-left",
18
+ "chevron-right",
19
+ "chevron-up",
20
+ "city",
21
+ "clipboard",
22
+ "clock",
23
+ "clone",
24
+ "cloud",
25
+ "code",
26
+ "comment",
27
+ "cube",
28
+ "database",
29
+ "desktop",
30
+ "document",
31
+ "download",
32
+ "edit",
33
+ "evergreen",
34
+ "export",
35
+ "external",
36
+ "file",
37
+ "film",
38
+ "flower",
39
+ "folder",
40
+ "gem",
41
+ "globe",
42
+ "graph-down",
43
+ "graph-up",
44
+ "grid",
45
+ "heart",
46
+ "home",
47
+ "info-circle",
48
+ "info-square",
49
+ "letter",
50
+ "license",
51
+ "link",
52
+ "list",
53
+ "lock",
54
+ "login",
55
+ "logout",
56
+ "menu",
57
+ "minus",
58
+ "minus-circle",
59
+ "moon",
60
+ "more",
61
+ "mountains",
62
+ "newspaper",
63
+ "not-a-moon",
64
+ "overflow",
65
+ "person",
66
+ "plus",
67
+ "plus-circle",
68
+ "podium",
69
+ "search",
70
+ "settings",
71
+ "shell",
72
+ "shuffle",
73
+ "snowflake",
74
+ "sparkles",
75
+ "star",
76
+ "sun",
77
+ "tag",
78
+ "ticket",
79
+ "trash",
80
+ "tree",
81
+ "tv",
82
+ "unlock",
83
+ "upload",
84
+ "vista",
85
+ "warning-circle",
86
+ "x",
87
+ "x-circle",
88
+ ];
4
89
  var icons = {
5
- down: {
6
- contents: [
7
- _jsx("path", { d: arrowPath, transform: "matrix(.707107 0.707107-.707107 0.707107 165.642289-79.868246)" }),
8
- ],
9
- },
10
- up: {
11
- contents: [
12
- _jsx("path", { d: arrowPath, transform: "matrix(-.707107-.707107 0.707107-.707107 346.357711 591.868246)" }),
13
- ],
14
- },
15
- left: {
16
- contents: [
17
- _jsx("path", { d: arrowPath, transform: "matrix(-.707107 0.707107-.707107-.707107 591.868246 165.642289)" }),
18
- ],
19
- },
20
- right: {
21
- contents: [
22
- _jsx("path", { d: arrowPath, transform: "matrix(.707107-.707107 0.707107 0.707107-79.868246 346.357711)" }),
23
- ],
24
- },
90
+ "chevron-up": "M7.3266,4.0772c-.012.012-.0157.0281-.0269.0406-.0124.0112-.0286.0149-.0405.0269L.8952,10.5086c-.3905.3905-.3905,1.0237,0,1.4142s1.0237.3905,1.4142,0l5.7243-5.7243,5.6569,5.6569c.3905.3905,1.0237.3905,1.4142,0s.3905-1.0237,0-1.4142l-6.364-6.364c-.3905-.3905-1.0237-.3905-1.4142,0Z",
91
+ "chevron-down": "M7.3266,11.9228c-.012-.012-.0157-.0281-.0269-.0406-.0124-.0112-.0286-.0149-.0405-.0269L.8952,5.4914c-.3905-.3905-.3905-1.0237,0-1.4142s1.0237-.3905,1.4142,0l5.7243,5.7243,5.6569-5.6569c.3905-.3905,1.0237-.3905,1.4142,0s.3905,1.0237,0,1.4142l-6.364,6.364c-.3905.3905-1.0237.3905-1.4142,0Z",
92
+ "chevron-left": "M4.0772,8.6734c.012.012.0281.0157.0406.0269.0112.0124.0149.0286.0269.0405l6.364,6.364c.3905.3905,1.0237.3905,1.4142,0s.3905-1.0237,0-1.4142l-5.7243-5.7243,5.6569-5.6569c.3905-.3905.3905-1.0237,0-1.4142s-1.0237-.3905-1.4142,0l-6.364,6.364c-.3905.3905-.3905,1.0237,0,1.4142Z",
93
+ "chevron-right": "M11.9228,8.6734c-.012.012-.0281.0157-.0406.0269-.0112.0124-.0149.0286-.0269.0405l-6.364,6.364c-.3905.3905-1.0237.3905-1.4142,0s-.3905-1.0237,0-1.4142l5.7243-5.7243L4.1446,2.3094c-.3905-.3905-.3905-1.0237,0-1.4142s1.0237-.3905,1.4142,0l6.364,6.364c.3905.3905.3905,1.0237,0,1.4142Z",
94
+ "arrow-up": "M7.6177.0759c.2446-.1012.52-.1012.7646,0,.1185.0492.2247.121.3151.2092.0029.0029.0069.0036.0098.0065l4.9497,4.9502c.3905.3905.3905,1.0238,0,1.4143-.3905.3906-1.0237.3906-1.4142,0l-3.2427-3.2429v11.5868c0,.5524-.4477,1.0001-1,1.0001s-1-.4477-1-1.0001V3.4133s-3.2426,3.2428-3.2426,3.2428c-.3905.3906-1.0237.3906-1.4142,0s-.3905-1.0238,0-1.4143L7.2929.2916c.0018-.0018.0042-.0022.0059-.0039.0911-.0898.199-.1621.3189-.2118Z",
95
+ "arrow-down": "M7.6177,15.9241c.2446.1012.52.1012.7646,0,.1185-.0492.2247-.121.3151-.2092.0029-.0029.0069-.0036.0098-.0065l4.9497-4.9502c.3905-.3905.3905-1.0238,0-1.4143-.3905-.3906-1.0237-.3906-1.4142,0l-3.2427,3.2429V1.0001C9,.4477,8.5523,0,8,0s-1,.4477-1,1.0001v11.5867s-3.2426-3.2428-3.2426-3.2428c-.3905-.3906-1.0237-.3906-1.4142,0s-.3905,1.0238,0,1.4143l4.9498,4.9502c.0018.0018.0042.0022.0059.0039.0911.0898.199.1621.3189.2118Z",
96
+ "arrow-left": "M.0753,8.3823c-.1012-.2446-.1012-.52,0-.7646.0492-.1185.121-.2247.2092-.3151.0029-.0029.0036-.0069.0065-.0098L5.2411,2.3431c.3905-.3905,1.0238-.3905,1.4143,0,.3906.3905.3906,1.0237,0,1.4142l-3.2429,3.2427h11.5868c.5524,0,1.0001.4477,1.0001,1s-.4477,1-1.0001,1H3.4126l3.2428,3.2426c.3906.3905.3906,1.0237,0,1.4142s-1.0238.3905-1.4143,0L.291,8.7071c-.0018-.0018-.0022-.0042-.0039-.0059-.0898-.0911-.1621-.199-.2118-.3189Z",
97
+ "arrow-right": "M15.9235,8.3823c.1012-.2446.1012-.52,0-.7646-.0492-.1185-.121-.2247-.2092-.3151-.0029-.0029-.0036-.0069-.0065-.0098l-4.9502-4.9497c-.3905-.3905-1.0238-.3905-1.4143,0-.3906.3905-.3906,1.0237,0,1.4142l3.2429,3.2427H.9995C.4471,7-.0006,7.4477-.0006,8s.4477,1,1.0001,1h11.5867l-3.2428,3.2426c-.3906.3905-.3906,1.0237,0,1.4142s1.0238.3905,1.4143,0l4.9502-4.9498c.0018-.0018.0022-.0042.0039-.0059.0898-.0911.1621-.199.2118-.3189Z",
98
+ external: "M14,10v4c0,1.1046-.8954,2-2,2H2c-1.1046,0-2-.8954-2-2V4c0-1.1046.8954-2,2-2h4c.5523,0,1,.4477,1,1s-.4477,1-1,1h-3.5c-.2761,0-.5.2239-.5.5v9c0,.2761.2239.5.5.5h9c.2761,0,.5-.2239.5-.5v-3.5c0-.5523.4477-1,1-1s1,.4477,1,1ZM15,0h-6c-.5522,0-1,.4478-1,1s.4478,1,1,1h3.5858l-6.2928,6.2929c-.3906.3905-.3906,1.0237,0,1.4142.3905.3905,1.0237.3905,1.4142,0l6.2929-6.2929v3.5858c0,.5523.4478,1,1,1s1-.4477,1-1V1c0-.5522-.4477-1-1-1Z",
99
+ x: "M9.4142,8l4.9498-4.9498c.3905-.3905.3905-1.0237,0-1.4142-.3905-.3906-1.0237-.3906-1.4142,0l-4.9498,4.9498L3.0502,1.636c-.3905-.3905-1.0237-.3905-1.4142,0-.3906.3905-.3906,1.0237,0,1.4142l4.9498,4.9498L1.636,12.9498c-.3905.3905-.3905,1.0237,0,1.4142.3905.3906,1.0237.3906,1.4142,0l4.9498-4.9498,4.9498,4.9498c.3905.3905,1.0237.3905,1.4142,0,.3906-.3905.3906-1.0237,0-1.4142l-4.9498-4.9498Z",
100
+ plus: "M15,7h-6V1c0-.5523-.4477-1-1-1s-1,.4477-1,1v6H1c-.5523,0-1,.4477-1,1s.4477,1,1,1h6v6c0,.5523.4477,1,1,1s1-.4477,1-1v-6h6c.5523,0,1-.4477,1-1s-.4477-1-1-1Z",
101
+ minus: "M15,9H1c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1h14c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1Z",
102
+ check: "M12.4194,3.7574l-6.364,6.364-2.4749-2.4749c-.3905-.3905-1.0237-.3905-1.4142,0s-.3905,1.0237,0,1.4142l3.182,3.182c.3905.3905,1.0237.3905,1.4142,0l7.0711-7.0711c.3905-.3905.3905-1.0237,0-1.4142s-1.0237-.3905-1.4142,0Z",
103
+ "x-circle": "M8,0C3.5817,0,0,3.5817,0,8s3.5817,8,8,8,8-3.5817,8-8S12.4183,0,8,0ZM8,14c-3.3137,0-6-2.6863-6-6s2.6863-6,6-6,6,2.6863,6,6-2.6863,6-6,6ZM11.182,9.7678c.3905.3905.3905,1.0237,0,1.4142-.3906.3905-1.0237.3905-1.4142,0l-1.7678-1.7678-1.7678,1.7678c-.3905.3905-1.0237.3905-1.4142,0-.3905-.3906-.3905-1.0237,0-1.4142l1.7678-1.7678-1.7678-1.7678c-.3905-.3905-.3905-1.0237,0-1.4142.3906-.3905,1.0237-.3905,1.4142,0l1.7678,1.7678,1.7678-1.7678c.3905-.3905,1.0237-.3905,1.4142,0,.3905.3906.3905,1.0237,0,1.4142l-1.7678,1.7678,1.7678,1.7678Z",
104
+ "plus-circle": "M13.6569,2.3431C10.5326-.7811,5.4674-.7811,2.3431,2.3431-.781,5.4674-.781,10.5326,2.3431,13.6569c3.1242,3.1241,8.1895,3.1241,11.3137,0,3.1242-3.1242,3.1242-8.1895,0-11.3137h.0001ZM12.2426,12.2426c-2.3431,2.3431-6.1421,2.3431-8.4852,0-2.3432-2.3431-2.3432-6.1421,0-8.4853,2.3431-2.3431,6.1421-2.3431,8.4852,0,2.3432,2.3431,2.3432,6.1421,0,8.4853ZM9,7v-2c0-.5523-.4477-1-1-1h0c-.5523,0-1,.4477-1,1v2h-2c-.5523,0-1,.4477-1,1h0c0,.5523.4477,1,1,1h2v2c0,.5523.4477,1,1,1h0c.5523,0,1-.4477,1-1v-2h2c.5523,0,1-.4477,1-1h0c0-.5523-.4477-1-1-1h-2Z",
105
+ "minus-circle": "M8,0C3.5817,0,0,3.5817,0,8s3.5817,8,8,8,8-3.5817,8-8S12.4183,0,8,0ZM8,14c-3.3137,0-6-2.6863-6-6s2.6863-6,6-6,6,2.6863,6,6-2.6863,6-6,6ZM5,7h6c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1h-6c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1Z",
106
+ "check-circle": "M8,0C3.5817,0,0,3.5817,0,8s3.5817,8,8,8,8-3.5817,8-8S12.4183,0,8,0ZM8,14c-3.3137,0-6-2.6863-6-6s2.6863-6,6-6,6,2.6863,6,6-2.6863,6-6,6ZM10.2981,5.4716l-3.5355,3.5355-1.0607-1.0607c-.3905-.3905-1.0237-.3905-1.4142,0-.3905.3905-.3905,1.0237,0,1.4142l1.7678,1.7678c.3905.3905,1.0237.3905,1.4142,0l4.2426-4.2426c.3905-.3905.3905-1.0237,0-1.4142-.3905-.3905-1.0237-.3905-1.4142,0Z",
107
+ "warning-circle": "M13.6568,2.3432C10.5326-.7811,5.4673-.7811,2.3431,2.3432-.781,5.4674-.781,10.5327,2.3431,13.6569c3.1242,3.1242,8.1895,3.1242,11.3137,0,3.1242-3.1242,3.1242-8.1895,0-11.3137ZM12.2426,12.2426c-2.3431,2.3431-6.1421,2.3431-8.4852,0-2.3432-2.3431-2.3432-6.1421,0-8.4853,2.3431-2.3431,6.1421-2.3431,8.4852,0,2.3432,2.3431,2.3432,6.1421,0,8.4853ZM8,10.5c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM8,3.5h0c.5523,0,1,.4477,1,1v4c0,.5523-.4477,1-1,1h0c-.5523,0-1-.4477-1-1v-4c0-.5523.4477-1,1-1Z",
108
+ "info-circle": "M8,0C3.5817,0,0,3.5817,0,8s3.5817,8,8,8,8-3.5817,8-8S12.4183,0,8,0ZM8,14c-3.3137,0-6-2.6863-6-6s2.6863-6,6-6,6,2.6863,6,6-2.6863,6-6,6ZM8,3.5c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM7.5,6.5c-.069,0-.1348.014-.1946.0393-.4557.0933-.8054.4775-.8054.9607,0,.2378.0871.4503.2285.6179.1633.1935.2715.4265.2715.6796v2.7025c0,.5523.4477,1,1,1h0c.5523,0,1-.4477,1-1v-4c0-.5523-.4477-1-1-1h-.5Z",
109
+ "info-square": "M13,0H3C1.3431,0,0,1.3431,0,3v10c0,1.6569,1.3431,3,3,3h10c1.6569,0,3-1.3431,3-3V3c0-1.6569-1.3431-3-3-3ZM14,12.5c0,.8284-.6716,1.5-1.5,1.5H3.5c-.8284,0-1.5-.6716-1.5-1.5V3.5c0-.8284.6716-1.5,1.5-1.5h9c.8284,0,1.5.6716,1.5,1.5v9ZM8,3.5c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM7.5,6.5c-.069,0-.1348.014-.1946.0393-.4557.0933-.8054.4775-.8054.9607,0,.2378.0871.4503.2285.6179.1633.1935.2715.4265.2715.6796v2.7025c0,.5523.4477,1,1,1h0c.5523,0,1-.4477,1-1v-4c0-.5523-.4477-1-1-1h-.5Z",
110
+ search: "M15.1412,13.675l-3.6439-3.6439c.6722-.9694,1.0686-2.1444,1.0686-3.4133,0-3.3137-2.6863-6-6-6S.5659,3.3041.5659,6.6178s2.6863,6,6,6c1.3222,0,2.5405-.4329,3.5322-1.1575l3.6289,3.6289c.3906.3906,1.0237.3906,1.4143,0,.3905-.3905.3905-1.0237,0-1.4142h0ZM6.5659,10.6178c-2.2092,0-4-1.7909-4-4s1.7908-4,4-4,4,1.7908,4,4-1.7908,4-4,4Z",
111
+ architect: "M15.5778,11.0972c.2812-.3581.4222-.7534.4222-1.1856V.375c0-.2072-.1678-.375-.375-.375h-2.2056c-.2072,0-.375.1678-.375.375v9.42L9.1734,1.6684c-.0622-.1306-.1941-.2137-.3384-.2137h-1.6697c-.1447,0-.2762.0831-.3384.2137l-3.8909,8.1684c-.0016-.0091-.0025-.0181-.0025-.0275v-.9216c0-.2072-.1678-.375-.375-.375H.375c-.2072,0-.375.1678-.375.375v1.0238c0,.4322.1406.8275.4222,1.1856.2812.3581.6556.6456,1.1222.8616.1041.0481.2106.0906.3194.1281l-1.6084,3.3769c-.1184.2487.0628.5363.3384.5363h2.1431c.1447,0,.2766-.0834.3387-.2141l1.6638-3.5031h6.5047l1.6637,3.5031c.0622.1309.1941.2141.3387.2141h2.1597c.2756,0,.4572-.2875.3384-.5363l-1.6084-3.3769c.1088-.0375.2153-.08.3194-.1281.4666-.2159.8406-.5031,1.1222-.8616h0ZM6.0712,9.4781l1.5816-3.3303c.1356-.2856.5419-.2856.6775,0l1.5816,3.3303c.1181.2487-.0634.5359-.3387.5359h-3.1631c-.2753,0-.4569-.2872-.3387-.5359Z",
112
+ heart: "M13.768,2.2152c-1.7163-.9793-3.7923-.6831-5.1827.4588-.2044.1766-.4127.3587-.6241.5462-.2507-.2226-.4968-.4375-.7373-.6447-.795-.6763-1.7705-.9553-2.7905-.9637-.9619-.0007-1.9774.2774-2.7513.9719C.0122,4.2228.2158,6.927,1.5272,8.6156c.1634.1955.3318.3935.5052.5931,1.5262,1.7741,3.5071,3.6548,5.2166,4.9515.4055.3045,1.0238.3046,1.4286.0006,1.7081-1.2954,3.6946-3.1738,5.232-4.9504.2218-.2542.4357-.5059.6413-.7535.6724-.8192.9447-1.8267.9525-2.8452.0071-1.2525-.4792-2.6201-1.7354-3.3966Z",
113
+ comment: "M9,6.8381c0,.5523-.4477,1-1,1s-1-.4477-1-1,.4477-1,1-1,1,.4477,1,1ZM11.5,5.8381c-.5523,0-1,.4477-1,1s.4477,1,1,1,1-.4477,1-1-.4477-1-1-1ZM4.5,5.8381c-.5523,0-1,.4477-1,1s.4477,1,1,1,1-.4477,1-1-.4477-1-1-1ZM16,6.8381c0,3.31-3.58,6-8,6-.63,0-1.25-.05-1.83-.16-.0115-.0029-.0248-.0058-.0375-.0087l-4.1781,2.4122c-.4747.274-1.0302-.2006-.8336-.7122l1.2585-3.2755c-1.4677-1.0804-2.3792-2.587-2.3792-4.2559C0,3.5281,3.58.8381,8,.8381s8,2.69,8,6ZM14,6.8381c0-2.21-2.69-4-6-4s-6,1.79-6,4c0,.91.46,1.75,1.24,2.43.02.02.05.04.07.06.38.32.83.6,1.33.83.27.12.57.23.87.32.76.23,1.6.36,2.49.36,3.31,0,6-1.79,6-4Z",
114
+ sparkles: "M8.4625.5955l1.9827,4.8233c.0254.0618.0744.1108.1362.1362l4.8233,1.9827c.4132.1699.4132.7551,0,.9249l-4.8233,1.9827c-.0618.0254-.1108.0744-.1362.1362l-1.9827,4.8233c-.1699.4132-.7551.4132-.9249,0l-1.9827-4.8233c-.0254-.0618-.0744-.1108-.1362-.1362l-4.8232-1.9828c-.4132-.1699-.4132-.7551,0-.9249l4.8233-1.9827c.0618-.0254.1108-.0744.1362-.1362L7.5375.5955c.1698-.4132.7551-.4132.9249,0h.0001ZM13.1818.9423l.5465,1.3294,1.3294.5465c.1625.0668.1625.2969,0,.3636l-1.3294.5465-.5465,1.3294c-.0668.1625-.2969.1625-.3636,0l-.5465-1.3294-1.3294-.5465c-.1625-.0668-.1625-.2969,0-.3636l1.3294-.5465.5465-1.3294c.0668-.1625.2969-.1625.3636,0ZM2.141,2.8429l.296.7201.7201.296c.1259.0518.1259.2301,0,.2819l-.7201.296-.296.7201c-.0518.1259-.2301.1259-.2819,0l-.296-.7201-.7201-.296c-.1259-.0518-.1259-.2301,0-.2819l.7201-.296.296-.7201c.0518-.1259.2301-.1259.2819,0Z",
115
+ star: "M8.4767.981l1.4439,4.5635c.0662.2092.2611.3508.4806.3492l4.7862-.0369c.4883-.0038.6919.6228.2946.9067l-3.8939,2.7834c-.1785.1276-.253.3567-.1836.5649l1.5142,4.5405c.1545.4632-.3785.8505-.7713.5604l-3.8504-2.8432c-.1765-.1304-.4175-.1304-.594,0l-3.8504,2.8432c-.3928.2901-.9258-.0972-.7713-.5604l1.5142-4.5405c.0694-.2082-.005-.4373-.1835-.5649L.5179,6.7634c-.3972-.284-.1937-.9105.2946-.9067l4.7862.0369c.2194.0017.4143-.1399.4806-.3491L7.5233.981c.1473-.4655.8061-.4655.9534,0Z",
116
+ sun: "M8,11.5c-1.933,0-3.5-1.567-3.5-3.5s1.567-3.5,3.5-3.5,3.5,1.567,3.5,3.5-1.567,3.5-3.5,3.5ZM16,8h0c0-.4142-.3358-.75-.75-.75h-2c-.4142,0-.75.3358-.75.75h0c0,.4142.3358.75.75.75h2c.4142,0,.75-.3358.75-.75ZM3.5,8h0c0-.4142-.3358-.75-.75-.75H.75c-.4142,0-.75.3358-.75.75h0c0,.4142.3358.75.75.75h2c.4142,0,.75-.3358.75-.75ZM8.098,12.5h0c-.4142,0-.75.3358-.75.75v2c0,.4142.3358.75.75.75h0c.4142,0,.75-.3358.75-.75v-2c0-.4142-.3358-.75-.75-.75ZM8,0h0c-.4142,0-.75.3358-.75.75v2c0,.4142.3358.75.75.75h0c.4142,0,.75-.3358.75-.75V.75c0-.4142-.3358-.75-.75-.75ZM13.6569,13.6569h0c.2929-.2929.2929-.7678,0-1.0607l-1.4142-1.4142c-.2929-.2929-.7678-.2929-1.0607,0h0c-.2929.2929-.2929.7678,0,1.0607l1.4142,1.4142c.2929.2929.7678.2929,1.0607,0ZM4.818,4.818h0c.2929-.2929.2929-.7678,0-1.0607l-1.4142-1.4142c-.2929-.2929-.7678-.2929-1.0607,0h0c-.2929.2929-.2929.7678,0,1.0607l1.4142,1.4142c.2929.2929.7678.2929,1.0607,0ZM4.8873,11.2512h0c-.2929-.2929-.7678-.2929-1.0607,0l-1.4142,1.4142c-.2929.2929-.2929.7678,0,1.0607h0c.2929.2929.7678.2929,1.0607,0l1.4142-1.4142c.2929-.2929.2929-.7678,0-1.0607ZM13.6569,2.3431h0c-.2929-.2929-.7678-.2929-1.0607,0l-1.4142,1.4142c-.2929.2929-.2929.7678,0,1.0607h0c.2929.2929.7678.2929,1.0607,0l1.4142-1.4142c.2929-.2929.2929-.7678,0-1.0607Z",
117
+ moon: "M10.5844,13.3968c-2.6221-.8219-4.581-3.1786-4.8901-5.9195-.3029-2.6865.8951-5.1138,2.859-6.5477.199-.1453.0756-.4634-.1677-.4266C4.494,1.0905,1.579,4.6707,2.05,8.8387c.386,3.4153,3.152,6.203,6.5511,6.607,1.9894.2365,3.8416-.3137,5.3017-1.3758.2006-.1459.066-.4611-.1789-.4239-.99.1502-2.0471.0932-3.1395-.2492Z",
118
+ cloud: "M13,6.3004v-.5504c0-1.6569-1.3431-3-3-3-1.2758,0-2.3583.7997-2.7922,1.9224l-.0839-.0839c-.9763-.9763-2.5592-.9763-3.5355,0-.7198.7198-.9048,1.7684-.5631,2.6615h-.0253c-1.6569,0-3,1.3431-3,3s1.3431,3,3,3h9.5c1.933,0,3.5-1.567,3.5-3.5,0-1.7617-1.306-3.2051-3-3.4496Z",
119
+ desktop: "M14,1H2C.8954,1,0,1.8954,0,3v8c0,1.1046.8954,2,2,2h1.5c-.5523,0-1,.4477-1,1s.4477,1,1,1h9c.5523,0,1-.4478,1-1s-.4477-1-1-1h1.5c1.1046,0,2-.8954,2-2V3c0-1.1046-.8954-2-2-2ZM8,13c-.5523,0-1-.4478-1-1s.4477-1,1-1,1,.4477,1,1-.4477,1-1,1ZM14,9.5c0,.2761-.2239.5-.5.5H2.5c-.2761,0-.5-.2239-.5-.5V3.5c0-.2762.2239-.5.5-.5h11c.2761,0,.5.2238.5.5v6Z",
120
+ tv: "M14,1.5H2C.8954,1.5,0,2.3954,0,3.5v6c0,1.1046.8954,2,2,2h5v1h-3c-.5523,0-1,.4477-1,1s.4477,1,1,1h8c.5523,0,1-.4478,1-1s-.4477-1-1-1h-3v-1h5c1.1046,0,2-.8954,2-2V3.5c0-1.1046-.8954-2-2-2ZM14,9c0,.2761-.2239.5-.5.5H2.5c-.2761,0-.5-.2239-.5-.5V4c0-.2761.2239-.5.5-.5h11c.2761,0,.5.2239.5.5v5Z",
121
+ film: "M0,3v10c0,1.6569,1.3431,3,3,3h10c1.6569,0,3-1.3431,3-3V3c0-1.6569-1.3431-3-3-3H3C1.3431,0,0,1.3431,0,3ZM13.5,4h-1.6666c-.2761,0-.5-.2239-.5-.5v-.9999c0-.2761.2239-.5.5-.5h1.6666c.2761,0,.5.2239.5.5v.9999c0,.2761-.2239.5-.5.5ZM9.3333,12.5v.9999c0,.2761-.2239.5-.5.5h-1.6666c-.2761,0-.5-.2239-.5-.5v-.9999c0-.2761.2239-.5.5-.5h1.6666c.2761,0,.5.2239.5.5ZM2,9.5v-2.9999c0-.2761.2239-.5.5-.5h10.9999c.2761,0,.5.2239.5.5v2.9999c0,.2761-.2239.5-.5.5H2.5c-.2761,0-.5-.2239-.5-.5ZM6.6667,3.5v-.9999c0-.2761.2239-.5.5-.5h1.6666c.2761,0,.5.2239.5.5v.9999c0,.2761-.2239.5-.5.5h-1.6666c-.2761,0-.5-.2239-.5-.5ZM4.6667,2.5v.9999c0,.2761-.2239.5-.5.5h-1.6666c-.2761,0-.5-.2239-.5-.5v-.9999c0-.2761.2239-.5.5-.5h1.6666c.2761,0,.5.2239.5.5ZM2.5,12h1.6666c.2761,0,.5.2239.5.5v.9999c0,.2761-.2239.5-.5.5h-1.6666c-.2761,0-.5-.2239-.5-.5v-.9999c0-.2761.2239-.5.5-.5ZM11.3333,13.5v-.9999c0-.2761.2239-.5.5-.5h1.6666c.2761,0,.5.2239.5.5v.9999c0,.2761-.2239.5-.5.5h-1.6666c-.2761,0-.5-.2239-.5-.5Z",
122
+ ticket: "M16,6v-1c0-1.1046-.8954-2-2-2H2c-1.1046,0-2,.8954-2,2v1c1.1046,0,2,.8954,2,2s-.8954,2-2,2v1c0,1.1046.8954,2,2,2h12c1.1046,0,2-.8954,2-2v-1c-1.1046,0-2-.8954-2-2s.8954-2,2-2ZM12,10c0,.5522-.4477,1-1,1h-6c-.5523,0-1-.4478-1-1v-4c0-.5523.4477-1,1-1h6c.5523,0,1,.4477,1,1v4Z",
123
+ person: "M8,0c2.2091,0,4,1.7909,4,4s-1.7909,4-4,4-4-1.7909-4-4S5.7909,0,8,0ZM5.5,10h5c3.0355,0,5.5,2.4645,5.5,5.5h0c0,.276-.224.5-.5.5H.5c-.276,0-.5-.224-.5-.5h0c0-3.0355,2.4645-5.5,5.5-5.5Z",
124
+ license: "M0,4v8c0,1.1046.8954,2,2,2h12c1.1046,0,2-.8954,2-2V4c0-1.1046-.8954-2-2-2H2c-1.1046,0-2,.8954-2,2ZM13.5,12H2.5c-.2761,0-.5-.2239-.5-.5v-7c0-.2761.2239-.5.5-.5h11c.2761,0,.5.2239.5.5v7c0,.2761-.2239.5-.5.5ZM5,6c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM4.375,8.5h1.25c.7589,0,1.375.6161,1.375,1.375h0c0,.069-.056.125-.125.125h-3.75c-.069,0-.125-.056-.125-.125h0c0-.7589.6161-1.375,1.375-1.375ZM12.25,7.5h-3.5c-.4142,0-.75-.3358-.75-.75h0c0-.4142.3358-.75.75-.75h3.5c.4142,0,.75.3358.75.75h0c0,.4142-.3358.75-.75.75ZM12.25,10h-3.5c-.4142,0-.75-.3358-.75-.75h0c0-.4142.3358-.75.75-.75h3.5c.4142,0,.75.3358.75.75h0c0,.4142-.3358.75-.75.75Z",
125
+ home: "M15.627,7.2222l-.627-.627v-2.5c0-.5523-.4477-1-1-1s-1,.4477-1,1v.5L8.7207.3159c-.1985-.1985-.4597-.293-.7198-.2891-.2595-.0038-.5198.0905-.7178.2885L3,4.5983l-2,2-.6276.6276c-.3884.3884-.3884,1.0182,0,1.4066.1746.1746.3994.259.6276.2766v6.5908c0,.2761.2239.5.5.5h4c.2761,0,.5-.2239.5-.5v-5.5853c0-.2762.2239-.5.5-.5h3c.2761,0,.5.2238.5.5v5.5853c0,.2761.2239.5.5.5h4c.2761,0,.5-.2239.5-.5v-6.5913c.228-.0181.4525-.1024.627-.2768.3893-.3893.3893-1.0204,0-1.4097Z",
126
+ building: "M12,0H4c-1.1046,0-2,.8954-2,2v12c0,1.1046.8954,2,2,2h8c1.1046,0,2-.8954,2-2V2c0-1.1046-.8954-2-2-2ZM9.3333,2.25c0-.1381.1119-.25.25-.25h1.5c.1381,0,.25.1119.25.25v1.5c0,.1381-.1119.25-.25.25h-1.5c-.1381,0-.25-.1119-.25-.25v-1.5ZM9.3333,6.25c0-.1381.1119-.25.25-.25h1.5c.1381,0,.25.1119.25.25v1.5c0,.1381-.1119.25-.25.25h-1.5c-.1381,0-.25-.1119-.25-.25v-1.5ZM8.9062,10c.5523,0,1,.4477,1,1v2.75c0,.1381-.1119.25-.25.25h-3.5c-.1381,0-.25-.1119-.25-.25v-2.75c0-.5523.4477-1,1-1h2ZM4.6667,2.25c0-.1381.1119-.25.25-.25h1.5c.1381,0,.25.1119.25.25v1.5c0,.1381-.1119.25-.25.25h-1.5c-.1381,0-.25-.1119-.25-.25v-1.5ZM4.6667,6.25c0-.1381.1119-.25.25-.25h1.5c.1381,0,.25.1119.25.25v1.5c0,.1381-.1119.25-.25.25h-1.5c-.1381,0-.25-.1119-.25-.25v-1.5Z",
127
+ city: "M7,12.2308c0,.8922-.7232,1.6154-1.6154,1.6154h-1.3462v1.6154c0,.2974-.2411.5385-.5385.5385s-.5385-.2411-.5385-.5385v-1.6154h-1.3462c-.8922,0-1.6154-.7232-1.6154-1.6154,0-.6889.4331-1.2728,1.0403-1.5051-.2068-.4898-.1124-1.0765.2867-1.4756.2487-.2487.5709-.3756.8966-.389.1736-.5426.6761-.938,1.2763-.938s1.1027.3955,1.2763.938c.3258.0133.6479.1403.8966.389.3991.3991.4935.9858.2867,1.4756.6072.2323,1.0403.8162,1.0403,1.5051ZM16,3v12c0,.5522-.4477,1-1,1h-6c-.5523,0-1-.4478-1-1V3c0-.5523.4477-1,1-1h6c.5523,0,1,.4477,1,1ZM11.25,13.5c0-.2762-.2239-.5-.5-.5h-.75c-.2761,0-.5.2238-.5.5v.75c0,.2761.2239.5.5.5h.75c.2761,0,.5-.2239.5-.5v-.75ZM11.25,10.25c0-.2762-.2239-.5-.5-.5h-.75c-.2761,0-.5.2238-.5.5v.75c0,.2761.2239.5.5.5h.75c.2761,0,.5-.2239.5-.5v-.75ZM11.25,7c0-.2762-.2239-.5-.5-.5h-.75c-.2761,0-.5.2238-.5.5v.75c0,.2761.2239.5.5.5h.75c.2761,0,.5-.2239.5-.5v-.75ZM11.25,3.75c0-.2762-.2239-.5-.5-.5h-.75c-.2761,0-.5.2238-.5.5v.75c0,.2761.2239.5.5.5h.75c.2761,0,.5-.2239.5-.5v-.75ZM14.5,13.5c0-.2762-.2239-.5-.5-.5h-.75c-.2761,0-.5.2238-.5.5v.75c0,.2761.2239.5.5.5h.75c.2761,0,.5-.2239.5-.5v-.75ZM14.5,10.25c0-.2762-.2239-.5-.5-.5h-.75c-.2761,0-.5.2238-.5.5v.75c0,.2761.2239.5.5.5h.75c.2761,0,.5-.2239.5-.5v-.75ZM14.5,7c0-.2762-.2239-.5-.5-.5h-.75c-.2761,0-.5.2238-.5.5v.75c0,.2761.2239.5.5.5h.75c.2761,0,.5-.2239.5-.5v-.75ZM14.5,3.75c0-.2762-.2239-.5-.5-.5h-.75c-.2761,0-.5.2238-.5.5v.75c0,.2761.2239.5.5.5h.75c.2761,0,.5-.2239.5-.5v-.75ZM3.908,4.382c.0816-.0124.1265.0927.0596.1413-.4867.354-1.1041.5374-1.7672.4586C1.0673,4.8472.1453,3.918.0167,2.7795-.1403,1.3902.8313.1968,2.1285.001c.0811-.0123.1222.0938.0559.1422-.6546.478-1.054,1.2871-.953,2.1826.103.9136.756,1.6992,1.63,1.9732.3641.1141.7165.1331,1.0465.0831Z",
128
+ car: "M15,6.5h-.5l-.9148-3.5051c-.2299-.8806-1.0251-1.4949-1.9352-1.4949h-7.3c-.91,0-1.7053.6144-1.9352,1.4949l-.9148,3.5051h-.5c-.5523,0-1,.4477-1,1s.4477,1,1,1v5c0,.5522.4477,1,1,1h1c.5523,0,1-.4478,1-1v-1h8v1c0,.5522.4477,1,1,1h1c.5523,0,1-.4478,1-1v-5c.5523,0,1-.4478,1-1s-.4477-1-1-1ZM4.0926,3.8893c.0517-.2277.2541-.3893.4876-.3893h6.8396c.2335,0,.4359.1616.4876.3893l.5926,2.6107H3.5l.5926-2.6107ZM4,10.5c-.5523,0-1-.4478-1-1s.4477-1,1-1,1,.4477,1,1-.4477,1-1,1ZM13,9.5c0,.5522-.4477,1-1,1s-1-.4478-1-1,.4477-1,1-1,1,.4477,1,1Z",
129
+ "bar-graph": "M5,6h0c.5523,0,1,.4477,1,1v4c0,.5523-.4477,1-1,1h0c-.5523,0-1-.4477-1-1v-4c0-.5523.4477-1,1-1ZM13,4h0c.5523,0,1,.4477,1,1v6c0,.5523-.4477,1-1,1h0c-.5523,0-1-.4477-1-1v-6c0-.5523.4477-1,1-1ZM9,2h0c.5523,0,1,.4477,1,1v8c0,.5523-.4477,1-1,1h0c-.5523,0-1-.4477-1-1V3c0-.5523.4477-1,1-1ZM15,13.9948H2V1c0-.5523-.4477-1-1-1S0,.4477,0,1v14c0,.5522.4478,1,1,1,.0091,0,.0167-.0049.0257-.0052h13.9743c.5523,0,1-.4477,1-1s-.4477-1-1-1Z",
130
+ clock: "M8,0C3.5817,0,0,3.5817,0,8s3.5817,8,8,8,8-3.5817,8-8S12.4183,0,8,0ZM8,14c-3.3137,0-6-2.6863-6-6s2.6863-6,6-6,6,2.6863,6,6-2.6863,6-6,6ZM11.0983,8.6342l-2.0983-1.2114v-3.4227c0-.5523-.4477-1-1-1s-1,.4477-1,1v4c0,.0435.0193.0805.0247.1225.0087.0687.0178.1341.0403.1995.0212.0615.051.1151.0832.1705.0317.0551.0629.1073.1052.156.0457.0526.0983.0936.1539.1357.0334.0254.0556.0604.0929.082l2.5981,1.5c.4783.2762,1.0898.1123,1.366-.366.2761-.4783.1122-1.0898-.366-1.366h0Z",
131
+ more: "M9.75,8c0,.9665-.7835,1.75-1.75,1.75s-1.75-.7835-1.75-1.75.7835-1.75,1.75-1.75,1.75.7835,1.75,1.75ZM14.25,6.25c-.9665,0-1.75.7835-1.75,1.75s.7835,1.75,1.75,1.75,1.75-.7835,1.75-1.75-.7835-1.75-1.75-1.75ZM1.75,6.25C.7835,6.25,0,7.0335,0,8s.7835,1.75,1.75,1.75,1.75-.7835,1.75-1.75-.7835-1.75-1.75-1.75Z",
132
+ grid: "M8.5,12.125h-1c-.5523,0-1-.4477-1-1v-1c0-.5523.4477-1,1-1h1c.5523,0,1,.4477,1,1v1c0,.5523-.4477,1-1,1ZM14.75,11.125v-1c0-.5523-.4477-1-1-1h-1c-.5523,0-1,.4477-1,1v1c0,.5523.4477,1,1,1h1c.5523,0,1-.4477,1-1ZM4.25,11.125v-1c0-.5523-.4477-1-1-1h-1c-.5523,0-1,.4477-1,1v1c0,.5523.4477,1,1,1h1c.5523,0,1-.4477,1-1ZM9.5,5.875v-1c0-.5523-.4477-1-1-1h-1c-.5523,0-1,.4477-1,1v1c0,.5523.4477,1,1,1h1c.5523,0,1-.4477,1-1ZM14.75,5.875v-1c0-.5523-.4477-1-1-1h-1c-.5523,0-1,.4477-1,1v1c0,.5523.4477,1,1,1h1c.5523,0,1-.4477,1-1ZM4.25,5.875v-1c0-.5523-.4477-1-1-1h-1c-.5523,0-1,.4477-1,1v1c0,.5523.4477,1,1,1h1c.5523,0,1-.4477,1-1Z",
133
+ list: "M2.375,7c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM5.625,7h8c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1H5.625c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1ZM2.375,3c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM5.625,3h8c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1H5.625c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1ZM2.375,11c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM5.625,11h8c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1H5.625c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1Z",
134
+ menu: "M2,7h12c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1H2c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1ZM2,1.75h12c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1H2c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1ZM2,12.25h12c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1H2c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1Z",
135
+ calculator: "M8,11.25c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM5,11.25c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM8,8.5c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM5,8.5c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM8,5.75c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM5,5.75c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM11,5.75c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM4.5,2.875h7c.2761,0,.5.2239.5.5v1c0,.2761-.2239.5-.5.5h-7c-.2761,0-.5-.2239-.5-.5v-1c0-.2761.2239-.5.5-.5ZM11,8.5h0c.5523,0,1,.4477,1,1v2.75c0,.5523-.4477,1-1,1h0c-.5523,0-1-.4477-1-1v-2.75c0-.5523.4477-1,1-1ZM13,0H3C1.8954,0,1,.8954,1,2v12c0,1.1046.8954,2,2,2h10c1.1046,0,2-.8954,2-2V2c0-1.1046-.8954-2-2-2ZM12.5,14H3.5c-.2761,0-.5-.2239-.5-.5V2.5c0-.2761.2239-.5.5-.5h9c.2761,0,.5.2239.5.5v11c0,.2761-.2239.5-.5.5Z",
136
+ "graph-down": "M15,13.9948H2V1c0-.5523-.4477-1-1-1S0,.4477,0,1v14c0,.5522.4478,1,1,1,.0091,0,.0167-.0049.0257-.0052h13.9743c.5523,0,1-.4477,1-1s-.4477-1-1-1ZM14.2322,12.0622c-.4783.2762-1.0899.1123-1.366-.366l-2.5001-4.3303-2.5984,1.5002c-.4783.2761-1.0898.1122-1.366-.366,0-.0001,0-.0003-.0001-.0004L3.4017,3.3037c-.2761-.4783-.1122-1.0898.366-1.366.4783-.2761,1.0899-.1122,1.366.366l2.5001,4.3303,2.598-1.4999c.1197-.0691.2477-.1106.3767-.1266.3867-.048.7825.1339.9897.4926l3,5.1961c.2761.4783.1122,1.0899-.366,1.366Z",
137
+ "graph-up": "M15,13.9948H2V1c0-.5523-.4477-1-1-1S0,.4477,0,1v14c0,.5522.4478,1,1,1,.0091,0,.0167-.0049.0257-.0052h13.9743c.5523,0,1-.4477,1-1s-.4477-1-1-1ZM14.2322,1.9377c-.4783-.2762-1.0899-.1123-1.366.366l-2.5001,4.3303-2.5984-1.5002c-.4783-.2761-1.0898-.1122-1.366.366,0,.0001,0,.0003-.0001.0004l-2.9999,5.1959c-.2761.4783-.1122,1.0898.366,1.366.4783.2761,1.0899.1122,1.366-.366l2.5001-4.3303,2.598,1.4999c.1197.0691.2477.1106.3767.1266.3867.048.7825-.1339.9897-.4926l3-5.1961c.2761-.4783.1122-1.0899-.366-1.366h0Z",
138
+ newspaper: "M1,2v12c0,1.1046.8954,2,2,2h10c1.1046,0,2-.8954,2-2V2c0-1.1046-.8954-2-2-2H3C1.8954,0,1,.8954,1,2ZM12.5,14H3.5c-.2761,0-.5-.2239-.5-.5V2.5c0-.2761.2239-.5.5-.5h9c.2761,0,.5.2239.5.5v11c0,.2761-.2239.5-.5.5ZM6.5,6.5h-2c-.2761,0-.5-.2239-.5-.5v-2c0-.2761.2239-.5.5-.5h2c.2761,0,.5.2239.5.5v2c0,.2761-.2239.5-.5.5ZM11.25,6.5h-2.5c-.4142,0-.75-.3358-.75-.75h0c0-.4142.3358-.75.75-.75h2.5c.4142,0,.75.3358.75.75h0c0,.4142-.3358.75-.75.75ZM11.25,9.5h-6.5c-.4142,0-.75-.3358-.75-.75h0c0-.4142.3358-.75.75-.75h6.5c.4142,0,.75.3358.75.75h0c0,.4142-.3358.75-.75.75ZM11.25,12.5h-6.5c-.4142,0-.75-.3358-.75-.75h0c0-.4142.3358-.75.75-.75h6.5c.4142,0,.75.3358.75.75h0c0,.4142-.3358.75-.75.75Z",
139
+ document: "M13.42,3.07l-.01-.01-2.48-2.48c-.01-.0099-.02-.02-.04-.04C10.52.2,10.02,0,9.51,0h-5.51C2.9,0,2,.9,2,2v12c0,1.1.9,2,2,2h8c1.1,0,2-.9,2-2V4.48c0-.53-.21-1.03-.58-1.41ZM12,4.49v.01h-2c-.28,0-.5-.22-.5-.5v-2h.02l2.48,2.49ZM12,13.5c0,.28-.22.5-.5.5h-7c-.28,0-.5-.22-.5-.5V2.5c0-.28.22-.5.5-.5h3v2.5c0,.55.22,1.05.59,1.41.36.37.86.59,1.41.59h2.5v7ZM10.4,8.35h-4.8c-.3314,0-.6-.2686-.6-.6h0c0-.3314.2686-.6.6-.6h4.8c.3314,0,.6.2686.6.6h0c0,.3314-.2686.6-.6.6ZM10.4,10.85h-4.8c-.3314,0-.6-.2686-.6-.6h0c0-.3314.2686-.6.6-.6h4.8c.3314,0,.6.2686.6.6h0c0,.3314-.2686.6-.6.6ZM10.4,13.35h-4.8c-.3314,0-.6-.2686-.6-.6h0c0-.3314.2686-.6.6-.6h4.8c.3314,0,.6.2686.6.6h0c0,.3314-.2686.6-.6.6Z",
140
+ code: "M3.984,2.8037c-.4783-.2761-1.0898-.1123-1.366.366L.118,7.4999c-.0216.0374-.0233.079-.0396.1178-.027.0641-.052.1258-.0652.194-.0123.0634-.0134.1242-.0132.1879-.0002.0641.0008.1253.0132.1891.0132.0678.038.1291.0649.1929.0163.0391.0181.0808.0398.1184l2.5,4.3301c.2762.4783.8877.6422,1.366.366s.6422-.8877.366-1.366l-2.2114-3.8302,2.2114-3.8303c.2762-.4783.1123-1.0899-.366-1.366h0ZM12.016,2.8037c.4783-.2761,1.0898-.1123,1.366.366l2.5,4.3301c.0216.0374.0233.079.0396.1178.027.0641.052.1258.0652.194.0123.0634.0133.1243.0131.1879.0002.0641-.0008.1253-.0132.1891-.0132.0678-.038.1291-.0649.1929-.0163.0391-.0181.0808-.0398.1184l-2.5,4.3301c-.2762.4783-.8877.6422-1.366.366s-.6422-.8877-.366-1.366l2.2114-3.8302-2.2114-3.8303c-.2762-.4783-.1123-1.0899.366-1.366v.0002ZM6.0571,13.3377h0c-.519-.1889-.7866-.7627-.5977-1.2817l3.1946-8.7768c.1889-.519.7627-.7865,1.2817-.5977h0c.519.1889.7866.7627.5977,1.2817l-3.1946,8.7768c-.1889.519-.7627.7865-1.2817.5977Z",
141
+ folder: "M14,3h-5.5858l-1.7072-1.7071c-.0922-.0922-.2027-.1652-.325-.2158-.1223-.0506-.2519-.0771-.3821-.0771H2C.8954,1,0,1.8954,0,3v10c0,1.1046.8954,2,2,2h12c1.1046,0,2-.8954,2-2V5c0-1.1046-.8954-2-2-2ZM13.5,13H2.5c-.2761,0-.5-.2239-.5-.5V3.5c0-.2761.2239-.5.5-.5h3.0858l1.7062,1.7063s.0004.0002.0005.0004c.0923.0924.2032.1655.3258.2163.092.0378.1898.0487.2874.058.0326.0032.0608.019.0942.019h5.5c.2761,0,.5.2239.5.5v7c0,.2761-.2239.5-.5.5Z",
142
+ file: "M13.42,3.07l-.01-.01-2.48-2.48c-.01-.0099-.02-.02-.04-.04-.37-.34-.87-.54-1.38-.54h-5.51c-1.1,0-2,.9-2,2v12c0,1.1.9,2,2,2h8c1.1,0,2-.9,2-2V4.48c0-.53-.21-1.03-.58-1.41ZM12,4.49v.01h-2c-.28,0-.5-.22-.5-.5v-2h.02l2.48,2.49ZM12,13.5c0,.28-.22.5-.5.5h-7c-.28,0-.5-.22-.5-.5V2.5c0-.28.22-.5.5-.5h3v2.5c0,.55.22,1.05.59,1.41.36.37.86.59,1.41.59h2.5v7Z",
143
+ clipboard: "M12,2c0-1.1046-.8954-2-2-2h-4c-1.1046,0-2,.8954-2,2-1.1046,0-2,.8954-2,2v10c0,1.1046.8954,2,2,2h8c1.1046,0,2-.8954,2-2V4c0-1.1046-.8954-2-2-2ZM7,2h2c.5523,0,1,.4477,1,1s-.4477,1-1,1h-2c-.5523,0-1-.4478-1-1s.4477-1,1-1ZM12,13.5c0,.2761-.2239.5-.5.5h-7c-.2761,0-.5-.2239-.5-.5V4c0,1.1046.8954,2,2,2h4c1.1046,0,2-.8954,2-2v9.5Z",
144
+ vista: "M0,3v10c0,1.1046.8954,2,2,2h12c1.1046,0,2-.8954,2-2V3c0-1.1046-.8954-2-2-2H2C.8954,1,0,1.8954,0,3ZM13.5,13H2.5c-.2761,0-.5-.2239-.5-.5V3.5c0-.2761.2239-.5.5-.5h11c.2761,0,.5.2239.5.5v9c0,.2761-.2239.5-.5.5ZM12,5c0,.5523-.4477,1-1,1s-1-.4477-1-1,.4477-1,1-1,1,.4477,1,1ZM3.6504,11.0019l1.8252-3.129c.193-.3307.6709-.3307.8638,0l.2383.4086,1.0426-1.7873c.1929-.3307.6708-.3307.8638,0l1.4499,2.4855.1861-.319c.1929-.3307.6708-.3307.8638,0l1.3657,2.3412c.1945.3333-.046.752-.4319.752h-7.8354c-.3859,0-.6263-.4186-.4319-.752Z",
145
+ calendar: "M4.5,10.25h-.5c-.2761,0-.5-.2239-.5-.5v-.5c0-.2761.2239-.5.5-.5h.5c.2761,0,.5.2239.5.5v.5c0,.2761-.2239.5-.5.5ZM5,12.25v-.5c0-.2761-.2239-.5-.5-.5h-.5c-.2761,0-.5.2239-.5.5v.5c0,.2761.2239.5.5.5h.5c.2761,0,.5-.2239.5-.5ZM7.5,9.75v-.5c0-.2761-.2239-.5-.5-.5h-.5c-.2761,0-.5.2239-.5.5v.5c0,.2761.2239.5.5.5h.5c.2761,0,.5-.2239.5-.5ZM7.5,12.25v-.5c0-.2761-.2239-.5-.5-.5h-.5c-.2761,0-.5.2239-.5.5v.5c0,.2761.2239.5.5.5h.5c.2761,0,.5-.2239.5-.5ZM10,9.75v-.5c0-.2761-.2239-.5-.5-.5h-.5c-.2761,0-.5.2239-.5.5v.5c0,.2761.2239.5.5.5h.5c.2761,0,.5-.2239.5-.5ZM10,12.25v-.5c0-.2761-.2239-.5-.5-.5h-.5c-.2761,0-.5.2239-.5.5v.5c0,.2761.2239.5.5.5h.5c.2761,0,.5-.2239.5-.5ZM12.5,9.75v-.5c0-.2761-.2239-.5-.5-.5h-.5c-.2761,0-.5.2239-.5.5v.5c0,.2761.2239.5.5.5h.5c.2761,0,.5-.2239.5-.5ZM12.5,12.25v-.5c0-.2761-.2239-.5-.5-.5h-.5c-.2761,0-.5.2239-.5.5v.5c0,.2761.2239.5.5.5h.5c.2761,0,.5-.2239.5-.5ZM16,3.5v10.5c0,1.1046-.8954,2-2,2H2c-1.1046,0-2-.8954-2-2V3.5C0,2.3954.8954,1.5,2,1.5h2v-.5c0-.5523.4477-1,1-1s1,.4477,1,1v.5h4v-.5c0-.5523.4477-1,1-1s1,.4477,1,1v.5h2c1.1046,0,2,.8954,2,2ZM14,13.5v-5.5c0-.2761-.2239-.5-.5-.5H2.5c-.2761,0-.5.2239-.5.5v5.5c0,.2761.2239.5.5.5h11c.2761,0,.5-.2239.5-.5ZM2.5,5.5h11c.2761,0,.5-.2239.5-.5v-1c0-.2761-.2239-.5-.5-.5H2.5c-.2761,0-.5.2239-.5.5v1c0,.2761.2239.5.5.5Z",
146
+ letter: "M14,2H2c-1.1,0-2,.9-2,2v8c0,1.1.9,2,2,2h12c1.1,0,2-.9,2-2V4c0-1.1-.9-2-2-2ZM12.8165,4l-.5865.3385-4.23,2.44-4.23-2.44-.5865-.3385h9.6329ZM13.5,12H2.5c-.04,0-.07,0-.1-.01-.23-.05-.4-.25-.4-.49v-5.8615l3.99,2.3,1.5101.8716c.3093.1785.6904.1785.9998,0l1.5101-.8716,3.99-2.3v5.8615c0,.24-.17.44-.4.49-.03.01-.06.01-.1.01Z",
147
+ settings: "M15.98,7.5543c-.0204-.3629-.3464-.6065-.7092-.6272-.7396-.0422-1.4248-.4924-1.7275-1.2231-.3027-.7308-.1365-1.5337.3567-2.0865.2419-.2712.3001-.6739.058-.945-.1992-.223-.4098-.4335-.6306-.6308-.2644-.2363-.68-.1777-.9446.0584-.5528.4932-1.3558.6595-2.0866.3568-.7308-.3027-1.181-.988-1.2231-1.7277-.0201-.3541-.2726-.6894-.6266-.7093-.2957-.0166-.5934-.0167-.892.0002-.3629.0205-.6065.3464-.6272.7092-.0422.7396-.4924,1.4248-1.2231,1.7275-.7308.3027-1.5337.1365-2.0865-.3567-.2712-.2419-.6739-.3001-.945-.058-.223.1992-.4335.4098-.6308.6306-.2363.2644-.1777.6801.0584.9446.4932.5528.6595,1.3558.3568,2.0866-.3027.7308-.988,1.181-1.7276,1.2231-.3541.0201-.6895.2726-.7093.6267-.0166.2957-.0167.5934.0002.8921.0205.3628.3464.6065.7092.6272.7396.0422,1.4249.4923,1.7275,1.2231s.1365,1.5337-.3567,2.0864c-.2419.2712-.3001.674-.058.945.1993.2231.4099.4335.6307.6309.2645.2363.6801.1777.9447-.0583.5528-.4932,1.3558-.6595,2.0865-.3568.7308.3027,1.181.988,1.2231,1.7276.0201.3541.2726.6895.6267.7093.2957.0166.5934.0167.8921-.0002.3628-.0204.6065-.3464.6272-.7092.0422-.7396.4923-1.4249,1.2231-1.7275s1.5337-.1365,2.0864.3567c.2712.2419.674.3001.945.058.2231-.1993.4335-.4099.6309-.6307.2363-.2645.1777-.6801-.0583-.9447-.4932-.5528-.6595-1.3558-.3568-2.0865.3027-.7308.988-1.181,1.7277-1.2231.3541-.0201.6894-.2726.7093-.6266.0166-.2957.0167-.5934-.0002-.892ZM8.0003,11c-1.6568-.0002-3.0001-1.3435-3.0003-3.0003-.0002-1.6569,1.3428-2.9999,2.9997-2.9997,1.6568.0002,3.0001,1.3435,3.0003,3.0003.0002,1.6569-1.3428,2.9999-2.9997,2.9997Z",
148
+ evergreen: "M13.1465,12.1464l-2.6464-2.6465h1.4324c.4239,0,.6555-.4944.3841-.8201l-2.233-2.6796h1.0179c.3919,0,.6315-.4305.4249-.7636L8.4249.2364c-.1956-.3152-.6543-.3152-.8499,0l-3.1014,5.0001c-.2066.3331.033.7636.4249.7636h1.0179l-2.233,2.6796c-.2714.3257-.0398.8201.3841.8201h1.4324l-2.6464,2.6465c-.3149.315-.0919.8536.3536.8536h3.7929v2.0001c0,.5522.4477,1,1,1s1-.4477,1-1v-2.0001h3.7929c.4454,0,.6685-.5386.3536-.8536Z",
149
+ tree: "M12.568,5.2049h.0002c.3841-.9095.2087-1.9991-.5325-2.7404-.4619-.4619-1.0602-.6976-1.6652-.7224-.3224-1.0076-1.2557-1.7421-2.3704-1.7421s-2.0479.7344-2.3704,1.7421c-.605.0248-1.2032.2605-1.6652.7224-.7411.7411-.9166,1.8308-.5325,2.7404-1.1277.4313-1.932,1.5158-1.932,2.7952,0,1.6569,1.3431,3,3,3h2.5v3.9999c0,.5523.4477,1,1,1s1-.4477,1-1v-3.9999h2.5c1.6569,0,3-1.3431,3-3,0-1.2794-.8043-2.3638-1.932-2.7952Z",
150
+ podium: "M9.5,15.1928h-3c-.5523,0-1-.4477-1-1v-6c0-.5523.4477-1,1-1h3c.5523,0,1,.4477,1,1v6c0,.5523-.4477,1-1,1ZM5,14.1928v-2c0-.5523-.4477-1-1-1H1c-.5523,0-1,.4477-1,1v2c0,.5523.4477,1,1,1h3c.5523,0,1-.4477,1-1ZM16,14.1928v-4c0-.5523-.4477-1-1-1h-3c-.5523,0-1,.4477-1,1v4c0,.5523.4477,1,1,1h3c.5523,0,1-.4477,1-1ZM7.8451.9206l-.4693,1.4831c-.0215.068-.0849.114-.1562.1135l-1.5555-.012c-.1587-.0012-.2248.2024-.0957.2947l1.2656.9046c.058.0415.0822.1159.0596.1836l-.4921,1.4757c-.0502.1505.123.2764.2507.1821l1.2514-.924c.0574-.0424.1357-.0424.1931,0l1.2514.924c.1277.0943.3009-.0316.2507-.1821l-.4921-1.4757c-.0226-.0677.0017-.1421.0597-.1836l1.2655-.9046c.1291-.0923.063-.2959-.0957-.2947l-1.5555.012c-.0713.0005-.1347-.0455-.1562-.1135l-.4693-1.4831c-.0479-.1513-.262-.1513-.3099,0ZM2.407,6.3295l-.2816.8899c-.0129.0408-.0509.0684-.0937.0681l-.9333-.0072c-.0952-.0007-.1349.1214-.0574.1768l.7594.5428c.0348.0249.0493.0696.0358.1102l-.2953.8854c-.0301.0903.0738.1658.1504.1093l.7508-.5544c.0344-.0254.0814-.0254.1158,0l.7508.5544c.0766.0566.1805-.019.1504-.1093l-.2953-.8854c-.0135-.0406.001-.0853.0358-.1102l.7593-.5428c.0775-.0554.0378-.1775-.0574-.1768l-.9333.0072c-.0428.0003-.0808-.0273-.0937-.0681l-.2816-.8899c-.0287-.0908-.1572-.0908-.1859,0ZM13.3761,3.3751l-.3754,1.1865c-.0172.0544-.0679.0912-.125.0908l-1.2444-.0096c-.127-.001-.1799.1619-.0766.2357l1.0125.7237c.0464.0332.0658.0927.0477.1469l-.3937,1.1805c-.0402.1204.0984.2211.2005.1457l1.0011-.7392c.0459-.0339.1086-.0339.1544,0l1.0011.7392c.1021.0754.2407-.0253.2005-.1457l-.3937-1.1805c-.018-.0541.0013-.1137.0477-.1469l1.0124-.7237c.1033-.0738.0504-.2367-.0766-.2357l-1.2444.0096c-.0571.0004-.1077-.0364-.125-.0908l-.3754-1.1865c-.0383-.121-.2096-.121-.2479,0Z",
151
+ login: "M14,0c1.1046,0,2,.8954,2,2h0v12h0c0,1.1046-.8954,2-2,2h-5c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1h4.5c.2761,0,.5-.2239.5-.5V2h-5c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1h5ZM11.9242,7.6178c-.0501-.1208-.1226-.2296-.2132-.321-.0012-.0012-.0015-.0028-.0026-.004l-3.1823-3.1819c-.3905-.3905-1.0239-.3905-1.4144,0s-.3905,1.0237,0,1.4142l1.4751,1.4749H1.0001c-.5524,0-1.0001.4477-1.0001,1s.4477,1,1.0001,1h7.5866l-1.475,1.4749c-.3905.3905-.3905,1.0237,0,1.4142s1.0238.3906,1.4144,0l3.1823-3.1819c.0922-.0922.1651-.2027.2158-.325.1011-.2445.1011-.5198,0-.7643Z",
152
+ logout: "M2,0h5c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1H2v11.5c0,.2761.2239.5.5.5h4.5c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1H2c-1.1046,0-2-.8954-2-2h0V2h0C0,.8954.8954,0,2,0h0ZM15.9242,7.6178c-.0501-.1208-.1226-.2296-.2132-.321-.0012-.0012-.0015-.0028-.0026-.004l-3.1823-3.1819c-.3905-.3905-1.0239-.3905-1.4144,0s-.3905,1.0237,0,1.4142l1.4751,1.4749h-7.5867c-.5524,0-1.0001.4477-1.0001,1s.4477,1,1.0001,1h7.5866l-1.475,1.4749c-.3905.3905-.3905,1.0237,0,1.4142s1.0238.3906,1.4144,0l3.1823-3.1819c.0922-.0922.1651-.2027.2158-.325.1011-.2445.1011-.5198,0-.7643Z",
153
+ trash: "M14.25,2h-3.75v-.5c0-.8284-.6716-1.5-1.5-1.5h-2c-.8284,0-1.5.6716-1.5,1.5v.5H1.75c-.5523,0-1,.4477-1,1s.4477,1,1,1h.4155l.7042,10.1268c.0734,1.0551.9448,1.8732,1.9951,1.8732h6.2703c1.0504,0,1.9218-.8181,1.9951-1.8732l.7042-10.1268h.4155c.5523,0,1-.4477,1-1s-.4477-1-1-1ZM11.0211,13.5049c-.0118.2692-.2319.4813-.4995.4813h-5.0431c-.2676,0-.4877-.2122-.4995-.4813l-.4156-9.5049h6.8733l-.4156,9.5049Z",
154
+ atom: "M14.9282,4c-.6038-1.0458-2.0749-1.4437-3.9071-1.2328C10.2877,1.075,9.2076,0,8,0s-2.2877,1.0751-3.0211,2.7672c-1.8322-.2109-3.3033.1869-3.9071,1.2328s-.2129,2.5187.8859,4c-1.0988,1.4813-1.4897,2.9542-.8859,4s2.0748,1.4437,3.907,1.2328c.7334,1.6922,1.8135,2.7672,3.0211,2.7672s2.2877-1.0751,3.0211-2.7672c1.8322.2109,3.3033-.1869,3.9071-1.2328s.2129-2.5186-.8859-3.9999c1.0988-1.4813,1.4898-2.9542.8859-4.0001ZM4.3932,11.4411c-.7919.0757-1.3691-.0597-1.5893-.4411s-.0489-.949.4126-1.597c.2927.2772.6059.5496.9426.8145.0611.4241.1404.8315.2341,1.2235ZM2.8039,5c.2202-.3814.7974-.5167,1.5893-.4411-.0937.392-.1729.7994-.2341,1.2235-.3353.2639-.6474.5351-.9389.811-.4586-.6457-.636-1.2131-.4163-1.5934ZM8,14c-.4392,0-.8419-.4373-1.1718-1.1573.3848-.1145.7756-.2492,1.1718-.4076.3978.1591.7903.2942,1.1766.4091-.3304.7237-.7362,1.1558-1.1766,1.1558ZM5.4019,9.5c-.8284-1.4349-.3368-3.2696,1.0981-4.0981s3.2696-.3368,4.0981,1.0981.3368,3.2696-1.0981,4.0981-3.2696.3368-4.0981-1.0981ZM13.1962,11c-.2202.3814-.7974.5168-1.5894.4411.0937-.392.1729-.7995.2341-1.2235.3353-.2639.6473-.5351.9389-.811.4586.6457.6359,1.2131.4163,1.5934ZM9.1718,3.1573c-.3847.1145-.7756.2492-1.1718.4076-.3979-.1591-.7904-.2943-1.1767-.4091.3304-.7236.7363-1.1558,1.1767-1.1558.4392,0,.8419.4373,1.1718,1.1573ZM12.7835,6.5969c-.2927-.2772-.6059-.5495-.9426-.8145-.0611-.4241-.1404-.8316-.2341-1.2236.7919-.0757,1.3691.0597,1.5893.4411s.0488.949-.4127,1.5969ZM8.866,7.5c.2761.4783.1123,1.0899-.366,1.366s-1.0899.1123-1.366-.366-.1123-1.0899.366-1.366,1.0899-.1123,1.366.366Z",
155
+ globe: "M8,0C3.5817,0,0,3.5817,0,8s3.5817,8,8,8,8-3.5817,8-8S12.4183,0,8,0ZM13.91,7h-1.9446c-.0983-1.5734-.4231-3.0046-.9099-4.157,1.4869.883,2.5568,2.3868,2.8544,4.157ZM8,14c-.9907,0-1.811-2.1634-1.97-5h3.9401c-.159,2.8366-.9793,5-1.97,5ZM6.03,7c.159-2.8366.9793-5,1.97-5s1.811,2.1634,1.97,5h-3.9401ZM4.9444,2.843c-.4868,1.1524-.8115,2.5836-.9099,4.157h-1.9446c.2977-1.7702,1.3676-3.274,2.8544-4.157ZM2.09,9h1.9446c.0983,1.5734.4231,3.0046.9099,4.157-1.4869-.883-2.5568-2.3868-2.8544-4.157ZM11.0556,13.157c.4868-1.1524.8115-2.5836.9099-4.157h1.9446c-.2977,1.7702-1.3676,3.274-2.8544,4.157Z",
156
+ mountains: "M15.8752,14.3163c.3522.7463-.0832,1.6837-.782,1.6837H.9067c-.6987,0-1.134-.9372-.782-1.6837l3.3047-7.0054c.3494-.7404,1.2147-.7404,1.5639,0l.4314.9147,1.8877-4.0015c.3493-.7404,1.2146-.7404,1.564,0l2.6251,5.5648.3369-.7143c.3493-.7404,1.2146-.7404,1.564,0l2.4726,5.2417ZM14,0c-1.1046,0-2,.8954-2,2s.8954,2,2,2,2-.8954,2-2-.8954-2-2-2Z",
157
+ snowflake: "M14.6537,10.9755l-1.1459-.6616.6658-.1784c.4001-.1072.6376-.5184.5303-.9186-.1072-.4001-.5184-.6375-.9186-.5303l-2.1147.5667-2.1707-1.2532,2.1706-1.2532,2.1147.5667c.4001.1072.8114-.1302.9186-.5303.1072-.4001-.1302-.8113-.5303-.9186l-.6658-.1784,1.1459-.6616c.3587-.2071.4816-.6658.2745-1.0245-.2072-.3588-.6658-.4816-1.0245-.2745l-1.1459.6616.1784-.6658c.1072-.4001-.1302-.8114-.5303-.9186-.4001-.1072-.8113.1302-.9186.5303l-.5667,2.1147-2.1706,1.2532v-2.5064l1.5481-1.5481c.2929-.2929.2929-.7678,0-1.0607-.2929-.2928-.7678-.2928-1.0607,0l-.4874.4874V.75c0-.4142-.3358-.75-.75-.75s-.75.3358-.75.75v1.3232l-.4874-.4874c-.2929-.2928-.7678-.2928-1.0607,0-.2929.2929-.2929.7678,0,1.0607l1.5481,1.5481v2.5064l-2.1706-1.2532-.5667-2.1147c-.1072-.4001-.5185-.6376-.9186-.5303-.4001.1072-.6375.5184-.5303.9186l.1784.6658-1.1459-.6616c-.3587-.2071-.8174-.0842-1.0245.2745-.2071.3587-.0842.8174.2745,1.0245l1.1459.6616-.6658.1784c-.4001.1072-.6376.5185-.5303.9186.1072.4001.5184.6376.9186.5303l2.1147-.5667,2.1706,1.2532-2.1707,1.2532-2.1147-.5667c-.4001-.1072-.8114.1302-.9186.5303-.1072.4001.1302.8114.5303.9186l.6658.1784-1.1459.6616c-.3587.2071-.4816.6658-.2745,1.0245.2072.3587.6658.4816,1.0245.2745l1.1459-.6616-.1784.6659c-.1072.4001.1302.8113.5303.9186.4001.1072.8113-.1302.9186-.5303l.5667-2.1148,2.1706-1.2532v2.5064l-1.5481,1.5481c-.2929.2929-.2929.7678,0,1.0607s.7678.2929,1.0607,0l.4874-.4874v1.3232c0,.4142.3358.75.75.75s.75-.3358.75-.75v-1.3232l.4874.4874c.2929.2929.7678.2929,1.0607,0s.2929-.7678,0-1.0607l-1.5481-1.5481v-2.5064l2.1706,1.2532.5667,2.1148c.1072.4001.5185.6375.9186.5303.4001-.1072.6375-.5185.5303-.9186l-.1784-.6659,1.1459.6616c.3587.2072.8174.0842,1.0245-.2745.2071-.3588.0842-.8174-.2745-1.0245Z",
158
+ "not-a-moon": "M8,5.25c0,.9665-.7835,1.75-1.75,1.75s-1.75-.7835-1.75-1.75.7835-1.75,1.75-1.75,1.75.7835,1.75,1.75ZM16,8c0,.34-.02.67-.06,1-.49,3.95-3.86,7-7.94,7S.55,12.95.06,9c-.04-.33-.06-.66-.06-1,0-.36.02-.71.07-1.06C.59,3.02,3.94,0,8,0s7.41,3.02,7.93,6.94c.05.35.07.7.07,1.06ZM2.03,7.49c1.58.32,3.68.51,5.97.51s4.39-.19,5.97-.51c-.25-3.07-2.83-5.49-5.97-5.49S2.28,4.42,2.03,7.49ZM13.8,9.5c-1.72.32-3.7.5-5.8.5s-4.08-.18-5.8-.5c.66,2.58,3.01,4.5,5.8,4.5s5.14-1.92,5.8-4.5Z",
159
+ gem: "M15.5687,7.2999c.0225-.0385.0544-.0697.0716-.1112.0092-.0222.0087-.046.0162-.0687.0201-.0602.0273-.1206.0358-.1837.0085-.0646.0173-.1264.0133-.1913-.0037-.0609-.0197-.1184-.0348-.1786-.0118-.0474-.0115-.0964-.0305-.1421-.0093-.0226-.0269-.0394-.0378-.0611-.0092-.0184-.0087-.0388-.0191-.0569l-2.5-4.3301c-.0215-.0372-.0565-.0594-.0818-.0928-.0421-.0557-.0832-.1083-.1359-.1541-.0487-.0422-.1007-.0735-.1558-.1051-.0555-.0323-.1092-.0621-.1708-.0833-.0653-.0225-.1307-.0316-.1993-.0402-.042-.0054-.0791-.0247-.1226-.0247H3.7828c-.0435,0-.0805.0193-.1225.0247-.0686.0087-.1342.0177-.1995.0402-.0615.0212-.1151.051-.1705.0833-.0552.0317-.1074.063-.1561.1053-.0525.0457-.0934.0981-.1355.1536-.0255.0335-.0605.0557-.0821.0931L.4166,6.3063c-.0104.0181-.0099.0385-.0191.0569-.0109.0217-.0285.0385-.0378.0611-.0189.0456-.0186.0945-.0304.1419-.0151.0604-.0312.1179-.0349.179-.0011.018-.0101.0351-.0103.0532,0,.0029-.0016.0052-.0016.0082s.0016.0053.0016.0082c.0004.0414.0182.0806.0237.1217.0084.063.0156.1234.0357.1835.0075.0227.007.0465.0162.0688.0172.0415.0493.0728.0717.1113.0314.0544.0621.106.1039.1541.0157.0181.0232.0425.0401.0594l6.7175,6.7175c.3906.3906,1.0237.3905,1.4142,0l6.7175-6.7175c.0169-.0169.0244-.0414.0401-.0594.0417-.0482.0726-.0998.104-.1542ZM4.1725,3.8008l1.683,2.0056h-2.8409l1.158-2.0056ZM6.5108,3.476h2.9784l-1.4892,1.7748-1.4892-1.7748ZM11.8275,3.8008l1.158,2.0056h-2.8409l1.683-2.0056ZM8,12.1097L3.6967,7.8065h8.6066l-4.3033,4.3033Z",
160
+ shuffle: "M15.7071,12.8029l-2.4749,2.4749c-.3906.3905-1.0237.3905-1.4142,0s-.3906-1.0237,0-1.4142l.7678-.7678h-2.1302c-.0314,0-.058-.015-.0887-.0179-.3063-.0079-.6055-.1384-.7947-.4086l-5.4373-7.7652H.9576c-.5289,0-.9576-.4287-.9576-.9576v-.0848c0-.5289.4287-.9576.9576-.9576h3.7048c.0295,0,.0544.0142.0832.0168.0637.0058.1228.0194.1843.0372.0602.0179.1168.037.1714.0658.0636.032.1193.0726.1755.1184.0341.0291.0658.0573.0955.0908.0327.0348.0742.0572.1024.0975l5.4373,7.7652h1.6738l-.7678-.7678c-.3905-.3906-.3905-1.0237,0-1.4142.3905-.3905,1.0237-.3905,1.4142,0l2.4749,2.4749c.3906.3905.3905,1.0237,0,1.4142ZM6.4276,9.6459l-.0695-.0486c-.4332-.3033-1.0303-.1981-1.3337.2351l-.8846,1.2634H.9576c-.5289,0-.9576.4287-.9576.9576v.0848c0,.5289.4287.9576.9576.9576h3.7048c.029,0,.0534-.014.0817-.0165.08-.0052.1547-.0217.2309-.0466.0337-.0118.066-.0223.098-.0377.0894-.0405.1677-.0955.2424-.1634.0126-.0118.0249-.0226.0368-.035.0375-.038.0832-.0641.1148-.1093l1.1958-1.7077c.3033-.4332.1981-1.0304-.2352-1.3337ZM15.6849,3.197l-2.4749-2.4749c-.3906-.3906-1.0237-.3906-1.4142,0-.3906.3906-.3906,1.0237,0,1.4142l.7678.7678h-2.1302c-.0301,0-.0554.0145-.0848.0172-.2925.0082-.5781.1332-.7588.3913l-1.1958,1.7078c-.3033.4332-.1981,1.0303.2352,1.3337l.0695.0486c.4332.3033,1.0303.1981,1.3337-.2352l.8846-1.2634h1.6467l-.7678.7678c-.3906.3905-.3906,1.0236,0,1.4142.3904.3905,1.0236.3906,1.4142,0l2.4749-2.4749c.3906-.3906.3905-1.0237,0-1.4142Z",
161
+ lock: "M12,6v-2c0-2.2092-1.7908-4-4-4s-4,1.7908-4,4v2c-1.1045,0-2,.8954-2,2v6c0,1.1046.8955,2,2,2h8c1.1046,0,2-.8954,2-2v-6c0-1.1046-.8954-2-2-2ZM9,11.1107v1.3893c0,.5522-.4477,1-1,1s-1-.4478-1-1v-1.3893c-.3048-.2745-.5-.6682-.5-1.1107,0-.8284.6716-1.5,1.5-1.5s1.5.6716,1.5,1.5c0,.4425-.1952.8362-.5,1.1107ZM10,6h-4v-2c0-1.1046.8955-2,2-2s2,.8954,2,2v2Z",
162
+ unlock: "M12,6h-6v-1.893c0-.9962.6807-1.9196,1.6641-2.0796,1.1178-.1818,2.1002.5639,2.2992,1.5893.044.2264.2514.3833.4821.3833h1.0154c.3142,0,.5415-.2857.495-.5965C11.6493,1.3529,9.7861-.189,7.6071.0188c-2.0797.1983-3.6071,2.0639-3.6071,4.1531v1.8281c-1.1045,0-2,.8954-2,2v6c0,1.1046.8954,2,2,2h8c1.1046,0,2-.8954,2-2v-6c0-1.1046-.8954-2-2-2ZM9,11.1107v1.3893c0,.5522-.4477,1-1,1s-1-.4478-1-1v-1.3893c-.3048-.2745-.5-.6682-.5-1.1107,0-.8284.6716-1.5,1.5-1.5s1.5.6716,1.5,1.5c0,.4425-.1952.8362-.5,1.1107Z",
163
+ clone: "M5,2v7c0,1.1046.8954,2,2,2h7c1.1046,0,2-.8954,2-2V2c0-1.1046-.8954-2-2-2h-7c-1.1046,0-2,.8954-2,2ZM13.5,9h-6c-.2761,0-.5-.2239-.5-.5V2.5c0-.2761.2239-.5.5-.5h6c.2761,0,.5.2239.5.5v6c0,.2761-.2239.5-.5.5ZM10,12.5h0c.5523,0,1,.4477,1,1v.5c0,1.1046-.8954,2-2,2H2c-1.1046,0-2-.8954-2-2v-7c0-1.1046.8954-2,2-2h.5c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1h0c-.2761,0-.5.2239-.5.5v6c0,.2761.2239.5.5.5h6c.2761,0,.5-.2239.5-.5h0c0-.5523.4477-1,1-1Z",
164
+ link: "M10.8284,6.5858l-4.2426,4.2426c-.3905.3905-1.0237.3905-1.4142,0h0c-.3905-.3905-.3905-1.0237,0-1.4142l4.2426-4.2426c.3905-.3905,1.0237-.3905,1.4142,0h0c.3905.3905.3905,1.0237,0,1.4142ZM2.7071,13.9876c2.0135,1.6629,5.0125,1.3639,6.8591-.4827l.5552-.5552c.3905-.3905.3905-1.0237,0-1.4142h0c-.3905-.3905-1.0237-.3905-1.4142,0l-.5871.5871c-1.1487,1.1487-3.0384,1.3181-4.2456.2311-1.2874-1.1593-1.3264-3.1443-.1171-4.3537l.7071-.7071c.3905-.3905.3905-1.0237,0-1.4142h0c-.3905-.3905-1.0237-.3905-1.4142,0l-.7071.7071c-2.0672,2.0672-1.9459,5.4942.3639,7.4018ZM6.5858,2.3431l-.7071.7071c-.3905.3905-.3905,1.0237,0,1.4142h0c.3905.3905,1.0237.3905,1.4142,0l.7071-.7071c1.2094-1.2094,3.1944-1.1704,4.3537.1171,1.087,1.2072.9176,3.0969-.2311,4.2456l-.5871.5871c-.3905.3905-.3905,1.0237,0,1.4142h0c.3905.3905,1.0237.3905,1.4142,0l.5552-.5552c1.8466-1.8466,2.1456-4.8456.4827-6.8591-1.9076-2.3098-5.3346-2.4311-7.4018-.3639Z",
165
+ cube: "M7.5.2887L1.5718,3.7113c-.3094.1786-.5.5088-.5.866v6.8454c0,.3573.1906.6874.5.866l5.9282,3.4226c.3094.1786.6906.1786,1,0l5.9282-3.4227c.3094-.1786.5-.5088.5-.866v-7.4226L8.5.2887c-.3094-.1786-.6906-.1786-1,0ZM11.8212,4.6392l-3.6962,2.134c-.0774.0447-.1726.0447-.25,0l-3.6962-2.134c-.1667-.0962-.1667-.3368,0-.433l3.6962-2.134c.0774-.0447.1726-.0447.25,0l3.6962,2.134c.1667.0962.1667.3368,0,.433ZM3.1789,6.3713l3.696,2.1339c.0773.0447.125.1272.125.2165v4.2679c0,.1925-.2083.3127-.375.2165l-3.696-2.1339c-.0773-.0447-.125-.1272-.125-.2165v-4.2679c0-.1925.2083-.3127.375-.2165ZM8.9999,12.9897v-4.2679c0-.0893.0477-.1718.125-.2165l3.6962-2.134c.1667-.0962.375.0241.375.2165v4.2679c0,.0893-.0477.1718-.125.2165l-3.6962,2.134c-.1667.0962-.375-.0241-.375-.2165Z",
166
+ shell: "M0,3v10c0,1.1046.8954,2,2,2h12c1.1046,0,2-.8954,2-2V3c0-1.1046-.8954-2-2-2H2C.8954,1,0,1.8954,0,3ZM13.5,13H2.5c-.2761,0-.5-.2239-.5-.5V3.5c0-.2761.2239-.5.5-.5h11c.2761,0,.5.2239.5.5v9c0,.2761-.2239.5-.5.5ZM12,11.4749h-3.5c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1h3.5c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1ZM7.1819,8.7071l-2.4749,2.4749c-.3905.3905-1.0237.3905-1.4142,0s-.3905-1.0237,0-1.4142l1.7678-1.7678-1.7678-1.7678c-.3905-.3905-.3905-1.0237,0-1.4142s1.0237-.3905,1.4142,0l2.4749,2.4749c.3905.3905.3905,1.0237,0,1.4142Z",
167
+ export: "M16,12v2c0,1.1046-.8954,2-2,2H2c-1.1046,0-2-.8954-2-2v-2c0-.5523.4477-1,1-1s1,.4477,1,1v1.5c0,.2761.2239.5.5.5h11c.2761,0,.5-.2239.5-.5v-1.5c0-.5523.4477-1,1-1s1,.4477,1,1ZM15.7071,3.4749L12.5251.2928c-.3904-.3905-1.0236-.3905-1.4141,0-.3905.3905-.3906,1.0237,0,1.4142l1.4913,1.4913h-3.6022c-1.1046,0-2,.8954-2,2v5.7878c0,.5522.4477,1,1,1s1-.4478,1-1v-5.2878c0-.2761.2239-.5.5-.5h3.0693l-1.4584,1.4584c-.3905.3905-.3905,1.0237,0,1.4142s1.0237.3905,1.4142,0l3.1316-3.1316c.2068-.1832.3433-.4431.3433-.7411,0-.0029-.0016-.0052-.0016-.0081.0022-.2587-.0938-.518-.2913-.7155Z",
168
+ download: "M7.6178,11.9242c-.1208-.0501-.2296-.1226-.321-.2132-.0012-.0012-.0028-.0015-.004-.0026l-3.1819-3.1823c-.3905-.3905-.3905-1.0239,0-1.4144s1.0237-.3905,1.4142,0l1.4749,1.4751V1.0001c0-.5524.4477-1.0001,1-1.0001s1,.4477,1,1.0001v7.5866l1.4749-1.475c.3905-.3905,1.0237-.3905,1.4142,0s.3906,1.0238,0,1.4144l-3.1819,3.1823c-.0922.0922-.2027.1651-.325.2158-.2445.1011-.5198.1011-.7643,0h-.0001ZM16,15h0c0-.5523-.4477-1-1-1H1c-.5523,0-1,.4477-1,1h0c0,.5523.4477,1,1,1h14c.5523,0,1-.4477,1-1Z",
169
+ upload: "M7.6178.0758c-.1208.0501-.2296.1226-.321.2132-.0012.0012-.0028.0015-.004.0026l-3.1819,3.1823c-.3905.3905-.3905,1.0239,0,1.4144s1.0237.3905,1.4142,0l1.4749-1.4751v7.5867c0,.5524.4477,1.0001,1,1.0001s1-.4477,1-1.0001V3.4133l1.4749,1.475c.3905.3905,1.0237.3905,1.4142,0s.3906-1.0238,0-1.4144L8.7072.2916c-.0922-.0922-.2027-.1651-.325-.2158-.2445-.1011-.5198-.1011-.7643,0h-.0001ZM15,16H1c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1h14c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1Z",
170
+ tag: "M14.7426,7.3284L8.3787.9644c-.0017-.0017-.0042-.0022-.0059-.0039-.0911-.0898-.199-.162-.319-.2118-.1224-.0507-.2521-.0772-.3825-.0771H2.6716C1.567.6716.6716,1.567.6716,2.6716v5c0,.0005.0003.001.0003.0016.0002.1297.0266.2589.0769.3807.0507.1222.1236.2327.2157.3248l6.364,6.364c.7811.7811,2.0474.781,2.8284,0l4.5858-4.5858c.781-.781.781-2.0474,0-2.8284ZM7.4038,2.818l5.571,5.571c.1953.1953.1953.5118,0,.7071l-3.8786,3.8786c-.1953.1953-.5118.1953-.7071,0L2.818,7.4038c-.0938-.0938-.1464-.2209-.1464-.3536v-3.8786c0-.2761.2239-.5.5-.5h3.8787c.1326,0,.2598.0527.3536.1464ZM6.6716,5.6716c0,.5523-.4477,1-1,1s-1-.4477-1-1,.4477-1,1-1,1,.4477,1,1Z",
171
+ edit: "M14,10v4c0,1.1046-.8954,2-2,2H2c-1.1046,0-2-.8954-2-2V4c0-1.1046.8954-2,2-2h4c.5523,0,1,.4477,1,1s-.4477,1-1,1h-3.5c-.2761,0-.5.2239-.5.5v9c0,.2761.2239.5.5.5h9c.2761,0,.5-.2239.5-.5v-3.5c0-.5523.4477-1,1-1s1,.4477,1,1ZM15.7071,1.3535l-1.0607-1.0606c-.3905-.3905-1.0237-.3905-1.4142,0l-5.4747,5.4747c-.0574.0574-.0999.1279-.124.2054l-.7954,2.5631c-.1193.3844.2413.745.6257.6257l2.5631-.7954c.0775-.024.148-.0666.2054-.124l5.4747-5.4747c.3905-.3905.3905-1.0237,0-1.4142Z",
172
+ database: "M8,0C4.4102,0,1.5,1.7908,1.5,4v8c0,2.2091,2.9102,4,6.5,4s6.5-1.7909,6.5-4V4c0-2.2092-2.9102-4-6.5-4ZM8,2c2.4853,0,4.5.8954,4.5,2s-2.0147,2-4.5,2-4.5-.8954-4.5-2,2.0147-2,4.5-2ZM8,14c-2.4853,0-4.5-.8954-4.5-2v-1.1178c1.1682.6909,2.7518,1.1178,4.5,1.1178s3.3318-.4269,4.5-1.1178v1.1178c0,1.1046-2.0147,2-4.5,2ZM8,10c-2.4853,0-4.5-.8954-4.5-2v-1.1178c1.1682.6909,2.7518,1.1178,4.5,1.1178s3.3318-.4269,4.5-1.1178v1.1178c0,1.1046-2.0147,2-4.5,2Z",
173
+ award: "M14.3374,6.1735h.0001c-.0375-.4687-.512-.8192-.6546-1.2562l-.0419-.1562c-.0953-.4498.1407-.9905-.0612-1.4155-.2278-.6859-.9683-.6907-1.4266-1.1453-.389-.3591-.4005-.9323-.8239-1.2454-.5374-.4791-1.1875-.1111-1.8097-.275-.594-.1584-.9305-.7239-1.5197-.6772-.5906-.0469-.9323.519-1.5233.6772-.522.155-1.0462-.1177-1.4901.095-.507.1795-.6814.6392-.9037,1.1151-.3085.6185-1.1274.673-1.4871,1.1352-.3477.4052-.2687.8929-.222,1.4184.0414.7628-.7646,1.2202-.7302,1.9108-.047.5906.519.9322.6772,1.5234.1625.622-.2001,1.2735.2803,1.8109.2726.3875.837.4611,1.2141.8203v4.9668c0,.466.5634.6993.893.3698l2.9217-2.9218c.2043-.2043.5355-.2043.7399,0l2.9218,2.9218c.3295.3295.893.0962.893-.3699v-4.9854c.0103-.0192.0187-.0348.029-.0541.5892-.3795,1.4185-.5754,1.4506-1.4131.0268-.3505-.1125-.7572.0103-1.1447.1692-.6226.8096-.9972.6628-1.7051ZM8.0001,8.7724c-1.3807,0-2.5-1.1172-2.5-2.4954s1.1193-2.4953,2.5-2.4953,2.5,1.1172,2.5,2.4953-1.1193,2.4954-2.5,2.4954Z",
174
+ flower: "M12.2426,9.364c1.1716-1.1716,1.1716-3.071,0-4.2426,1.1716-1.1716,1.1716-3.0711,0-4.2427-1.1716-1.1716-3.071-1.1716-4.2426,0C6.8284-.2929,4.929-.2929,3.7574.8787c-1.1716,1.1716-1.1716,3.071,0,4.2427-1.1716,1.1716-1.1716,3.071,0,4.2426.8765.8765,2.1601,1.0964,3.2418.6615v2.668c-1.421-.8044-2.8931-.8878-3.3029-.1779-.4142.7175.4132,1.9706,1.8481,2.7991.8587.4958,1.7356.721,2.394.673.0212.0013.0392.0123.0609.0123s.0396-.0109.0609-.0123c.6584.048,1.5353-.1772,2.394-.673,1.4349-.8284,2.2623-2.0816,1.848-2.7991-.4099-.7099-1.8818-.6265-3.3029.1779v-2.6686c1.082.4358,2.3665.2159,3.2434-.661ZM6.2322,3.3535c.9763-.9763,2.5592-.9763,3.5355,0s.9763,2.5592,0,3.5356c-.9763.9763-2.5593.9763-3.5355,0-.9763-.9764-.9763-2.5592,0-3.5356Z",
175
+ overflow: "M8,6.25c.9665,0,1.75.7835,1.75,1.75s-.7835,1.75-1.75,1.75-1.75-.7835-1.75-1.75.7835-1.75,1.75-1.75ZM6.25,1.75c0,.9665.7835,1.75,1.75,1.75s1.75-.7835,1.75-1.75-.7835-1.75-1.75-1.75-1.75.7835-1.75,1.75ZM6.25,14.25c0,.9665.7835,1.75,1.75,1.75s1.75-.7835,1.75-1.75-.7835-1.75-1.75-1.75-1.75.7835-1.75,1.75Z",
25
176
  };
26
177
  export default icons;
@@ -15,6 +15,6 @@ import classNames from "../../functions/classNames";
15
15
  import Box from "../Box";
16
16
  var IconInput = forwardRef(function (_a, ref) {
17
17
  var startIcon = _a.startIcon, endIcon = _a.endIcon, className = _a.className, style = _a.style, _b = _a.corners, corners = _b === void 0 ? "rounded" : _b, inputProps = _a.inputProps;
18
- return (_jsxs(Box, { layout: { axis: "x", align: "center" }, className: classNames("aui-input-default aui-icon-input aui-corners--".concat(corners), className), style: style, ref: ref, children: [startIcon, _jsx("input", __assign({}, inputProps, { className: classNames("aui-input-base aui-corners--".concat(corners), inputProps === null || inputProps === void 0 ? void 0 : inputProps.className) })), endIcon] }));
18
+ return (_jsxs(Box, { layout: { axis: "x", align: "center" }, className: classNames("aui-input aui-icon-input aui-corners--".concat(corners), className), style: style, ref: ref, children: [startIcon, _jsx("input", __assign({}, inputProps, { className: classNames("aui-input-base aui-corners--".concat(corners), inputProps === null || inputProps === void 0 ? void 0 : inputProps.className) })), endIcon] }));
19
19
  });
20
20
  export default IconInput;