@uh-design-system/component-library 0.1.0 → 0.2.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/cjs/app-globals-3a1e7e63.js +0 -2
- package/dist/cjs/ds-accordion_2.cjs.entry.js +930 -0
- package/dist/cjs/ds-button_2.cjs.entry.js +196 -0
- package/dist/cjs/ds-text-input.cjs.entry.js +137 -0
- package/dist/cjs/index-5a88e57b.js +82 -0
- package/dist/cjs/{index-eaf5876c.js → index-f7420801.js} +652 -149
- package/dist/cjs/index.cjs.js +0 -9
- package/dist/cjs/loader.cjs.js +2 -4
- package/dist/cjs/uh-component-library.cjs.js +3 -5
- package/dist/collection/collection-manifest.json +6 -2
- package/dist/collection/components/00-foundations/borders/borders.stories.js +7 -8
- package/dist/collection/components/00-foundations/breakpoints/breakpoints.stories.js +20 -0
- package/dist/collection/components/00-foundations/colours/colours.stories.js +9 -17
- package/dist/collection/components/00-foundations/icons/categories/actions.js +110 -0
- package/dist/collection/components/00-foundations/icons/categories/arrows.js +64 -0
- package/dist/collection/components/00-foundations/icons/categories/custom.js +10 -0
- package/dist/collection/components/00-foundations/icons/categories/information.js +94 -0
- package/dist/collection/components/00-foundations/icons/categories/media.js +76 -0
- package/dist/collection/components/00-foundations/icons/categories/navigation.js +50 -0
- package/dist/collection/components/00-foundations/icons/categories/notifications.js +64 -0
- package/dist/collection/components/00-foundations/icons/categories/text.js +18 -0
- package/dist/collection/components/00-foundations/icons/categories/users.js +52 -0
- package/dist/collection/components/00-foundations/icons/iconList.js +18 -293
- package/dist/collection/components/00-foundations/icons/icons.stories.js +0 -1
- package/dist/collection/components/00-foundations/spacing/spacing.stories.js +2 -3
- package/dist/collection/components/00-foundations/typography/typography.stories.js +52 -3
- package/dist/collection/components/01-base-components/ds-accordion/ds-accordion.css +130 -0
- package/dist/collection/components/01-base-components/ds-accordion/ds-accordion.js +217 -0
- package/dist/collection/components/01-base-components/ds-accordion/stories/ds-accordion.examples.stories.js +43 -0
- package/dist/collection/components/01-base-components/ds-accordion/stories/ds-accordion.features.stories.js +79 -0
- package/dist/collection/components/01-base-components/ds-accordion/stories/ds-accordion.stories.js +96 -0
- package/dist/collection/components/01-base-components/ds-button/ds-button.css +238 -0
- package/dist/collection/components/01-base-components/ds-button/ds-button.js +294 -0
- package/dist/collection/components/01-base-components/ds-button/stories/ds-button.examples.stories.js +28 -0
- package/dist/collection/components/01-base-components/ds-button/stories/ds-button.features.stories.js +77 -0
- package/dist/collection/components/01-base-components/ds-button/stories/ds-button.stories.js +79 -0
- package/dist/collection/components/01-base-components/ds-icon/ds-icon.css +1 -1
- package/dist/collection/components/01-base-components/ds-icon/ds-icon.js +18 -6
- package/dist/collection/components/01-base-components/ds-icon/ds-icon.stories.js +1 -2
- package/dist/collection/components/01-base-components/ds-text-input/ds-text-input.css +186 -0
- package/dist/collection/components/01-base-components/ds-text-input/ds-text-input.examples.stories.js +24 -0
- package/dist/collection/components/01-base-components/ds-text-input/ds-text-input.features.stories.js +126 -0
- package/dist/collection/components/01-base-components/ds-text-input/ds-text-input.js +665 -0
- package/dist/collection/components/01-base-components/ds-text-input/ds-text-input.stories.js +73 -0
- package/dist/collection/components/01-base-components/ds-text-input/utils.js +16 -0
- package/dist/collection/components/01-base-components/ds-visually-hidden/ds-visually-hidden.css +9 -0
- package/dist/collection/components/01-base-components/ds-visually-hidden/ds-visually-hidden.js +18 -0
- package/dist/collection/components/01-base-components/ds-visually-hidden/ds-visually-hidden.stories.js +9 -0
- package/dist/collection/index.js +1 -11
- package/dist/collection/utils/attributes.js +107 -0
- package/dist/collection/utils/borders/borderUtils.js +24 -4
- package/dist/collection/utils/breakpoints/breakpointsUtils.js +58 -0
- package/dist/collection/utils/colours/colourTypes.js +19 -0
- package/dist/collection/utils/colours/colourUtils.js +67 -47
- package/dist/collection/utils/spacing/spacingUtils.js +21 -9
- package/dist/collection/utils/tests/testUtils.js +21 -6
- package/dist/collection/utils/typography/typographyUtils.js +0 -1
- package/dist/collection/utils/utils.js +48 -3
- package/dist/components/ds-accordion.d.ts +11 -0
- package/dist/components/ds-accordion.js +96 -0
- package/dist/components/ds-button.d.ts +11 -0
- package/dist/components/ds-button.js +6 -0
- package/dist/components/ds-button2.js +209 -0
- package/dist/components/ds-icon.js +1 -540
- package/dist/components/ds-icon2.js +890 -0
- package/dist/components/ds-text-input.d.ts +11 -0
- package/dist/components/ds-text-input.js +200 -0
- package/dist/components/ds-visually-hidden.d.ts +11 -0
- package/dist/components/ds-visually-hidden.js +6 -0
- package/dist/components/ds-visually-hidden2.js +31 -0
- package/dist/components/index.js +1 -9
- package/dist/components/{p-dcfb6eb2.js → index2.js} +616 -146
- package/dist/components/index3.js +80 -0
- package/dist/esm/app-globals-0f993ce5.js +0 -2
- package/dist/esm/ds-accordion_2.entry.js +925 -0
- package/dist/esm/ds-button_2.entry.js +191 -0
- package/dist/esm/ds-text-input.entry.js +133 -0
- package/dist/esm/index-097075ad.js +80 -0
- package/dist/esm/{index-1586ada2.js → index-1d0a6586.js} +652 -150
- package/dist/esm/index.js +0 -6
- package/dist/esm/loader.js +3 -5
- package/dist/esm/uh-component-library.js +4 -6
- package/dist/loader/cdn.js +1 -0
- package/dist/loader/index.cjs.js +1 -0
- package/{loader → dist/loader}/index.d.ts +1 -1
- package/dist/loader/index.es2017.js +1 -0
- package/{loader → dist/loader}/index.js +1 -1
- package/dist/types/components/00-foundations/breakpoints/breakpoints.stories.d.ts +6 -0
- package/dist/types/components/00-foundations/colours/colours.stories.d.ts +3 -2
- package/dist/types/components/00-foundations/icons/categories/actions.d.ts +5 -0
- package/dist/types/components/00-foundations/icons/categories/arrows.d.ts +5 -0
- package/dist/types/components/00-foundations/icons/categories/custom.d.ts +5 -0
- package/dist/types/components/00-foundations/icons/categories/information.d.ts +5 -0
- package/dist/types/components/00-foundations/icons/categories/media.d.ts +5 -0
- package/dist/types/components/00-foundations/icons/categories/navigation.d.ts +5 -0
- package/dist/types/components/00-foundations/icons/categories/notifications.d.ts +5 -0
- package/dist/types/components/00-foundations/icons/categories/text.d.ts +5 -0
- package/dist/types/components/00-foundations/icons/categories/users.d.ts +5 -0
- package/dist/types/components/00-foundations/typography/typography.stories.d.ts +6 -5
- package/dist/types/components/01-base-components/ds-accordion/ds-accordion.d.ts +17 -0
- package/dist/types/components/01-base-components/ds-accordion/stories/ds-accordion.examples.stories.d.ts +9 -0
- package/dist/types/components/01-base-components/ds-accordion/stories/ds-accordion.features.stories.d.ts +13 -0
- package/dist/types/components/01-base-components/ds-accordion/stories/ds-accordion.stories.d.ts +8 -0
- package/dist/types/components/01-base-components/ds-button/ds-button.d.ts +33 -0
- package/dist/types/components/01-base-components/ds-button/stories/ds-button.examples.stories.d.ts +6 -0
- package/dist/types/components/01-base-components/ds-button/stories/ds-button.features.stories.d.ts +17 -0
- package/dist/types/components/01-base-components/ds-button/stories/ds-button.stories.d.ts +8 -0
- package/dist/types/components/01-base-components/ds-text-input/ds-text-input.d.ts +46 -0
- package/dist/types/components/01-base-components/ds-text-input/ds-text-input.examples.stories.d.ts +8 -0
- package/dist/types/components/01-base-components/ds-text-input/ds-text-input.features.stories.d.ts +18 -0
- package/dist/types/components/01-base-components/ds-text-input/ds-text-input.stories.d.ts +8 -0
- package/dist/types/components/01-base-components/ds-text-input/utils.d.ts +3 -0
- package/dist/types/components/01-base-components/ds-visually-hidden/ds-visually-hidden.d.ts +3 -0
- package/dist/types/components/01-base-components/ds-visually-hidden/ds-visually-hidden.stories.d.ts +7 -0
- package/dist/types/components.d.ts +152 -0
- package/dist/types/declarations.d.ts +4 -0
- package/dist/types/index.d.ts +0 -1
- package/dist/types/utils/attributes.d.ts +39 -0
- package/dist/types/utils/borders/borderUtils.d.ts +9 -0
- package/dist/types/utils/breakpoints/breakpointsUtils.d.ts +11 -0
- package/dist/types/utils/colours/colourTypes.d.ts +18 -0
- package/dist/types/utils/colours/colourUtils.d.ts +4 -14
- package/dist/types/utils/spacing/spacingUtils.d.ts +6 -3
- package/dist/types/utils/tests/testUtils.d.ts +2 -0
- package/dist/types/utils/utils.d.ts +20 -1
- package/dist/uh-component-library/app-globals-0f993ce5.js +1 -0
- package/dist/uh-component-library/ds-accordion_2.entry.js +1 -0
- package/dist/uh-component-library/ds-button_2.entry.js +1 -0
- package/dist/uh-component-library/ds-text-input.entry.js +1 -0
- package/dist/uh-component-library/index-097075ad.js +6 -0
- package/dist/uh-component-library/index-1d0a6586.js +2 -0
- package/dist/uh-component-library/index.esm.js +0 -2
- package/dist/uh-component-library/uh-component-library.esm.js +1 -2
- package/package.json +8 -15
- package/dist/cjs/app-globals-3a1e7e63.js.map +0 -1
- package/dist/cjs/ds-icon.cjs.entry.js +0 -522
- package/dist/cjs/ds-icon.cjs.entry.js.map +0 -1
- package/dist/cjs/index-eaf5876c.js.map +0 -1
- package/dist/cjs/index.cjs.js.map +0 -1
- package/dist/cjs/loader.cjs.js.map +0 -1
- package/dist/cjs/uh-component-library.cjs.js.map +0 -1
- package/dist/collection/components/00-foundations/borders/borders.stories.js.map +0 -1
- package/dist/collection/components/00-foundations/colours/colours.stories.js.map +0 -1
- package/dist/collection/components/00-foundations/icons/iconList.js.map +0 -1
- package/dist/collection/components/00-foundations/icons/icons.stories.js.map +0 -1
- package/dist/collection/components/00-foundations/spacing/spacing.stories.js.map +0 -1
- package/dist/collection/components/00-foundations/typography/headings.stories.js +0 -23
- package/dist/collection/components/00-foundations/typography/headings.stories.js.map +0 -1
- package/dist/collection/components/00-foundations/typography/text.stories.js +0 -17
- package/dist/collection/components/00-foundations/typography/text.stories.js.map +0 -1
- package/dist/collection/components/00-foundations/typography/typography.stories.js.map +0 -1
- package/dist/collection/components/01-base-components/ds-icon/ds-icon.js.map +0 -1
- package/dist/collection/components/01-base-components/ds-icon/ds-icon.stories.js.map +0 -1
- package/dist/collection/index.js.map +0 -1
- package/dist/collection/utils/borders/borderUtils.js.map +0 -1
- package/dist/collection/utils/colours/colourUtils.js.map +0 -1
- package/dist/collection/utils/spacing/spacingUtils.js.map +0 -1
- package/dist/collection/utils/tests/testUtils.js.map +0 -1
- package/dist/collection/utils/typography/typographyUtils.js.map +0 -1
- package/dist/collection/utils/utils.js.map +0 -1
- package/dist/components/ds-icon.js.map +0 -1
- package/dist/components/index.js.map +0 -1
- package/dist/components/p-dcfb6eb2.js.map +0 -1
- package/dist/esm/app-globals-0f993ce5.js.map +0 -1
- package/dist/esm/ds-icon.entry.js +0 -518
- package/dist/esm/ds-icon.entry.js.map +0 -1
- package/dist/esm/index-1586ada2.js.map +0 -1
- package/dist/esm/index.js.map +0 -1
- package/dist/esm/loader.js.map +0 -1
- package/dist/esm/uh-component-library.js.map +0 -1
- package/dist/types/components/00-foundations/typography/headings.stories.d.ts +0 -17
- package/dist/types/components/00-foundations/typography/text.stories.d.ts +0 -11
- package/dist/uh-component-library/index.esm.js.map +0 -1
- package/dist/uh-component-library/p-74d73de3.js +0 -3
- package/dist/uh-component-library/p-74d73de3.js.map +0 -1
- package/dist/uh-component-library/p-c7cd80a5.entry.js +0 -2
- package/dist/uh-component-library/p-c7cd80a5.entry.js.map +0 -1
- package/dist/uh-component-library/p-e1255160.js +0 -2
- package/dist/uh-component-library/p-e1255160.js.map +0 -1
- package/dist/uh-component-library/uh-component-library.esm.js.map +0 -1
- package/loader/cdn.js +0 -1
- package/loader/index.cjs.js +0 -1
- package/loader/index.es2017.js +0 -1
- /package/{loader → dist/loader}/package.json +0 -0
|
@@ -1,518 +0,0 @@
|
|
|
1
|
-
import { r as registerInstance, h, F as Fragment } from './index-1586ada2.js';
|
|
2
|
-
|
|
3
|
-
const DSFlameIcon = `<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
4
|
-
<mask id="mask0_1509_11137" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="24" height="24">
|
|
5
|
-
<rect width="24" height="24" fill="#D9D9D9"/>
|
|
6
|
-
</mask>
|
|
7
|
-
<g mask="url(#mask0_1509_11137)">
|
|
8
|
-
<path d="M11.2537 2H13.3433V4.1875H11.2537V2Z" fill="#1A1A1A"/>
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.6432 12.8252C18.1578 12.4912 17.9611 11.8202 17.8845 11.2604C17.4062 11.3126 16.6105 11.3203 16.2306 10.3007C16.1385 10.0539 16.0865 9.75724 16.0294 9.43193C15.9012 8.70033 15.7476 7.82399 15.0555 7.045C14.1459 6.02169 13.0269 5.68453 12.0004 5.7602C13.2585 6.64773 12.7624 7.98613 11.8487 7.98613C11.2731 7.98613 10.8851 7.65519 10.4604 7.29283C9.94646 6.85445 9.37866 6.37008 8.35948 6.37008C7.9338 6.37008 7.55875 6.51039 7.32453 6.67355C8.27199 6.79962 8.56452 7.55594 8.85448 8.30559C8.8836 8.38088 8.91269 8.45609 8.94242 8.53059C9.20148 9.17949 9.66432 9.55705 10.3423 9.75529C10.22 9.82938 9.92731 9.92061 9.54908 9.92061C8.72687 9.92061 8.15402 9.46443 7.56529 8.8244C7.04735 8.26122 6.46926 7.72759 5.50007 7.72759C5.0234 7.72759 4.65844 7.88701 4.5318 7.97687C5.06412 8.06515 5.84972 8.39975 5.84972 8.99328C5.84972 9.50089 5.31758 9.69518 4.88126 9.20944C4.39601 8.66873 3.71464 8.25964 2.93465 8.25964C2.54951 8.25964 2.16381 8.38911 2 8.55759C2.92437 8.66971 3.47201 9.29615 4.0443 10.6923C4.36725 11.4807 4.8271 12.2254 5.98532 12.2397C6.12627 12.2415 6.28303 12.2239 6.44546 12.2056C6.89066 12.1555 7.37851 12.1007 7.70052 12.4266C7.96006 12.6894 8.00302 13.0035 8.04514 13.3114C8.07047 13.4965 8.09549 13.6795 8.16709 13.8477C8.40598 14.4103 8.90226 14.7002 9.87239 14.7538C9.06756 15.4644 7.1441 15.0377 6.48869 14.3124C6.5748 16.1292 7.93362 17.7596 10.6307 16.9931C11.0997 16.8599 11.4344 16.9354 11.6147 17.4357C11.8623 18.1226 12.449 18.2369 13.0036 18.1642C14.2712 17.9987 15.0234 18.2676 15.7535 19.1875C15.9127 17.6656 14.8816 16.7716 14.2341 16.3442C13.6171 15.9373 13.557 15.5138 13.5493 15.1861C13.9957 15.7247 14.5774 15.9534 15.1829 16.0431C16.2296 16.1986 16.979 16.5066 17.3759 17.0983C17.4504 16.0201 16.7856 15.4798 16.2487 15.0435C15.9526 14.8029 15.6954 14.5939 15.6228 14.3437C16.1467 14.7041 16.5324 14.8352 17.078 14.7912C17.2432 14.7781 17.4166 14.7368 17.5935 14.6947C18.1955 14.5515 18.8386 14.3985 19.3429 15.3101C20.1757 14.7392 21.2671 14.9426 22 15.4427C21.4844 14.2458 20.5101 13.7795 19.6257 13.3562C19.2722 13.1869 18.933 13.0246 18.6432 12.8252ZM13.3433 13.25H11.2537V11.0625H13.3433V13.25Z" fill="#1A1A1A"/>
|
|
10
|
-
<path d="M13.3433 19.8125H11.2537V22H13.3433V19.8125Z" fill="#1A1A1A"/>
|
|
11
|
-
</g>
|
|
12
|
-
</svg>
|
|
13
|
-
`;
|
|
14
|
-
|
|
15
|
-
const DSFlameFillIcon = `<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
16
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M24 0H0V24H24V0ZM11.2537 2H13.3433V4.1875H11.2537V2ZM18.6432 12.8252C18.1578 12.4912 17.9611 11.8202 17.8845 11.2604C17.4062 11.3126 16.6105 11.3203 16.2306 10.3007C16.1385 10.0539 16.0865 9.75724 16.0294 9.43193C15.9012 8.70033 15.7476 7.82399 15.0555 7.045C14.1459 6.02169 13.0269 5.68453 12.0004 5.7602C13.2585 6.64773 12.7624 7.98613 11.8487 7.98613C11.2731 7.98613 10.8851 7.65519 10.4604 7.29283C9.94646 6.85445 9.37866 6.37008 8.35948 6.37008C7.9338 6.37008 7.55875 6.51039 7.32453 6.67355C8.27199 6.79962 8.56452 7.55594 8.85448 8.30559C8.8836 8.38087 8.91269 8.45609 8.94242 8.53059C9.20148 9.17949 9.66432 9.55705 10.3423 9.75529C10.22 9.82938 9.92731 9.92061 9.54908 9.92061C8.72687 9.92061 8.15402 9.46443 7.56529 8.8244C7.04735 8.26122 6.46926 7.72759 5.50006 7.72759C5.0234 7.72759 4.65844 7.88701 4.5318 7.97687C5.06412 8.06515 5.84972 8.39975 5.84972 8.99327C5.84972 9.50089 5.31758 9.69518 4.88126 9.20944C4.39601 8.66873 3.71464 8.25964 2.93465 8.25964C2.54951 8.25964 2.16381 8.38911 2 8.55759C2.92437 8.66971 3.47201 9.29615 4.0443 10.6923C4.36725 11.4807 4.8271 12.2254 5.98532 12.2397C6.12627 12.2415 6.28303 12.2239 6.44546 12.2056C6.89066 12.1555 7.37851 12.1007 7.70052 12.4266C7.96006 12.6894 8.00302 13.0035 8.04514 13.3114C8.07047 13.4965 8.09549 13.6795 8.16709 13.8477C8.40598 14.4103 8.90226 14.7002 9.87239 14.7538C9.06756 15.4644 7.1441 15.0377 6.48869 14.3124C6.5748 16.1292 7.93362 17.7596 10.6307 16.9931C11.0997 16.8599 11.4344 16.9354 11.6147 17.4357C11.8623 18.1226 12.449 18.2369 13.0036 18.1642C14.2712 17.9987 15.0234 18.2676 15.7535 19.1875C15.9127 17.6656 14.8816 16.7716 14.2341 16.3442C13.6171 15.9373 13.557 15.5138 13.5493 15.1861C13.9957 15.7247 14.5774 15.9534 15.1829 16.0431C16.2296 16.1986 16.979 16.5066 17.3759 17.0983C17.4504 16.0201 16.7856 15.4798 16.2487 15.0435C15.9526 14.8029 15.6954 14.5939 15.6228 14.3437C16.1467 14.7041 16.5324 14.8352 17.078 14.7912C17.2432 14.7781 17.4166 14.7368 17.5935 14.6947C18.1955 14.5515 18.8386 14.3985 19.3429 15.3101C20.1757 14.7392 21.2671 14.9426 22 15.4427C21.4844 14.2458 20.5101 13.7795 19.6257 13.3562C19.2722 13.1869 18.933 13.0246 18.6432 12.8252ZM13.3433 13.25H11.2537V11.0625H13.3433V13.25ZM11.2537 19.8125H13.3433V22H11.2537V19.8125Z" fill="#1A1A1A"/>
|
|
17
|
-
</svg>
|
|
18
|
-
`;
|
|
19
|
-
|
|
20
|
-
const ArchiveIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m480-272.15 156.48-156.48-43.11-43.35L512.39-391v-188.8h-64.78V-391l-80.98-80.74-42.87 43.35L480-272.15ZM182.15-665.63v483.48h595.7v-483.48h-595.7Zm-68.13 551.61v-611.87l91.33-120.33h548.54l92.33 120.33v611.87h-732.2Zm89.2-618.07h552.56l-36-46H239.22l-36 46ZM480-423.89Z"/></svg>`;
|
|
21
|
-
|
|
22
|
-
const ArchiveFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m480-272.15 156.48-156.48-43.11-43.35L512.39-391v-188.8h-64.78V-391l-80.98-80.74-42.87 43.35L480-272.15ZM114.02-114.02v-611.87l91.33-120.33h548.54l92.33 120.33v611.87h-732.2Zm89.2-618.07h552.56l-36-46H239.22l-36 46Z"/></svg>`;
|
|
23
|
-
|
|
24
|
-
const DownloadIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M480-315.15 278.39-516.76l48.98-48.5L445.93-446.7v-359.52h68.14v359.52l118.56-118.56 48.98 48.5L480-315.15ZM154.02-154.02v-211.13h68.13v143h515.7v-143h68.37v211.13h-652.2Z"/></svg>`;
|
|
25
|
-
|
|
26
|
-
const FileSaveIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m730-124 146.48-146.48-42-42L760-238v-181h-60v181l-74.35-74.48-41.89 42L730-124ZM580 0v-60h300V0H580ZM155.93-155.93v-728.14h374.61l233.53 233.53V-479h-68.14v-139.5H498.57v-197.43h-274.5v591.86H520v68.14H155.93Zm68.14-68.14v-591.86 591.86Z"/></svg>`;
|
|
27
|
-
|
|
28
|
-
const FileSaveFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M580 0v-60h300V0H580Zm150.05-124L583.76-270.48l41.93-42L700.1-238v-181H760v181l74.48-74.48 42 42L730.05-124Zm-574.12-31.93v-728.14h374.61l233.53 233.53V-479H520v323.07H155.93Zm342.64-462.64h197.36L498.57-815.93v197.36Z"/></svg>`;
|
|
29
|
-
|
|
30
|
-
const SendIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M114.5-154.26v-651.48L887.17-480 114.5-154.26ZM180-255.63 717.3-480 180-707.37v162.74L424.63-480 180-417.37v161.74Zm0 0v-451.74 451.74Z"/></svg>`;
|
|
31
|
-
|
|
32
|
-
const SendFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M114.5-154.26v-245.72L424.63-480 114.5-562.02v-243.72L887.17-480 114.5-154.26Z"/></svg>`;
|
|
33
|
-
|
|
34
|
-
const ListAltIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M270-287.2h60v-60h-60v60Zm0-162.8h60v-60h-60v60Zm0-163.04h60v-60h-60v60ZM432-287.2h244v-60H432v60Zm0-162.8h244v-60H432v60Zm0-163.04h244v-60H432v60ZM114.02-114.02v-732.2h732.2v732.2h-732.2Zm68.13-68.13h595.7v-595.7h-595.7v595.7Zm0 0v-595.7 595.7Z"/></svg>`;
|
|
35
|
-
|
|
36
|
-
const ListAltAddIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M705.26-150.43h-120v-64.55h120v-120h64.54v120h120v64.55h-120v120h-64.54v-120Zm-523.11-31.72v-595.7 595.7Zm-68.13 68.13v-732.2h732.2v458.05q-15.81-8.4-33.13-13.32-17.33-4.92-35.24-7.97v-368.39h-595.7v595.7h324.07q-.2 17.91 1.52 34.86t7.04 33.27H114.02ZM300-287.2q12 0 21-8.88t9-21.12q0-12-9-21t-21-9q-12 0-21 9t-9 21q0 12.24 9 21.12t21 8.88Zm0-162.8q12 0 21-9t9-21q0-12-9-21t-21-9q-12 0-21 9t-9 21q0 12 9 21t21 9Zm0-163.04q12 0 21-8.88t9-21.12q0-12-9-21t-21-9q-12 0-21 9t-9 21q0 12.24 9 21.12t21 8.88ZM432-450h244v-60H432v60Zm0-163.04h244v-60H432v60Zm0 325.84h98.04q9-17 20.7-31.58 11.7-14.58 24.89-28.42H432v60Z"/></svg>`;
|
|
37
|
-
|
|
38
|
-
const ListAltCheckIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M182.15-182.15v-595.7 522.35-88.24 161.59Zm-68.13 68.13v-732.2h732.2v445.46h-68.37v-377.09h-595.7v595.7h329.96v68.13H114.02Zm587.74 40L566.02-210l47.5-48.74 88.24 88.24 175.72-175.48 48.74 47.5L701.76-74.02ZM432-450h244v-60H432v60Zm0-163.04h244v-60H432v60ZM270-450h60v-60h-60v60Zm0-163.04h60v-60h-60v60Z"/></svg>`;
|
|
39
|
-
|
|
40
|
-
const ForkRightIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M366.98-114.02v-602.41l-90 90-47.74-47.74 171.8-171.81 172.05 171.81-47.74 47.74-90-90v310.67q29.76-30.85 69.82-51.13 40.07-20.28 100.63-20.28 15.53 0 37.29 3.12 21.76 3.12 40.28 7.88l-89.76-90 47.74-47.74 172.04 172.04-172.04 171.81-47.74-47.74 90.24-90.24q-15.52-4.52-37.28-7.64-21.77-3.12-44.53-3.12-55.56 0-101.87 33.04-46.3 33.04-64.82 94.37v167.37h-68.37Z"/></svg>`;
|
|
41
|
-
|
|
42
|
-
const ManufacturingIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m222.3-498.63-6-49.96q-19.63-5.01-36.83-14.15-17.21-9.13-30.49-22.89l-44.72 18-32.15-52.59 37.72-35.71q-5-19.11-5-37.45 0-18.34 5-37.69l-37.72-35.71 32.15-52.83 44.72 18.24q13.52-13.76 30.61-22.89 17.08-9.14 36.71-14.15l6-49.96h64.55l6.24 49.96q19.39 5.01 36.59 14.15 17.21 9.13 30.49 22.89l44.72-18.24 32.15 52.83-38.71 35.71q5.24 18.35 5.24 37.19 0 18.84-5.24 37.95l38.71 35.71-32.15 52.59-44.72-18q-13.28 14.76-30.49 23.39-17.2 8.64-36.59 13.65l-6.24 49.96H222.3Zm32.21-104.3q37.47 0 64.11-26.51 26.64-26.5 26.64-64.04 0-37.54-26.62-64.06-26.62-26.53-64.16-26.53-37.55 0-64.07 26.58-26.52 26.57-26.52 64.04 0 37.47 26.57 63.99 26.58 26.53 64.05 26.53ZM645.43-34.5l-14-57q-28.43-7-54.13-21.72-25.69-14.71-44.41-38.15l-54 17.48-38-65 42-38q-8.72-27.44-8.72-56.63 0-29.2 8.72-56.39l-42-37 38-65 54 15.24q19.72-22.44 44.91-37.54 25.2-15.09 53.63-21.33l14-57h75l14 57q30.2 4.24 54.9 19.95 24.69 15.72 44.41 38.92l54-15.24 38 65-42 37q8.72 27.19 8.72 56.39 0 29.19-8.72 56.63l42 38-38 66-54-18.48q-18.72 24.44-44.29 38.65-25.58 14.22-55.02 21.22l-14 57h-75Zm38-122.17q57.05 0 96.83-39.91 39.78-39.9 39.78-96.94 0-57.05-39.83-96.95-39.83-39.9-96.78-39.9-57.28 0-97.06 39.9t-39.78 96.95q0 57.28 39.78 97.06 39.78 39.79 97.06 39.79Z"/></svg>`;
|
|
43
|
-
|
|
44
|
-
const DragIndicatorIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M347.41-154.5q-30.1 0-51.51-21.43-21.4-21.44-21.4-51.54 0-30.1 21.43-51.31Q317.37-300 347.47-300q30.1 0 51.31 21.25Q420-257.51 420-227.41q0 30.1-21.25 51.51-21.24 21.4-51.34 21.4Zm265.34 0q-30.1 0-51.42-21.43Q540-197.37 540-227.47q0-30.1 21.39-51.31Q582.79-300 612.83-300q30.14 0 51.4 21.25 21.27 21.24 21.27 51.34 0 30.1-21.32 51.51-21.33 21.4-51.43 21.4ZM347.41-407.37q-30.1 0-51.51-21.39-21.4-21.4-21.4-51.44 0-30.23 21.43-51.33 21.44-21.1 51.54-21.1 30.1 0 51.31 21.19Q420-510.26 420-480.14q0 30.12-21.25 51.44-21.24 21.33-51.34 21.33Zm265.34 0q-30.1 0-51.42-21.39Q540-450.16 540-480.2q0-30.23 21.39-51.33 21.4-21.1 51.44-21.1 30.14 0 51.4 21.19 21.27 21.18 21.27 51.3 0 30.12-21.32 51.44-21.33 21.33-51.43 21.33ZM347.41-660q-30.1 0-51.51-21.39-21.4-21.4-21.4-51.44 0-30.14 21.43-51.4 21.44-21.27 51.54-21.27 30.1 0 51.31 21.32Q420-762.85 420-732.75t-21.25 51.42Q377.51-660 347.41-660Zm265.34 0q-30.1 0-51.42-21.39Q540-702.79 540-732.83q0-30.14 21.39-51.4 21.4-21.27 51.44-21.27 30.14 0 51.4 21.32 21.27 21.33 21.27 51.43t-21.32 51.42Q642.85-660 612.75-660Z"/></svg>`;
|
|
45
|
-
|
|
46
|
-
const ResizeIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M777.85-611.89v-165.96H611.89v-68.37h234.33v234.33h-68.37ZM114.02-114.02v-234.09h68.13v165.96h165.96v68.13H114.02Zm0-331.91v-68.14h68.13v68.14h-68.13Zm0-165.96v-68.37h68.13v68.37h-68.13Zm0-165.96v-68.37h68.13v68.37h-68.13Zm165.96 0v-68.37h68.37v68.37h-68.37Zm165.95 663.83v-68.13h68.14v68.13h-68.14Zm0-663.83v-68.37h68.14v68.37h-68.14Zm165.96 663.83v-68.13h68.37v68.13h-68.37Zm165.96 0v-68.13h68.37v68.13h-68.37Zm0-165.96v-68.37h68.37v68.37h-68.37Zm0-165.95v-68.14h68.37v68.14h-68.37Z"/></svg>`;
|
|
47
|
-
|
|
48
|
-
const EditIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M181.91-182.15h44.24l459.81-458.81-43.76-44-460.29 459.05v43.76Zm-67.89 68.13V-253.5l618.44-617.91 140.19 139.24-618.91 618.15H114.02ZM775.17-732.7l-41.24-41.47 41.24 41.47ZM664.2-663.2l-22-21.76 43.76 44-21.76-22.24Z"/></svg>`;
|
|
49
|
-
|
|
50
|
-
const EditFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M115.02-114.02V-253.5l617.44-617.67 140.67 139-618.39 618.15H115.02Zm620.15-578.91 40-39.77-41.24-41.47-40.23 40 41.47 41.24Z"/></svg>`;
|
|
51
|
-
|
|
52
|
-
const CodeBlocksIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m379-343 44.24-44-93-93L422-571.76l-44.24-44L242-479.88 379-343Zm202 0 137-137-137-137-44.24 44 93 93-93 93L581-343ZM114.02-114.02v-732.2h732.2v732.2h-732.2Zm68.13-68.13h595.7v-595.7h-595.7v595.7Zm0 0v-595.7 595.7Z"/></svg>`;
|
|
53
|
-
|
|
54
|
-
const VisibilityIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M480.12-330q70.88 0 120.38-49.62t49.5-120.5q0-70.88-49.62-120.38T479.88-670Q409-670 359.5-620.38T310-499.88q0 70.88 49.62 120.38t120.5 49.5Zm-.3-61.83q-45.15 0-76.57-31.6-31.42-31.6-31.42-76.75t31.6-76.57q31.6-31.42 76.75-31.42t76.57 31.6q31.42 31.6 31.42 76.75t-31.6 76.57q-31.6 31.42-76.75 31.42ZM480-194.5q-147.91 0-267.35-84.67Q93.22-363.85 34.5-500q58.72-136.15 178.15-220.83Q332.09-805.5 480-805.5q147.91 0 267.35 84.67Q866.78-636.15 925.5-500q-58.72 136.15-178.15 220.83Q627.91-194.5 480-194.5Zm0-305.5Zm-.15 240q121 0 222.34-65.5Q803.52-391 856.52-500q-53-109-154.19-174.5Q601.15-740 480.15-740t-222.34 65.5Q156.48-609 102.48-500q54 109 155.19 174.5Q358.85-260 479.85-260Z"/></svg>`;
|
|
55
|
-
|
|
56
|
-
const VisibilityFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M480.12-330q70.88 0 120.38-49.62t49.5-120.5q0-70.88-49.62-120.38T479.88-670Q409-670 359.5-620.38T310-499.88q0 70.88 49.62 120.38t120.5 49.5Zm-.3-61.83q-45.15 0-76.57-31.6-31.42-31.6-31.42-76.75t31.6-76.57q31.6-31.42 76.75-31.42t76.57 31.6q31.42 31.6 31.42 76.75t-31.6 76.57q-31.6 31.42-76.75 31.42ZM480-194.5q-147.91 0-267.35-84.67Q93.22-363.85 34.5-500q58.72-136.15 178.15-220.83Q332.09-805.5 480-805.5q147.91 0 267.35 84.67Q866.78-636.15 925.5-500q-58.72 136.15-178.15 220.83Q627.91-194.5 480-194.5Z"/></svg>`;
|
|
57
|
-
|
|
58
|
-
const VisibilityOffIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m630.2-422.11-51.9-51.65q24.81-64.54-23.53-106.28-48.34-41.74-102.44-19.7l-50.22-50.46q16.52-10.28 36.8-15.04Q459.2-670 480-670q71 0 120.5 49.5T650-500q0 20.57-5.14 41.71t-14.66 36.18Zm133.54 134.02-43.59-43.82q47.81-35.76 83.35-79.67 35.54-43.9 53.26-88.42-50.48-110.76-150.12-175.38Q607-740 490-740q-42 0-85.04 7.76-43.05 7.76-66.61 18.28l-50.78-51.54q35-16 90.21-28 55.22-12 107.22-12 143.96 0 264.01 82.34Q869.07-640.83 925.5-500q-25.76 64.48-67.12 118.08-41.36 53.59-94.64 93.83Zm50.11 226.24L649.2-223.74q-35 14-79.24 21.62-44.24 7.62-89.96 7.62-147.2 0-267.75-82.46Q91.7-359.41 34.5-500q19.52-51.76 55.38-101.86t86.38-95.81L50.98-822.48l43.91-45.15 759.87 759.87-40.91 45.91ZM221.33-652.09q-36.76 27.48-70.19 70.41-33.42 42.92-48.66 81.68 51.24 111 153.38 175.5Q358-260 488-260q31.57 0 62.73-3.76 31.16-3.76 47.16-11.76l-64-64q-10.28 4.76-25.44 7.14Q493.28-330 480-330q-70 0-120-49t-50-121q0-14.04 2.26-28.33 2.26-14.28 6.78-25.56l-97.71-98.2Zm309.3 138.66ZM409.61-452.8Z"/></svg>`;
|
|
59
|
-
|
|
60
|
-
const VisibilityOffFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M813.85-61.85 649.2-223.74q-35 14-79.24 21.62-44.24 7.62-89.96 7.62-147.2 0-267.75-82.46Q91.7-359.41 34.5-500q19.52-51.76 55.38-101.86t86.38-95.81L50.98-822.48l43.91-45.15 759.87 759.87-40.91 45.91ZM480-330q13.28 0 28.45-2.5 15.16-2.5 25.44-7.26L319.28-553.89q-4.52 11.28-6.9 25.56Q310-514.04 310-500q0 72 50 121t120 49Zm283.74 41.91L629.96-422.11q9.52-15.04 14.78-36.18T650-500q0-71-49.5-120.5T480-670q-20.8 0-41.09 4.76-20.28 4.76-36.8 15.04L287.57-765.5q35-16 90.21-28 55.22-12 107.22-12 143.96 0 264.01 82.34Q869.07-640.83 925.5-500q-25.76 64.48-67.12 118.08-41.36 53.59-94.64 93.83ZM578.07-474l-125.5-125.5q25.17-10.28 52.82-5.1 27.65 5.19 48.5 24.56 20.61 20.61 28.53 46 7.93 25.39-4.35 60.04Z"/></svg>`;
|
|
61
|
-
|
|
62
|
-
const CloseIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M249-201.26 201.26-249l231-231-231-231L249-758.74l231 231 231-231L758.74-711l-231 231 231 231L711-201.26l-231-231-231 231Z"/></svg>`;
|
|
63
|
-
|
|
64
|
-
const CancelIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M331.91-288 480-436.09 628.09-288 672-331.91 523.91-480 672-628.09 628.09-672 480-523.91 331.91-672 288-628.09 436.09-480 288-331.91 331.91-288ZM480.03-74.02q-83.46 0-157.54-31.88-74.07-31.88-129.39-87.2-55.32-55.32-87.2-129.36-31.88-74.04-31.88-157.51 0-84.46 31.88-158.54 31.88-74.07 87.16-128.9 55.28-54.84 129.34-86.82 74.06-31.99 157.55-31.99 84.48 0 158.59 31.97 74.1 31.97 128.91 86.77 54.82 54.8 86.79 128.88 31.98 74.08 31.98 158.6 0 83.5-31.99 157.57-31.98 74.07-86.82 129.36-54.83 55.29-128.87 87.17-74.04 31.88-158.51 31.88Zm-.03-68.13q141.04 0 239.45-98.75 98.4-98.76 98.4-239.1 0-141.04-98.4-239.45-98.41-98.4-239.57-98.4-140.16 0-238.95 98.4-98.78 98.41-98.78 239.57 0 140.16 98.75 238.95 98.76 98.78 239.1 98.78ZM480-480Z"/></svg>`;
|
|
65
|
-
|
|
66
|
-
const CancelFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M331.91-288 480-436.09 628.09-288 672-331.91 523.91-480 672-628.09 628.09-672 480-523.91 331.91-672 288-628.09 436.09-480 288-331.91 331.91-288ZM480.03-74.02q-83.46 0-157.54-31.88-74.07-31.88-129.39-87.2-55.32-55.32-87.2-129.36-31.88-74.04-31.88-157.51 0-84.46 31.88-158.54 31.88-74.07 87.16-128.9 55.28-54.84 129.34-86.82 74.06-31.99 157.55-31.99 84.48 0 158.59 31.97 74.1 31.97 128.91 86.77 54.82 54.8 86.79 128.88 31.98 74.08 31.98 158.6 0 83.5-31.99 157.57-31.98 74.07-86.82 129.36-54.83 55.29-128.87 87.17-74.04 31.88-158.51 31.88Z"/></svg>`;
|
|
67
|
-
|
|
68
|
-
const AttachFileIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M737.33-324.39q0 105.46-74.69 177.91-74.69 72.46-180.26 72.46-105.58 0-180.35-72.46-74.77-72.45-74.77-177.85v-383.82q0-74.63 53.41-126.35 53.42-51.72 127.75-51.72 74.34 0 127.69 51.72 53.35 51.72 53.35 126.35v363.82q0 43.66-31.56 74.62-31.55 30.97-75.81 30.97-44.26 0-75.61-30.64t-31.35-74.95v-370h66.46v370q0 16.05 11.97 27.59t29.2 11.54q17.24 0 28.74-11.5 11.5-11.51 11.5-27.63v-363.58q.24-47.35-33.38-79.6-33.62-32.25-81.35-32.25-47.74 0-81.14 32.19-33.41 32.19-33.41 79.42v383.82q.24 77.83 55.57 130.96 55.33 53.13 133.62 53.13 77.86 0 133.03-53.16 55.17-53.17 54.93-130.93v-396.93h66.46v396.87Z"/></svg>`;
|
|
69
|
-
|
|
70
|
-
const AttachFileAddIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M662.87-477.13v-244.13h66.46v244.13h-66.46ZM433.59-247.26q-28.63-11.52-47.55-37.31-18.91-25.78-18.91-59.76v-370h66.46v467.07Zm41.08 173.24q-106.03 0-180.72-72.46-74.69-72.45-74.69-177.85v-383.82q0-74.63 53.41-126.35 53.42-51.72 127.75-51.72 74.34 0 127.69 51.72 53.35 51.72 53.35 126.35v347.67H515v-347.43q.24-47.35-33.38-79.6-33.62-32.25-81.35-32.25-47.74 0-81.14 32.19-33.41 32.19-33.41 79.42v383.82q.24 77.83 55.57 130.96 55.33 53.13 133.56 53.13 37.3 0 70.04-13 32.74-13 57.98-36v80.65q-28.48 16.81-60.68 25.69-32.21 8.88-67.52 8.88Zm188.2-43.11v-116.89H546.22v-66.46h116.65v-116.65h66.46v116.65h116.89v66.46H729.33v116.89h-66.46Z"/></svg>`;
|
|
71
|
-
|
|
72
|
-
const AttachFileOffIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M482.67-74.02q-105.87 0-180.64-72.46-74.77-72.45-74.77-177.85v-314.58L61.09-805.09 106-850l749.09 749.09L810.17-56 688.3-177.87q-34.95 47.28-88.67 75.57-53.72 28.28-116.96 28.28ZM293.72-572.46v248.13q.24 77.76 55.6 130.93 55.35 53.16 133.59 53.16 49.81 0 91.33-22.68 41.52-22.69 67-62.01l-67.61-67.37q-13.48 23.28-37.72 38.42t-53.24 15.14q-44.91 0-76.22-30.46-31.32-30.45-31.32-75.13v-146.71l-81.41-81.42Zm147.87 147.87v80.26q0 16.05 12.02 27.59t29.06 11.54q16.57 0 27.85-11.18 11.28-11.19 11.52-26.51v-1l-80.45-80.7Zm229.28 54.46v-351.13h66.46v417.59l-66.46-66.46ZM523-518.24v-189.67q.24-47.29-33.38-79.57-33.62-32.28-81.14-32.28-37.76 0-68 21.76-30.24 21.76-41.24 55.52l-50.54-50.3q23.95-42.48 65.77-67.96 41.81-25.48 94.01-25.48 74.39 0 127.68 51.96 53.3 51.96 53.3 126.11v256.37L523-518.24Zm-81.41-196.09v114.44l-62.63-62.63v-51.81h62.63Z"/></svg>`;
|
|
73
|
-
|
|
74
|
-
const AttachEmailIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m440.48-535.35-337.85-217v450.2h494.74v68.13H34.5v-652.2h812.2v308.37h-68.37v-174.5l-337.85 217Zm0-69.5 337.85-213h-675.7l337.85 213ZM793.43-72.11q-57.67 0-96.86-41.14-39.2-41.15-39.2-98.92v-224q0-34.21 24.27-58.54t59.42-24.33q34.32 0 57.94 24.33 23.63 24.33 23.63 58.54v230H760v-233q0-11.2-4.5-19.6-4.5-8.4-14.5-8.4t-15.5 8.4q-5.5 8.4-5.5 19.6v229q0 33.76 20.33 59.09 20.33 25.34 53.08 25.34 30.74 0 49.98-23.98t19.24-56.45v-198.44h62.87v198.44q0 55.3-38.2 94.68-38.19 39.38-93.87 39.38Zm-690.8-680.24v-65.5 515.7-450.2Z"/></svg>`;
|
|
75
|
-
|
|
76
|
-
const AttachEmailFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M793.43-72.11q-57.67 0-96.86-41.19-39.2-41.2-39.2-98.87v-224q0-34.51 24.17-58.69 24.16-24.18 59.41-24.18 34.25 0 57.96 24.18 23.72 24.18 23.72 58.69v230H760v-233q0-11-4.5-19.5t-14.5-8.5q-10 0-15.5 8.5t-5.5 19.5v229q0 33.76 20.33 59.09 20.33 25.34 52.96 25.34 30.62 0 49.98-23.92 19.36-23.92 19.36-56.51v-198.44h62.87v198.44q0 55.67-38.2 94.87-38.19 39.19-93.87 39.19ZM34.5-234.02v-652.2h812.2v337.18H731q-44.28 0-73.95 33.33-29.68 33.34-29.68 79.54v202.15H34.5Zm405.98-301.33 337.85-217v-65.5l-337.85 213-337.85-213v65.5l337.85 217Z"/></svg>`;
|
|
77
|
-
|
|
78
|
-
const ZoomInIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M795.76-114.3 531.33-378.5q-29.76 25.26-69.6 39.41-39.84 14.16-85.16 14.16-109.84 0-185.96-76.2Q114.5-477.33 114.5-585t76.2-183.87q76.19-76.2 184.37-76.2 108.17 0 183.86 76.2 75.7 76.2 75.7 184.02 0 43.33-13.64 82.97t-40.92 74.4L845.5-164.04l-49.74 49.74ZM375.65-393.07q79.73 0 135.29-56.24Q566.5-505.55 566.5-585q0-79.45-55.6-135.69-55.59-56.24-135.25-56.24-80.49 0-136.76 56.24-56.26 56.24-56.26 135.69 0 79.45 56.23 135.69 56.23 56.24 136.79 56.24Zm-31.2-82.13V-556h-80.69v-60h80.81v-80.04h60V-616h80.04v60.12h-80.04v80.68h-60.12Z"/></svg>`;
|
|
79
|
-
|
|
80
|
-
const ZoomOutIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M795.76-114.3 531.33-378.5q-29.76 25.26-69.6 39.41-39.84 14.16-85.16 14.16-109.84 0-185.96-76.2Q114.5-477.33 114.5-585t76.2-183.87q76.19-76.2 184.37-76.2 108.17 0 183.86 76.2 75.7 76.2 75.7 184.02 0 43.33-13.64 82.97t-40.92 74.4L845.5-164.04l-49.74 49.74ZM375.65-393.07q79.73 0 135.29-56.24Q566.5-505.55 566.5-585q0-79.45-55.6-135.69-55.59-56.24-135.25-56.24-80.49 0-136.76 56.24-56.26 56.24-56.26 135.69 0 79.45 56.23 135.69 56.23 56.24 136.79 56.24ZM273.57-556v-60h201v60h-201Z"/></svg>`;
|
|
81
|
-
|
|
82
|
-
const SearchIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M795.76-114.3 531.33-378.5q-29.76 25.26-69.6 39.41-39.84 14.16-85.16 14.16-109.84 0-185.96-76.2Q114.5-477.33 114.5-585t76.2-183.87q76.19-76.2 184.37-76.2 108.17 0 183.86 76.2 75.7 76.2 75.7 184.02 0 43.33-13.64 82.97t-40.92 74.4L845.5-164.04l-49.74 49.74ZM375.65-393.07q79.73 0 135.29-56.24Q566.5-505.55 566.5-585q0-79.45-55.6-135.69-55.59-56.24-135.25-56.24-80.49 0-136.76 56.24-56.26 56.24-56.26 135.69 0 79.45 56.23 135.69 56.23 56.24 136.79 56.24Z"/></svg>`;
|
|
83
|
-
|
|
84
|
-
const ArrowBackIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m283.8-445.93 244.18 244.17L480-154.02 154.02-480 480-806.22l47.98 47.98L283.8-514.07h522.42v68.14H283.8Z"/></svg>`;
|
|
85
|
-
|
|
86
|
-
const ArrowForwardIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M676.2-445.93H154.02v-68.14H676.2L432.02-758.24 480-806.22 806.22-480 480-154.02l-47.98-47.74L676.2-445.93Z"/></svg>`;
|
|
87
|
-
|
|
88
|
-
const ArrowUpwardIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M445.93-154.02V-676.2L201.76-432.02 154.02-480 480-806.22 806.22-480l-47.98 47.98L514.07-676.2v522.18h-68.14Z"/></svg>`;
|
|
89
|
-
|
|
90
|
-
const ArrowDownwardIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M445.93-806.22v522.42L201.76-527.98 154.02-480 480-154.02 806.22-480l-47.98-47.98L514.07-283.8v-522.42h-68.14Z"/></svg>`;
|
|
91
|
-
|
|
92
|
-
const ArrowInsertIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M716.33-240.02 308.39-647.96v372.03h-68.37v-488.14h488.37v68.14H356.37L764.07-288l-47.74 47.98Z"/></svg>`;
|
|
93
|
-
|
|
94
|
-
const ArrowOutwardIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M243.91-240.02 195.93-288l407.94-407.93H231.61v-68.14h488.37v488.14h-68.37v-372.03l-407.7 407.94Z"/></svg>`;
|
|
95
|
-
|
|
96
|
-
const ChevronBackwardIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M561-234.26 314.26-481 561-727.74 609.74-679l-198 198 198 198L561-234.26Z"/></svg>`;
|
|
97
|
-
|
|
98
|
-
const ChevronForwardIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m524.26-481-198-198L375-727.74 621.74-481 375-234.26 326.26-283l198-198Z"/></svg>`;
|
|
99
|
-
|
|
100
|
-
const KeyboardArrowUpIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m480-548.26-197 197L234.26-400 480-645.74 725.74-400 677-351.26l-197-197Z"/></svg>`;
|
|
101
|
-
|
|
102
|
-
const KeyboardArrowDownIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M480-338.26 234.26-584 283-632.74l197 197 197-197L725.74-584 480-338.26Z"/></svg>`;
|
|
103
|
-
|
|
104
|
-
const ArrowDropDownCircleIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m480-362.17 152.7-153.46H326.3L480-362.17Zm.03 288.15q-83.46 0-157.54-31.88-74.07-31.88-129.39-87.2-55.32-55.32-87.2-129.36-31.88-74.04-31.88-157.51 0-84.46 31.88-158.54 31.88-74.07 87.16-128.9 55.28-54.84 129.34-86.82 74.06-31.99 157.55-31.99 84.48 0 158.59 31.97 74.1 31.97 128.91 86.77 54.82 54.8 86.79 128.88 31.98 74.08 31.98 158.6 0 83.5-31.99 157.57-31.98 74.07-86.82 129.36-54.83 55.29-128.87 87.17-74.04 31.88-158.51 31.88Zm-.03-68.13q141.04 0 239.45-98.75 98.4-98.76 98.4-239.1 0-141.04-98.4-239.45-98.41-98.4-239.57-98.4-140.16 0-238.95 98.4-98.78 98.41-98.78 239.57 0 140.16 98.75 238.95 98.76 98.78 239.1 98.78ZM480-480Z"/></svg>`;
|
|
105
|
-
|
|
106
|
-
const ArrowDropDownFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M480-354.26 270.2-563.07h419.6L480-354.26Z"/></svg>`;
|
|
107
|
-
|
|
108
|
-
const UnfoldLessIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M343-154.26 294.26-203 480-388.74 665.74-203 617-154.26l-137-137-137 137Zm137-417L294.26-757 343-805.74l137 137 137-137L665.74-757 480-571.26Z"/></svg>`;
|
|
109
|
-
|
|
110
|
-
const UnfoldMoreIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M480-114.26 293.78-300.48l49.74-49.74L480-213.5l136.48-136.72 49.74 49.74L480-114.26ZM343.52-606.5 293.78-656 480-842.22 666.22-656l-49.74 49.5L480-742.98 343.52-606.5Z"/></svg>`;
|
|
111
|
-
|
|
112
|
-
const CollapseContentIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M442.15-442.39v248.37h-68.13v-180h-180v-68.37h248.13Zm144.07-323.83v180h180v68.37H517.85v-248.37h68.37Z"/></svg>`;
|
|
113
|
-
|
|
114
|
-
const ExpandContentIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M195.93-195.93v-248.14h68.14v180h180v68.14H195.93Zm500-320v-180h-180v-68.14h248.14v248.14h-68.14Z"/></svg>`;
|
|
115
|
-
|
|
116
|
-
const ZoomOutMapIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M114.02-114.02v-241h68.13v124.13l143.94-143.94 48.74 48.74-143.94 143.94h124.13v68.13h-241Zm490.96 0v-68.13h124.13L586.17-325.09l48.74-48.74 142.94 142.94v-124.13h68.37v241H604.98ZM325.09-586.17 182.15-729.11v124.13h-68.13v-241.24h241v68.37H230.89l142.94 142.94-48.74 48.74Zm309.82 0-48.74-48.74 142.94-142.94H604.98v-68.37h241.24v241.24h-68.37v-124.13L634.91-586.17Z"/></svg>`;
|
|
117
|
-
|
|
118
|
-
const ZoomInMapIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m143.96-94.98-48.98-48.98 142.93-142.93H114.02v-68.13h241v241h-68.13v-123.89L143.96-94.98Zm672.08 0L673.35-237.91v123.89h-68.37v-241h241.24v68.13H722.09l142.93 142.93-48.98 48.98Zm-702.02-510v-68.37h123.89L94.98-816.04l48.98-48.98 142.93 142.93v-124.13h68.13v241.24h-241Zm490.96 0v-241.24h68.37v124.13l143.69-143.93 48.98 48.98-143.93 143.69h124.13v68.37H604.98Z"/></svg>`;
|
|
119
|
-
|
|
120
|
-
const AddIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M445.93-445.93H194.02v-68.14h251.91v-252.15h68.14v252.15h252.15v68.14H514.07v251.91h-68.14v-251.91Z"/></svg>`;
|
|
121
|
-
|
|
122
|
-
const CloseSmallIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m305.02-257.28-47.74-47.74L432.02-480 257.28-653.98l47.74-47.74L480-526.98l173.98-174.74 47.74 47.74L526.98-480l174.74 174.98-47.74 47.74L480-432.02 305.02-257.28Z"/></svg>`;
|
|
123
|
-
|
|
124
|
-
const RemoveIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M194.02-445.93v-68.14h572.2v68.14h-572.2Z"/></svg>`;
|
|
125
|
-
|
|
126
|
-
const EqualIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M154.02-285.93v-108.14h652.2v108.14h-652.2Zm0-280v-108.14h652.2v108.14h-652.2Z"/></svg>`;
|
|
127
|
-
|
|
128
|
-
const FunctionIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M398.89-235.46v-64.78h61.63L583.2-438.76 460.54-579.04h-75.45l-70.76 364.56q-8.72 47.63-36.81 73.93-28.1 26.29-71.13 26.29-42.67 0-71.37-25.11-28.69-25.11-28.69-62.24 0-27.87 15.78-45.13Q137.9-264 163.14-264q22.25 0 36.47 12.96 14.22 12.95 14.22 34.15 0 10.76-4.38 19.9-4.38 9.14-12.15 14.9 3.77 2 8.27 3t9.73 1q12.77.24 21.77-12.02t12.76-31.78l69.47-357.15H190.43v-64.55h140.83l20.52-100.74q9.96-48.58 38.69-75.24 28.72-26.65 71.56-26.65 42.6 0 70.42 24.84 27.81 24.84 27.81 62.03 0 28.36-15.84 45.62-15.83 17.25-41.14 17.25-21.32 0-35.92-12.34-14.6-12.33-14.6-32.77 0-9.41 3.88-18.78 3.88-9.37 9.64-15.02-2-2-6-3.5t-8-1.5q-12.76-.24-22.38 11.7t-13.38 30.34l-18.48 94.76h194.98v64.55h-46.28l81.8 93.84 76.81-93.84h-47.28v-64.55h193.89v64.55h-60.39L669.65-438.76 791.8-300.24h60.16v64.78H658.07v-64.78h47.28l-78.81-90.37-81.04 90.37h47.52v64.78H398.89Z"/></svg>`;
|
|
129
|
-
|
|
130
|
-
const FunctionsIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M234.02-154.02v-70.89L507.59-480 234.02-735.09v-71.13h492.2v111H409.39L637.93-480 409.39-264.78h316.83v110.76h-492.2Z"/></svg>`;
|
|
131
|
-
|
|
132
|
-
const PercentIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M288.5-536.65q-56.09 0-95.28-39.39-39.2-39.38-39.2-95.38 0-56 39.38-95.28t95.38-39.28q56 0 95.28 39.36 39.29 39.35 39.29 95.32 0 56.08-39.39 95.36-39.38 39.29-95.46 39.29Zm-.05-68.13q27.71 0 47.24-19.4t19.53-47.11q0-27.71-19.4-47.01-19.4-19.31-47.11-19.31t-47.01 19.17q-19.31 19.18-19.31 46.89t19.17 47.24q19.18 19.53 46.89 19.53Zm382.76 450.76q-55.93 0-95.24-39.34-39.32-39.33-39.32-95.34 0-56.02 39.39-95.33 39.38-39.32 95.46-39.32 56.09 0 95.4 39.49 39.32 39.49 39.32 95.35 0 55.86-39.54 95.17-39.54 39.32-95.47 39.32Zm.08-68.13q27.71 0 47.01-19.35 19.31-19.35 19.31-46.99t-19.17-47.06q-19.18-19.43-46.89-19.43t-47.24 19.35q-19.53 19.35-19.53 46.99t19.4 47.06q19.4 19.43 47.11 19.43Zm-469.53 68.13-47.74-47.74 604.46-604.46 47.74 47.74-604.46 604.46Z"/></svg>`;
|
|
133
|
-
|
|
134
|
-
const CalculateIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M315.2-229.2h50v-88h88v-50h-88v-88h-50v88h-88v50h88v88Zm212.84-35h201v-49h-201v49Zm0-107h201v-50h-201v50ZM242.2-605h196v-50h-196v50ZM114.02-114.02v-732.2h732.2v732.2h-732.2Zm68.13-68.13h595.7v-595.7h-595.7v595.7Zm0 0v-595.7 595.7Zm382.89-349.89 61-61 61 61 36-36-61-61 61-61-36-36-61 61-61-61-36 36 61 61-61 61 36 36Z"/></svg>`;
|
|
135
|
-
|
|
136
|
-
const CalculateFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M315.2-229.2h50v-88h88v-50h-88v-88h-50v88h-88v50h88v88Zm212.84-35h201v-49h-201v49Zm0-107h201v-50h-201v50ZM242.2-605h196v-50h-196v50ZM114.02-114.02v-732.2h732.2v732.2h-732.2Zm451.02-418.02 61-61 61 61 36-36-61-61 61-61-36-36-61 61-61-61-36 36 61 61-61 61 36 36Z"/></svg>`;
|
|
137
|
-
|
|
138
|
-
const CalendarMonthIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M438.57-398.57v-82.86h82.86v82.86h-82.86Zm-160 0v-82.86h82.86v82.86h-82.86Zm320 0v-82.86h82.86v82.86h-82.86Zm-160 160v-82.86h82.86v82.86h-82.86Zm-160 0v-82.86h82.86v82.86h-82.86Zm320 0v-82.86h82.86v82.86h-82.86ZM114.02-74.02v-752.2h131.03v-60h69.02v60h331.86v-60h69.12v60h131.17v752.2h-732.2Zm68.13-68.13h595.7V-570h-595.7v427.85Zm0-487.85h595.7v-127.85h-595.7V-630Zm0 0v-127.85V-630Z"/></svg>`;
|
|
139
|
-
|
|
140
|
-
const CalendarMonthFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M438.57-398.57v-82.86h82.86v82.86h-82.86Zm-160 0v-82.86h82.86v82.86h-82.86Zm320 0v-82.86h82.86v82.86h-82.86Zm-160 160v-82.86h82.86v82.86h-82.86Zm-160 0v-82.86h82.86v82.86h-82.86Zm320 0v-82.86h82.86v82.86h-82.86ZM114.02-74.02v-752.2h131.03v-60h69.02v60h331.86v-60h69.12v60h131.17v752.2h-732.2Zm68.13-68.13h595.7V-570h-595.7v427.85Z"/></svg>`;
|
|
141
|
-
|
|
142
|
-
const EventAvailableIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M433-226.09 293.09-364.76l43.67-43.91L433-314.43l184.24-184.24 43.67 44.91L433-226.09ZM114.02-74.02v-752.2h131.03v-60h69.02v60h331.86v-60h69.12v60h131.17v752.2h-732.2Zm68.13-68.13h595.7V-570h-595.7v427.85Zm0-487.85h595.7v-127.85h-595.7V-630Zm0 0v-127.85V-630Z"/></svg>`;
|
|
143
|
-
|
|
144
|
-
const EventAvailableFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M433-226.09 293.09-364.76l43.67-43.91L433-314.43l184.24-184.24 43.67 44.91L433-226.09ZM114.02-74.02v-752.2h131.03v-60h69.02v60h331.86v-60h69.12v60h131.17v752.2h-732.2Zm68.13-68.13h595.7V-570h-595.7v427.85Z"/></svg>`;
|
|
145
|
-
|
|
146
|
-
const EditCalendarIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M114.02-74.02v-752.2h131.03v-60h69.02v60h331.86v-60h69.12v60h131.17v325.02h-68.37V-570h-595.7v427.85h316.89v68.13H114.02ZM182.15-630h595.7v-127.85h-595.7V-630Zm0 0v-127.85V-630ZM559.04-74.02v-128.02l266.59-265.59 127.02 127.02L687.07-74.02H559.04Zm303.59-266.59-37-37 37 37Zm-240 203h38l120.28-121.23-18-19.02-19-18.03-121.28 120.22v38.06Zm140.28-140.28-19-18 37 37-18-19Z"/></svg>`;
|
|
147
|
-
|
|
148
|
-
const EditCalendarFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M114.02-74.02v-752.2h131.03v-60h69.02v60h331.86v-60h69.12v60h131.17v325.02h-68.37V-570h-595.7v427.85h316.89v68.13H114.02Zm445.02 0v-128.02l266.59-265.59 127.02 127.02L687.07-74.02H559.04ZM827.3-303.28l35.33-37.33-37-37-36.33 36.33 38 38Z"/></svg>`;
|
|
149
|
-
|
|
150
|
-
const PersonPinCircleIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M480-371.91q51.4 0 92.7-24 41.3-24 66.3-64-34-25.76-74.22-38.88-40.21-13.12-85-13.12-44.78 0-84.78 13.12t-74 38.88q25 40 66.3 64t92.7 24Zm.09-200q28.91 0 49.41-20.59Q550-613.09 550-642t-20.59-49.41q-20.59-20.5-49.5-20.5t-49.41 20.59q-20.5 20.58-20.5 49.5 0 28.91 20.59 49.41 20.59 20.5 49.5 20.5ZM480-163.78q131.8-119.57 194.83-215.8 63.02-96.22 63.02-173.14 0-116.53-74.66-190.83-74.66-74.3-183.15-74.3-108.5 0-183.19 74.3-74.7 74.3-74.7 190.83 0 76.92 64.52 173.02Q351.2-283.59 480-163.78Zm0 89.76Q316.13-212.7 235.08-330.67q-81.06-117.98-81.06-222.05 0-152.32 98.3-242.91 98.31-90.59 227.68-90.59 129.27 0 227.74 90.59 98.48 90.59 98.48 242.91 0 104.07-81.18 222.05Q643.87-212.7 480-74.02ZM480-560Z"/></svg>`;
|
|
151
|
-
|
|
152
|
-
const PersonPinCircleFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M480-371.91q51.4 0 92.7-24 41.3-24 66.3-64-34-25.76-74.22-38.88-40.21-13.12-85-13.12-44.78 0-84.78 13.12t-74 38.88q25 40 66.3 64t92.7 24Zm.09-200q28.91 0 49.41-20.59Q550-613.09 550-642t-20.59-49.41q-20.59-20.5-49.5-20.5t-49.41 20.59q-20.5 20.58-20.5 49.5 0 28.91 20.59 49.41 20.59 20.5 49.5 20.5ZM480-74.02Q316.13-212.7 235.08-330.67q-81.06-117.98-81.06-222.05 0-152.32 98.3-242.91 98.31-90.59 227.68-90.59 129.27 0 227.74 90.59 98.48 90.59 98.48 242.91 0 104.07-81.18 222.05Q643.87-212.7 480-74.02Z"/></svg>`;
|
|
153
|
-
|
|
154
|
-
const EuroSymbolIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M600.09-117.37q-123.25 0-214.58-68.6-91.34-68.6-121.05-179.6H118.09v-62.86h131.65q-2-11.42-3-25.91t-1-25.66q0-11.22 1-25.4 1-14.17 3-26.05H118.09v-62.98h146.37q32.71-115.48 122.57-181.84 89.87-66.36 213-66.36 69.77 0 131.23 23.22Q792.72-796.2 842.91-749l-54.58 54.83q-38.72-35.96-87.76-54.08-49.05-18.12-100.48-18.12-95.11 0-161.02 45.66-65.92 45.67-91.92 126.28h253.94v62.86H328.2q-3 11.53-3.88 25.79-.89 14.26-.89 25.78 0 11.52.89 25.78.88 14.26 3.88 25.79h272.89v62.86H347.15q25 82.61 94.57 127.28 69.56 44.66 158.27 44.66 51.62 0 101.12-18.12 49.5-18.12 86.98-54.08L842.91-212q-54.19 48.2-115.2 71.41-61.01 23.22-127.62 23.22Z"/></svg>`;
|
|
155
|
-
|
|
156
|
-
const LanguageIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M480-74.02q-85.2 0-159.27-31.86-74.08-31.86-128.91-86.82-54.84-54.95-86.32-129.53Q74.02-396.8 74.02-482q0-85.2 31.48-158.89 31.48-73.7 86.32-128.41 54.83-54.72 128.91-85.82 74.07-31.1 159.27-31.1 85.2 0 159.27 31.1 74.08 31.1 128.91 85.82 54.84 54.71 86.44 128.41 31.6 73.69 31.6 158.89 0 85.2-31.6 159.77-31.6 74.58-86.44 129.53-54.83 54.96-128.91 86.82Q565.2-74.02 480-74.02Zm-.24-65.89q34.28-35.76 57.66-82.02 23.38-46.27 38.62-110.27H384.96q13.76 60 37.14 107.77 23.38 47.76 57.66 84.52Zm-84.28-12q-25.24-37.52-42.88-81.52-17.64-44-29.64-98.77H173.91q37.52 70.77 87.29 111.03 49.76 40.26 134.28 69.26Zm169.56-1q71.53-22.76 128.79-68.64 57.26-45.88 92.02-110.65H638.04q-13 53.77-30.38 97.77-17.38 44-42.62 81.52ZM154.15-391.48h157.81q-3-27-3.5-48.38-.5-21.38-.5-42.14 0-25 1-44.26 1-19.26 4-43.26H154.15q-7 24-9.5 42.76-2.5 18.76-2.5 44.76 0 25.76 2.5 46.14t9.5 44.38Zm219.81 0h213.08q3.76-31 4.64-50.38.89-19.38.89-40.14 0-20-.89-38.26-.88-18.26-4.64-49.26H373.96q-4 31-5 49.26-1 18.26-1 38.26 0 20.76 1 40.14t5 50.38Zm273.08 0h158.57q6.76-24 9.38-44.38 2.62-20.38 2.62-46.14 0-26-2.62-44.76-2.62-18.76-9.38-42.76H648.04q2.53 35.24 3.53 53.38t1 34.14q0 21.76-1.5 41.14t-4.03 49.38Zm-10-237.56h148.81q-32.76-68.53-90.02-114.41-57.26-45.88-131.79-64.64 25.24 36.76 42.62 79.64t30.38 99.41Zm-252.08 0h192.08q-10.76-52.53-36.76-102.03t-60.52-87.02q-31.28 26.76-53.16 70.52-21.88 43.77-41.64 118.53Zm-211.05 0h150.05q11-53.53 27.64-95.91 16.64-42.38 42.88-82.14-74.76 18.76-130.4 63.52-55.65 44.77-90.17 114.53Z"/></svg>`;
|
|
157
|
-
|
|
158
|
-
const Grid4x4Icon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M205.43-70.43v-135h-135v-68.14h135v-172.36h-135v-68.14h135v-172.36h-135v-68.37h135v-135h68.14v135h172.36v-135h68.14v135h172.36v-135h68.37v135h135v68.37h-135v172.36h135v68.14h-135v172.36h135v68.14h-135v135h-68.37v-135H514.07v135h-68.14v-135H273.57v135h-68.14Zm68.14-203.14h172.36v-172.36H273.57v172.36Zm240.5 0h172.36v-172.36H514.07v172.36Zm-240.5-240.5h172.36v-172.36H273.57v172.36Zm240.5 0h172.36v-172.36H514.07v172.36Z"/></svg>`;
|
|
159
|
-
|
|
160
|
-
const SellIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M515-44.43 74.02-486.65v-399.57h401.33L914.8-447.48 515-44.43Zm1-95.72 304.09-305.09-373.17-372.61H142.15v302.01L516-140.15ZM246.88-662.57q20.79 0 36.17-15.38 15.38-15.39 15.38-36.23 0-20.84-15.35-36.25-15.35-15.42-36.14-15.42-21.03 0-36.41 15.39-15.38 15.39-15.38 36.23 0 20.83 15.35 36.25 15.36 15.41 36.38 15.41ZM481-479Z"/></svg>`;
|
|
161
|
-
|
|
162
|
-
const SellFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M515-44.43 74.02-486.65v-399.57h401.33L914.8-447.48 515-44.43ZM246.88-662.57q20.79 0 36.17-15.38 15.38-15.39 15.38-36.23 0-20.84-15.35-36.25-15.35-15.42-36.14-15.42-21.03 0-36.41 15.39-15.38 15.39-15.38 36.23 0 20.83 15.35 36.25 15.36 15.41 36.38 15.41Z"/></svg>`;
|
|
163
|
-
|
|
164
|
-
const HomeIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M222.15-182.15h143.78v-251.92h228.14v251.92h143.78v-386.89L480-762.37 222.15-568.96v386.81Zm-68.13 68.13v-489.09L480-847.65l326.22 244.54v489.09H528.57v-254.55h-97.14v254.55H154.02ZM480-472.76Z"/></svg>`;
|
|
165
|
-
|
|
166
|
-
const HomeFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M154.02-114.02v-489.01L480-847.65l326.22 244.54v489.09H561.43v-287.41H398.57v287.41H154.02Z"/></svg>`;
|
|
167
|
-
|
|
168
|
-
const MenuIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M114.02-231.15v-68.37h732.2v68.37h-732.2Zm0-214.78v-68.14h732.2v68.14h-732.2Zm0-214.55v-68.37h732.2v68.37h-732.2Z"/></svg>`;
|
|
169
|
-
|
|
170
|
-
const LinkIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M447.37-274.02H280q-85.66 0-145.82-60.16-60.16-60.15-60.16-145.75 0-85.59 60.16-145.94 60.16-60.35 145.82-60.35h167.37v68.37H280.1q-57.66 0-97.8 40.05-40.15 40.05-40.15 97.56 0 57.52 40.15 97.81 40.14 40.28 97.8 40.28h167.27v68.13ZM320.93-448.57v-62.86h318.14v62.86H320.93Zm191.7 174.55v-68.13H679.9q57.66 0 97.8-40.05 40.15-40.05 40.15-97.56 0-57.52-40.15-97.81-40.14-40.28-97.8-40.28H512.63v-68.37H680q85.58 0 145.9 60.33 60.32 60.33 60.32 145.93 0 85.59-60.32 145.76-60.32 60.18-145.9 60.18H512.63Z"/></svg>`;
|
|
171
|
-
|
|
172
|
-
const LocationSearchingIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M447.37-34.26v-75Q309.89-123.5 217.58-215.82q-92.32-92.31-106.32-229.55h-75v-65.26h75q14.24-137.48 106.56-229.79 92.31-92.32 229.55-106.32v-75h65.26v75q137.24 14 229.55 106.32 92.32 92.31 106.56 229.79h75v65.26h-75q-14 137.24-106.32 229.55-92.31 92.32-229.79 106.56v75h-65.26Zm32.59-141.89q124.32 0 213.11-88.74 88.78-88.75 88.78-213.07t-88.74-213.11q-88.75-88.78-213.07-88.78t-213.11 88.74q-88.78 88.75-88.78 213.07t88.74 213.11q88.75 88.78 213.07 88.78Z"/></svg>`;
|
|
173
|
-
|
|
174
|
-
const MyLocationIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M447.37-36.26v-75Q309.89-125.5 217.58-217.82q-92.32-92.31-106.32-229.55h-75v-65.26h75q14.24-137.48 106.56-229.79 92.31-92.32 229.55-106.32v-75h65.26v75q137.24 14 229.55 106.32 92.32 92.31 106.56 229.79h75v65.26h-75q-14 137.24-106.32 229.55-92.31 92.32-229.79 106.56v75h-65.26Zm32.59-141.89q124.32 0 213.11-88.74 88.78-88.75 88.78-213.07t-88.74-213.11q-88.75-88.78-213.07-88.78t-213.11 88.74q-88.78 88.75-88.78 213.07t88.74 213.11q88.75 88.78 213.07 88.78ZM480-330q-63 0-106.5-43.5T330-480q0-63 43.5-106.5T480-630q63 0 106.5 43.5T630-480q0 63-43.5 106.5T480-330Zm-.09-65.5q35.7 0 60.14-24.36 24.45-24.36 24.45-60.05 0-35.7-24.36-60.14-24.36-24.45-60.05-24.45-35.7 0-60.14 24.36-24.45 24.36-24.45 60.05 0 35.7 24.36 60.14 24.36 24.45 60.05 24.45ZM480-480Z"/></svg>`;
|
|
175
|
-
|
|
176
|
-
const MyLocationFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M447.37-36.26v-75Q309.89-125.5 217.58-217.82q-92.32-92.31-106.32-229.55h-75v-65.26h75q14.24-137.48 106.56-229.79 92.31-92.32 229.55-106.32v-75h65.26v75q137.24 14 229.55 106.32 92.32 92.31 106.56 229.79h75v65.26h-75q-14 137.24-106.32 229.55-92.31 92.32-229.79 106.56v75h-65.26Zm32.59-141.89q124.32 0 213.11-88.74 88.78-88.75 88.78-213.07t-88.74-213.11q-88.75-88.78-213.07-88.78t-213.11 88.74q-88.78 88.75-88.78 213.07t88.74 213.11q88.75 88.78 213.07 88.78ZM480-330q-63 0-106.5-43.5T330-480q0-63 43.5-106.5T480-630q63 0 106.5 43.5T630-480q0 63-43.5 106.5T480-330Z"/></svg>`;
|
|
177
|
-
|
|
178
|
-
const LocationOnIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M480.13-488.33q29.83 0 50.8-20.98 20.98-20.99 20.98-50.82 0-29.83-21.03-50.8-21.04-20.98-50.94-20.98t-50.76 21.03q-20.85 21.04-20.85 50.94t20.98 50.76q20.99 20.85 50.82 20.85ZM480-163.78q131.8-119.57 194.83-215.8 63.02-96.22 63.02-173.14 0-116.53-74.66-190.83-74.66-74.3-183.15-74.3-108.5 0-183.19 74.3-74.7 74.3-74.7 190.83 0 76.92 64.52 173.02Q351.2-283.59 480-163.78Zm0 89.76Q316.13-212.7 235.08-330.67q-81.06-117.98-81.06-222.05 0-152.32 98.3-242.91 98.31-90.59 227.68-90.59 129.27 0 227.74 90.59 98.48 90.59 98.48 242.91 0 104.07-81.18 222.05Q643.87-212.7 480-74.02ZM480-560Z"/></svg>`;
|
|
179
|
-
|
|
180
|
-
const LocationOnFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M480.13-488.33q29.83 0 50.8-20.98 20.98-20.99 20.98-50.82 0-29.83-21.03-50.8-21.04-20.98-50.94-20.98t-50.76 21.03q-20.85 21.04-20.85 50.94t20.98 50.76q20.99 20.85 50.82 20.85ZM480-74.02Q316.13-212.7 235.08-330.67q-81.06-117.98-81.06-222.05 0-152.32 98.3-242.91 98.31-90.59 227.68-90.59 129.27 0 227.74 90.59 98.48 90.59 98.48 242.91 0 104.07-81.18 222.05Q643.87-212.7 480-74.02Z"/></svg>`;
|
|
181
|
-
|
|
182
|
-
const ExploreIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m304.43-304.43 270.48-79.66 79.66-270.48-270.48 79.66-79.66 270.48Zm175.28-139.16q-15.04 0-25.58-10.83-10.54-10.84-10.54-25.87 0-15.04 10.83-25.58 10.84-10.54 25.87-10.54 15.04 0 25.58 10.83 10.54 10.84 10.54 25.87 0 15.04-10.83 25.58-10.84 10.54-25.87 10.54Zm.59 369.57q-84.2 0-158.04-31.88-73.84-31.88-129.16-87.2-55.32-55.32-87.2-129.2-31.88-73.88-31.88-158.17 0-84.28 31.88-158.2 31.88-73.91 87.16-128.74 55.28-54.84 129.18-86.82 73.9-31.99 158.21-31.99 84.3 0 158.25 31.97 73.94 31.97 128.75 86.77 54.82 54.8 86.79 128.88 31.98 74.08 31.98 158.33 0 84.24-31.99 158.07-31.98 73.84-86.82 128.95-54.83 55.1-128.87 87.17Q564.5-74.02 480.3-74.02Zm.14-68.13q141.08 0 239.24-98.61 98.17-98.61 98.17-239.68 0-141.08-98.12-239.24-98.12-98.17-239.2-98.17-141.08 0-239.73 98.12-98.65 98.12-98.65 239.2 0 141.08 98.61 239.73 98.61 98.65 239.68 98.65ZM480-480Z"/></svg>`;
|
|
183
|
-
|
|
184
|
-
const ExploreFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m304.43-304.43 270.48-79.66 79.66-270.48-270.48 79.66-79.66 270.48Zm175.28-139.16q-15.04 0-25.58-10.83-10.54-10.84-10.54-25.87 0-15.04 10.83-25.58 10.84-10.54 25.87-10.54 15.04 0 25.58 10.83 10.54 10.84 10.54 25.87 0 15.04-10.83 25.58-10.84 10.54-25.87 10.54Zm.59 369.57q-84.2 0-158.04-31.88-73.84-31.88-129.16-87.2-55.32-55.32-87.2-129.2-31.88-73.88-31.88-158.17 0-84.28 31.88-158.2 31.88-73.91 87.16-128.74 55.28-54.84 129.18-86.82 73.9-31.99 158.21-31.99 84.3 0 158.25 31.97 73.94 31.97 128.75 86.77 54.82 54.8 86.79 128.88 31.98 74.08 31.98 158.33 0 84.24-31.99 158.07-31.98 73.84-86.82 128.95-54.83 55.1-128.87 87.17Q564.5-74.02 480.3-74.02Z"/></svg>`;
|
|
185
|
-
|
|
186
|
-
const FavoriteIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m479.76-112.87-45.06-40.59q-106.49-97.83-175.96-168.75-69.48-70.92-110.72-126.9-41.24-55.98-57.74-101.57-16.5-45.6-16.5-92.34 0-92.8 62.21-155 62.22-62.2 153.77-62.2 56.83 0 105.18 26.29 48.34 26.28 84.82 76.32 42.48-53.04 89.25-77.82 46.77-24.79 100.75-24.79 91.96 0 154.21 62.21 62.25 62.2 62.25 155.01 0 46.71-16.5 92.19t-57.74 101.46q-41.24 55.98-110.8 127.04-69.57 71.07-176.11 168.85l-45.31 40.59Zm-.12-89.76q101.12-93 166.26-159.14 65.14-66.14 103.4-115.78 38.27-49.65 53.53-88.46 15.26-38.81 15.26-76.84 0-65.19-41.49-107.22-41.49-42.02-106.5-42.02-50.92 0-94.41 31.62-43.49 31.62-70.49 88.38h-51.63q-25.94-56-69.64-88-43.69-32-94.35-32-64.69 0-106.06 41.87-41.37 41.87-41.37 107.54 0 38.46 15.37 77.74 15.36 39.28 53.64 89.39 38.27 50.12 103.68 115.76 65.4 65.64 164.8 157.16Zm.6-294.85Z"/></svg>`;
|
|
187
|
-
|
|
188
|
-
const FavoriteFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m479.76-112.87-45.06-40.59q-106.72-97.71-176.08-168.69-69.36-70.98-110.6-126.96-41.24-55.98-57.74-101.57-16.5-45.6-16.5-92.32 0-92.63 62.18-154.92 62.17-62.3 153.8-62.3 56.76 0 105.14 26.29 48.38 26.28 84.86 76.32 42.48-53.04 89.24-77.82 46.76-24.79 100.76-24.79 91.87 0 154.16 62.3 62.3 62.29 62.3 154.92 0 46.72-16.5 92.2-16.5 45.47-57.74 101.45-41.24 55.98-110.72 127.08-69.48 71.1-176.19 168.81l-45.31 40.59Z"/></svg>`;
|
|
189
|
-
|
|
190
|
-
const HelpIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M483.52-247q16.48 0 28.2-11.72 11.71-11.71 11.71-28.35 0-16.63-11.71-28.19-11.72-11.57-28.32-11.57t-28.19 11.55q-11.6 11.54-11.6 28.33 0 16.52 11.63 28.23Q466.87-247 483.52-247Zm-36.91-146h62.59q0-25.52 6.5-47.02 6.5-21.5 39.78-49.02 30.52-25.05 43.4-50.34 12.88-25.29 12.88-55.69 0-53.69-34.09-86.05t-91.19-32.36q-49.72 0-88.06 25.46-38.33 25.45-55.81 69.45l56.82 21.4q11.24-28.24 32.88-43.62 21.64-15.38 50.21-15.38 31.73 0 51.83 17.58 20.11 17.58 20.11 45.47 0 21.12-12.64 40.38-12.65 19.26-36.45 39.07-29.52 25.52-44.14 51.75-14.62 26.24-14.62 68.92Zm33.42 318.98q-83.46 0-157.54-31.88-74.07-31.88-129.39-87.2-55.32-55.32-87.2-129.36-31.88-74.04-31.88-157.51 0-84.46 31.88-158.54 31.88-74.07 87.16-128.9 55.28-54.84 129.34-86.82 74.06-31.99 157.55-31.99 84.48 0 158.59 31.97 74.1 31.97 128.91 86.77 54.82 54.8 86.79 128.88 31.98 74.08 31.98 158.6 0 83.5-31.99 157.57-31.98 74.07-86.82 129.36-54.83 55.29-128.87 87.17-74.04 31.88-158.51 31.88Zm-.03-68.13q141.04 0 239.45-98.75 98.4-98.76 98.4-239.1 0-141.04-98.4-239.45-98.41-98.4-239.57-98.4-140.16 0-238.95 98.4-98.78 98.41-98.78 239.57 0 140.16 98.75 238.95 98.76 98.78 239.1 98.78ZM480-480Z"/></svg>`;
|
|
191
|
-
|
|
192
|
-
const HelpFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M483.52-247q16.48 0 28.2-11.72 11.71-11.71 11.71-28.35 0-16.63-11.71-28.19-11.72-11.57-28.32-11.57t-28.19 11.55q-11.6 11.54-11.6 28.33 0 16.52 11.63 28.23Q466.87-247 483.52-247Zm-36.91-146h62.59q0-25.52 6.5-47.02 6.5-21.5 39.78-49.02 30.52-25.05 43.4-50.34 12.88-25.29 12.88-55.69 0-53.69-34.09-86.05t-91.19-32.36q-49.72 0-88.06 25.46-38.33 25.45-55.81 69.45l56.82 21.4q11.24-28.24 32.88-43.62 21.64-15.38 50.21-15.38 31.73 0 51.83 17.58 20.11 17.58 20.11 45.47 0 21.12-12.64 40.38-12.65 19.26-36.45 39.07-29.52 25.52-44.14 51.75-14.62 26.24-14.62 68.92Zm33.42 318.98q-83.46 0-157.54-31.88-74.07-31.88-129.39-87.2-55.32-55.32-87.2-129.36-31.88-74.04-31.88-157.51 0-84.46 31.88-158.54 31.88-74.07 87.16-128.9 55.28-54.84 129.34-86.82 74.06-31.99 157.55-31.99 84.48 0 158.59 31.97 74.1 31.97 128.91 86.77 54.82 54.8 86.79 128.88 31.98 74.08 31.98 158.6 0 83.5-31.99 157.57-31.98 74.07-86.82 129.36-54.83 55.29-128.87 87.17-74.04 31.88-158.51 31.88Z"/></svg>`;
|
|
193
|
-
|
|
194
|
-
const InfoIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M450.37-277.37h65.26V-520h-65.26v242.63ZM480-590.41q15.55 0 26.07-10.23 10.52-10.24 10.52-25.36 0-16.24-10.52-26.92-10.51-10.67-26.05-10.67-15.81 0-26.21 10.67-10.4 10.68-10.4 26.8 0 15.27 10.52 25.49 10.52 10.22 26.07 10.22Zm.3 516.39q-84.2 0-158.04-31.88-73.84-31.88-129.16-87.2-55.32-55.32-87.2-129.2-31.88-73.88-31.88-158.17 0-84.28 31.88-158.2 31.88-73.91 87.16-128.74 55.28-54.84 129.18-86.82 73.9-31.99 158.21-31.99 84.3 0 158.25 31.97 73.94 31.97 128.75 86.77 54.82 54.8 86.79 128.88 31.98 74.08 31.98 158.33 0 84.24-31.99 158.07-31.98 73.84-86.82 128.95-54.83 55.1-128.87 87.17Q564.5-74.02 480.3-74.02Zm.2-68.13q140.54 0 238.95-98.75 98.4-98.76 98.4-239.6 0-140.54-98.22-238.95-98.21-98.4-239.75-98.4-140.16 0-238.95 98.22-98.78 98.21-98.78 239.75 0 140.16 98.75 238.95 98.76 98.78 239.6 98.78ZM480-480Z"/></svg>`;
|
|
195
|
-
|
|
196
|
-
const InfoFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M450.37-277.37h65.26V-520h-65.26v242.63ZM480-590.41q15.55 0 26.07-10.23 10.52-10.24 10.52-25.36 0-16.24-10.52-26.92-10.51-10.67-26.05-10.67-15.81 0-26.21 10.67-10.4 10.68-10.4 26.8 0 15.27 10.52 25.49 10.52 10.22 26.07 10.22Zm.3 516.39q-84.2 0-158.04-31.88-73.84-31.88-129.16-87.2-55.32-55.32-87.2-129.2-31.88-73.88-31.88-158.17 0-84.28 31.88-158.2 31.88-73.91 87.16-128.74 55.28-54.84 129.18-86.82 73.9-31.99 158.21-31.99 84.3 0 158.25 31.97 73.94 31.97 128.75 86.77 54.82 54.8 86.79 128.88 31.98 74.08 31.98 158.33 0 84.24-31.99 158.07-31.98 73.84-86.82 128.95-54.83 55.1-128.87 87.17Q564.5-74.02 480.3-74.02Z"/></svg>`;
|
|
197
|
-
|
|
198
|
-
const WarningIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M34.74-116.89 480-886.22l445.26 769.33H34.74Zm113.8-65.74h662.92L480-754.98 148.54-182.63Zm335.64-54.85q12.96 0 21.87-9.08 8.91-9.09 8.91-22.05t-9.09-21.75q-9.08-8.79-22.05-8.79-12.96 0-21.87 8.96-8.91 8.97-8.91 21.93 0 12.96 9.09 21.87 9.08 8.91 22.05 8.91ZM454-348h60v-222.09h-60V-348Zm26-120.8Z"/></svg>`;
|
|
199
|
-
|
|
200
|
-
const WarningFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M34.74-116.89 480-886.22l445.26 769.33H34.74Zm449.44-120.59q12.96 0 21.87-9.08 8.91-9.09 8.91-22.05t-9.09-21.75q-9.08-8.79-22.05-8.79-12.96 0-21.87 8.96-8.91 8.97-8.91 21.93 0 12.96 9.09 21.87 9.08 8.91 22.05 8.91ZM454-348h60v-222.09h-60V-348Z"/></svg>`;
|
|
201
|
-
|
|
202
|
-
const CheckIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M378-240.26 148.26-470l48.98-48.98L378-338.22l383.76-383.76L810.74-673 378-240.26Z"/></svg>`;
|
|
203
|
-
|
|
204
|
-
const CheckCircleIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m420.52-294.41 285.63-285.63-50.78-50.03-234.85 234.85-117.85-117.85-49.78 50.03 167.63 168.63Zm59.51 220.39q-83.46 0-157.54-31.88-74.07-31.88-129.39-87.2-55.32-55.32-87.2-129.36-31.88-74.04-31.88-157.51 0-84.46 31.88-158.54 31.88-74.07 87.16-128.9 55.28-54.84 129.34-86.82 74.06-31.99 157.55-31.99 84.48 0 158.59 31.97 74.1 31.97 128.91 86.77 54.82 54.8 86.79 128.88 31.98 74.08 31.98 158.6 0 83.5-31.99 157.57-31.98 74.07-86.82 129.36-54.83 55.29-128.87 87.17-74.04 31.88-158.51 31.88Zm-.03-68.13q141.04 0 239.45-98.75 98.4-98.76 98.4-239.1 0-141.04-98.4-239.45-98.41-98.4-239.57-98.4-140.16 0-238.95 98.4-98.78 98.41-98.78 239.57 0 140.16 98.75 238.95 98.76 98.78 239.1 98.78ZM480-480Z"/></svg>`;
|
|
205
|
-
|
|
206
|
-
const CheckCircleFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m420.52-294.41 285.63-285.63-50.78-50.03-234.85 234.85-117.85-117.85-49.78 50.03 167.63 168.63Zm59.51 220.39q-83.46 0-157.54-31.88-74.07-31.88-129.39-87.2-55.32-55.32-87.2-129.36-31.88-74.04-31.88-157.51 0-84.46 31.88-158.54 31.88-74.07 87.16-128.9 55.28-54.84 129.34-86.82 74.06-31.99 157.55-31.99 84.48 0 158.59 31.97 74.1 31.97 128.91 86.77 54.82 54.8 86.79 128.88 31.98 74.08 31.98 158.6 0 83.5-31.99 157.57-31.98 74.07-86.82 129.36-54.83 55.29-128.87 87.17-74.04 31.88-158.51 31.88Z"/></svg>`;
|
|
207
|
-
|
|
208
|
-
const NotificationsIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M154.02-194.02v-68.13h77.85v-298.02q0-86.08 50.34-154.77 50.33-68.69 133.72-86.49v-84.79h128.14v84.81q83.39 17.54 133.84 86.31 50.46 68.77 50.46 154.93v298.02h77.85v68.13h-652.2ZM480-501.04Zm.12 429.17q-33.83 0-57.93-24.13t-24.1-58.02h164.06q0 33.95-24.15 58.05-24.15 24.1-57.88 24.1ZM300-262.15h360v-298.02q0-74.76-52.5-127.38Q555-740.17 480-740.17t-127.5 52.62Q300-634.93 300-560.17v298.02Z"/></svg>`;
|
|
209
|
-
|
|
210
|
-
const NotificationsFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M154.02-194.02v-68.13h77.85v-298.02q0-86.08 50.34-154.77 50.33-68.69 133.72-86.49v-84.79h128.14v84.81q83.39 17.54 133.84 86.31 50.46 68.77 50.46 154.93v298.02h77.85v68.13h-652.2Zm326.1 122.15q-33.83 0-57.93-24.13t-24.1-58.02h164.06q0 33.95-24.15 58.05-24.15 24.1-57.88 24.1Z"/></svg>`;
|
|
211
|
-
|
|
212
|
-
const NotificationsOffIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M154.02-194.02v-68.13h77.85v-298.02q0-35.46 9.09-69.58 9.08-34.12 27.5-65.03l50.97 51.21q-9.71 19.48-14.57 40.65-4.86 21.17-4.86 42.75v298.02h313.02L70.46-805.96l43.91-43.67 734.37 735.37-43.91 43.91-123.2-123.67H154.02Zm574.35-130.44L660-392.83v-167.34q0-74.76-52.5-127.38Q555-740.17 480-740.17q-33.94 0-65.06 12.16-31.11 12.16-54.16 35.97l-52.45-51.46q22.76-22.04 49.54-36.68 26.78-14.65 58.06-21.12v-84.92h128.14v84.87q83.39 17.24 133.84 86.13 50.46 68.89 50.46 155.05v235.71Zm-271.24-94.82Zm22.99 347.41q-33.83 0-57.93-24.13t-24.1-58.02h164.06q0 33.95-24.15 58.05-24.15 24.1-57.88 24.1Zm30.27-470.56Z"/></svg>`;
|
|
213
|
-
|
|
214
|
-
const NotificationsOffFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M154.02-194.02v-68.13h77.85v-298.02q0-35.4 8.84-69.55 8.83-34.15 27.75-65.06l27.69 134.61h20.09L70.46-805.96l43.91-43.67 734.37 735.37-43.91 43.91-123.2-123.67H154.02Zm574.35-130.44L308.33-743.5q22.76-22.04 49.54-36.68 26.78-14.65 58.06-21.17v-84.87h128.14v84.87q83.39 17.24 133.84 86.13 50.46 68.89 50.46 155.05v235.71ZM480.24-71.87q-33.96 0-58.06-24.1-24.09-24.1-24.09-58.05h164.06q0 33.95-24.1 58.05-24.09 24.1-57.81 24.1Z"/></svg>`;
|
|
215
|
-
|
|
216
|
-
const NotificationsUnreadIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M480.12-71.87q-33.83 0-57.93-24.13t-24.1-58.02h164.06q0 33.95-24.15 58.05-24.15 24.1-57.88 24.1ZM480-501.04ZM154.02-194.02v-68.13h77.85v-298.02q0-86.08 50.34-154.77 50.33-68.69 133.72-86.49v-84.79h126.18v46.42q-15.11 22.63-23.07 48.71-7.95 26.09-8.52 53.92-7.82-2-14.93-2.5-7.11-.5-15.59-.5-75 0-127.5 52.62T300-560.17v298.02h360V-542.8q17.15 4.19 34.18 5.19 17.04 1 34.19-1.72v277.18h77.85v68.13h-652.2Zm549.89-423.83q-47.61 0-80.74-33.33-33.13-33.32-33.13-80.94 0-47.61 33.28-80.85 33.28-33.25 80.82-33.25 47.54 0 80.79 33.38 33.24 33.37 33.24 81.04 0 47.58-33.32 80.77-33.33 33.18-80.94 33.18Z"/></svg>`;
|
|
217
|
-
|
|
218
|
-
const NotificationsUnreadFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M480.12-71.87q-33.83 0-57.93-24.13t-24.1-58.02h164.06q0 33.95-24.15 58.05-24.15 24.1-57.88 24.1Zm-326.1-122.15v-68.13h77.85v-298.02q0-86.08 50.34-154.77 50.33-68.69 133.72-86.49v-84.79h126.18v46.42q-15.91 24.46-23.99 51.76-8.08 27.3-8.08 56.13 0 70.91 43.76 123.49 43.76 52.57 109.55 66.57 16.19 3 32.39 3.88 16.19.88 32.63-1.36v277.18h77.85v68.13h-652.2Zm549.89-423.83q-47.61 0-80.74-33.33-33.13-33.32-33.13-80.94 0-47.61 33.28-80.85 33.28-33.25 80.82-33.25 47.54 0 80.79 33.38 33.24 33.37 33.24 81.04 0 47.58-33.32 80.77-33.33 33.18-80.94 33.18Z"/></svg>`;
|
|
219
|
-
|
|
220
|
-
const NotificationsActiveIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M154.02-194.02v-68.13h77.85v-298.02q0-86.08 50.34-154.77 50.33-68.69 133.72-86.49v-84.79h128.14v84.81q83.39 17.54 133.84 86.31 50.46 68.77 50.46 154.93v298.02h77.85v68.13h-652.2ZM480-501.04Zm.12 429.17q-33.83 0-57.93-24.13t-24.1-58.02h164.06q0 33.95-24.15 58.05-24.15 24.1-57.88 24.1ZM300-262.15h360v-298.02q0-74.76-52.5-127.38Q555-740.17 480-740.17t-127.5 52.62Q300-634.93 300-560.17v298.02ZM107.56-561.93q0-93.12 41.22-170.88Q190-810.57 259.59-862.22l39.82 53.26q-57.19 42.72-91.29 106.68-34.1 63.97-34.1 140.35h-66.46Zm678.66 0q0-76.44-34.26-140.4-34.27-63.97-91.37-106.63l40.06-53.26q69.3 51.76 110.66 129.43 41.36 77.66 41.36 170.86h-66.45Z"/></svg>`;
|
|
221
|
-
|
|
222
|
-
const NotificationsActiveFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M154.02-194.02v-68.13h77.85v-298.02q0-86.08 50.34-154.77 50.33-68.69 133.72-86.49v-84.79h128.14v84.81q83.39 17.54 133.84 86.31 50.46 68.77 50.46 154.93v298.02h77.85v68.13h-652.2Zm326.1 122.15q-33.83 0-57.93-24.13t-24.1-58.02h164.06q0 33.95-24.15 58.05-24.15 24.1-57.88 24.1ZM107.56-561.93q0-93.12 41.22-170.88Q190-810.57 259.59-862.22l39.82 53.26q-57.19 42.72-91.29 106.68-34.1 63.97-34.1 140.35h-66.46Zm678.66 0q0-76.44-34.26-140.4-34.27-63.97-91.37-106.63l40.06-53.26q69.3 51.76 110.66 129.43 41.36 77.66 41.36 170.86h-66.45Z"/></svg>`;
|
|
223
|
-
|
|
224
|
-
const SentimentSatisfiedIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M624.57-531.57q22.97 0 39.2-16.22Q680-564.02 680-587t-16.23-39.21q-16.23-16.22-39.2-16.22-22.98 0-39.09 16.14-16.11 16.14-16.11 39.21 0 23.06 16.1 39.29 16.1 16.22 39.1 16.22Zm-289.14 0q22.98 0 39.09-16.14 16.11-16.14 16.11-39.21 0-23.06-16.1-39.29-16.1-16.22-39.1-16.22-22.97 0-39.2 16.22Q280-609.98 280-587t16.23 39.21q16.23 16.22 39.2 16.22ZM480-261q66 0 121.5-35.5T682-393h-55.11q-22.52 38.8-61.83 59.59-39.31 20.78-84.59 20.78-45.27 0-84.94-20.28-39.66-20.29-61.18-60.09H278q26 61 81 96.5T480-261Zm.01 186.98q-84.21 0-158.28-31.86-74.08-31.86-129.03-86.82-54.96-54.95-86.82-129.02-31.86-74.06-31.86-158.27 0-84.21 31.86-158.28 31.86-74.08 86.78-129.05 54.92-54.97 129-86.93 74.08-31.97 158.31-31.97t158.33 31.95q74.1 31.95 129.06 86.88 54.95 54.94 86.9 129.05 31.96 74.1 31.96 158.36 0 84.24-31.97 158.31-31.96 74.08-86.93 129-54.97 54.93-129.04 86.79-74.06 31.86-158.27 31.86ZM480-480Zm0 337.85q141.42 0 239.63-98.22 98.22-98.21 98.22-239.63 0-141.42-98.22-239.63-98.21-98.22-239.63-98.22-141.42 0-239.63 98.22-98.22 98.21-98.22 239.63 0 141.42 98.22 239.63 98.21 98.22 239.63 98.22Z"/></svg>`;
|
|
225
|
-
|
|
226
|
-
const SentimentSatisfiedFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M624.57-531.57q22.97 0 39.2-16.22Q680-564.02 680-587t-16.23-39.21q-16.23-16.22-39.2-16.22-22.98 0-39.09 16.14-16.11 16.14-16.11 39.21 0 23.06 16.1 39.29 16.1 16.22 39.1 16.22Zm-289.14 0q22.98 0 39.09-16.14 16.11-16.14 16.11-39.21 0-23.06-16.1-39.29-16.1-16.22-39.1-16.22-22.97 0-39.2 16.22Q280-609.98 280-587t16.23 39.21q16.23 16.22 39.2 16.22ZM480-261q66 0 121.5-35.5T682-393h-55.11q-22.52 38.8-61.83 59.59-39.31 20.78-84.59 20.78-45.27 0-84.94-20.28-39.66-20.29-61.18-60.09H278q26 61 81 96.5T480-261Zm.01 186.98q-84.21 0-158.28-31.86-74.08-31.86-129.03-86.82-54.96-54.95-86.82-129.02-31.86-74.06-31.86-158.27 0-84.21 31.86-158.28 31.86-74.08 86.78-129.05 54.92-54.97 129-86.93 74.08-31.97 158.31-31.97t158.33 31.95q74.1 31.95 129.06 86.88 54.95 54.94 86.9 129.05 31.96 74.1 31.96 158.36 0 84.24-31.97 158.31-31.96 74.08-86.93 129-54.97 54.93-129.04 86.79-74.06 31.86-158.27 31.86Z"/></svg>`;
|
|
227
|
-
|
|
228
|
-
const SentimentNeutralIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M624.57-531.57q22.97 0 39.2-16.22Q680-564.02 680-587t-16.23-39.21q-16.23-16.22-39.2-16.22-22.98 0-39.09 16.14-16.11 16.14-16.11 39.21 0 23.06 16.1 39.29 16.1 16.22 39.1 16.22Zm-289.14 0q22.98 0 39.09-16.14 16.11-16.14 16.11-39.21 0-23.06-16.1-39.29-16.1-16.22-39.1-16.22-22.97 0-39.2 16.22Q280-609.98 280-587t16.23 39.21q16.23 16.22 39.2 16.22Zm18.57 194h253v-51.86H354v51.86ZM480.01-74.02q-84.21 0-158.28-31.86-74.08-31.86-129.03-86.82-54.96-54.95-86.82-129.02-31.86-74.06-31.86-158.27 0-84.21 31.86-158.28 31.86-74.08 86.78-129.05 54.92-54.97 129-86.93 74.08-31.97 158.31-31.97t158.33 31.95q74.1 31.95 129.06 86.88 54.95 54.94 86.9 129.05 31.96 74.1 31.96 158.36 0 84.24-31.97 158.31-31.96 74.08-86.93 129-54.97 54.93-129.04 86.79-74.06 31.86-158.27 31.86ZM480-480Zm0 337.85q141.42 0 239.63-98.22 98.22-98.21 98.22-239.63 0-141.42-98.22-239.63-98.21-98.22-239.63-98.22-141.42 0-239.63 98.22-98.22 98.21-98.22 239.63 0 141.42 98.22 239.63 98.21 98.22 239.63 98.22Z"/></svg>`;
|
|
229
|
-
|
|
230
|
-
const SentimentNeutralFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M624.57-531.57q22.97 0 39.2-16.22Q680-564.02 680-587t-16.23-39.21q-16.23-16.22-39.2-16.22-22.98 0-39.09 16.14-16.11 16.14-16.11 39.21 0 23.06 16.1 39.29 16.1 16.22 39.1 16.22Zm-289.14 0q22.98 0 39.09-16.14 16.11-16.14 16.11-39.21 0-23.06-16.1-39.29-16.1-16.22-39.1-16.22-22.97 0-39.2 16.22Q280-609.98 280-587t16.23 39.21q16.23 16.22 39.2 16.22Zm18.57 194h253v-51.86H354v51.86ZM480.01-74.02q-84.21 0-158.28-31.86-74.08-31.86-129.03-86.82-54.96-54.95-86.82-129.02-31.86-74.06-31.86-158.27 0-84.21 31.86-158.28 31.86-74.08 86.78-129.05 54.92-54.97 129-86.93 74.08-31.97 158.31-31.97t158.33 31.95q74.1 31.95 129.06 86.88 54.95 54.94 86.9 129.05 31.96 74.1 31.96 158.36 0 84.24-31.97 158.31-31.96 74.08-86.93 129-54.97 54.93-129.04 86.79-74.06 31.86-158.27 31.86Z"/></svg>`;
|
|
231
|
-
|
|
232
|
-
const SentimentDissatisfiedIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M624.57-531.57q22.97 0 39.2-16.22Q680-564.02 680-587t-16.23-39.21q-16.23-16.22-39.2-16.22-22.98 0-39.09 16.14-16.11 16.14-16.11 39.21 0 23.06 16.1 39.29 16.1 16.22 39.1 16.22Zm-289.14 0q22.98 0 39.09-16.14 16.11-16.14 16.11-39.21 0-23.06-16.1-39.29-16.1-16.22-39.1-16.22-22.97 0-39.2 16.22Q280-609.98 280-587t16.23 39.21q16.23 16.22 39.2 16.22ZM480.17-417Q413-417 358.5-379.5T278-280h56.35q21.52-40.8 60.95-63.09 39.42-22.28 85.46-22.28 46.04 0 84.83 22.78 38.78 22.79 61.3 62.59H682q-25-63-79.83-100-54.82-37-122-37Zm-.16 342.98q-84.21 0-158.28-31.86-74.08-31.86-129.03-86.82-54.96-54.95-86.82-129.02-31.86-74.06-31.86-158.27 0-84.21 31.86-158.28 31.86-74.08 86.78-129.05 54.92-54.97 129-86.93 74.08-31.97 158.31-31.97t158.33 31.95q74.1 31.95 129.06 86.88 54.95 54.94 86.9 129.05 31.96 74.1 31.96 158.36 0 84.24-31.97 158.31-31.96 74.08-86.93 129-54.97 54.93-129.04 86.79-74.06 31.86-158.27 31.86ZM480-480Zm0 337.85q141.42 0 239.63-98.22 98.22-98.21 98.22-239.63 0-141.42-98.22-239.63-98.21-98.22-239.63-98.22-141.42 0-239.63 98.22-98.22 98.21-98.22 239.63 0 141.42 98.22 239.63 98.21 98.22 239.63 98.22Z"/></svg>`;
|
|
233
|
-
|
|
234
|
-
const SentimentDissatisfiedFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M624.57-531.57q22.97 0 39.2-16.22Q680-564.02 680-587t-16.23-39.21q-16.23-16.22-39.2-16.22-22.98 0-39.09 16.14-16.11 16.14-16.11 39.21 0 23.06 16.1 39.29 16.1 16.22 39.1 16.22Zm-289.14 0q22.98 0 39.09-16.14 16.11-16.14 16.11-39.21 0-23.06-16.1-39.29-16.1-16.22-39.1-16.22-22.97 0-39.2 16.22Q280-609.98 280-587t16.23 39.21q16.23 16.22 39.2 16.22ZM480.17-417Q413-417 358.5-379.5T278-280h56.35q21.52-40.8 60.95-63.09 39.42-22.28 85.46-22.28 46.04 0 84.83 22.78 38.78 22.79 61.3 62.59H682q-25-63-79.83-100-54.82-37-122-37Zm-.16 342.98q-84.21 0-158.28-31.86-74.08-31.86-129.03-86.82-54.96-54.95-86.82-129.02-31.86-74.06-31.86-158.27 0-84.21 31.86-158.28 31.86-74.08 86.78-129.05 54.92-54.97 129-86.93 74.08-31.97 158.31-31.97t158.33 31.95q74.1 31.95 129.06 86.88 54.95 54.94 86.9 129.05 31.96 74.1 31.96 158.36 0 84.24-31.97 158.31-31.96 74.08-86.93 129-54.97 54.93-129.04 86.79-74.06 31.86-158.27 31.86Z"/></svg>`;
|
|
235
|
-
|
|
236
|
-
const SmartToyIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M141.5-376q-45 0-76-31.21T34.5-483q0-44.58 31.21-75.79Q96.92-590 141.5-590v-188.5H373q0-44.58 31.21-75.79Q435.42-885.5 480-885.5q44.58 0 75.79 31.21Q587-823.08 587-778.5h231.5V-590q44.58 0 75.79 31.21Q925.5-527.58 925.5-483q0 44.58-31.21 75.79Q863.08-376 818.5-376v261.5h-677V-376Zm203.17-101.43q17.24 0 29.1-12.1 11.86-12.09 11.86-29.46 0-17.36-12.09-29.22-12.1-11.86-29.34-11.86-17.24 0-29.22 12.08Q303-535.92 303-518.4q0 17.25 12.21 29.11 12.22 11.86 29.46 11.86Zm271.13 0q17.24 0 29.22-12.1Q657-501.62 657-518.99q0-17.36-12.21-29.22-12.22-11.86-29.46-11.86-17.24 0-29.1 12.08-11.86 12.07-11.86 29.59 0 17.25 12.09 29.11 12.1 11.86 29.34 11.86ZM314.63-285h330.74v-62.63H314.63V-285Zm-105 102.37h540.74v-527.74H209.63v527.74ZM480-447Z"/></svg>`;
|
|
237
|
-
|
|
238
|
-
const SmartToyFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M141.5-376q-45 0-76-31.21T34.5-483q0-44.58 31.21-75.79Q96.92-590 141.5-590v-188.5H373q0-44.58 31.21-75.79Q435.42-885.5 480-885.5q44.58 0 75.79 31.21Q587-823.08 587-778.5h231.5V-590q44.58 0 75.79 31.21Q925.5-527.58 925.5-483q0 44.58-31.21 75.79Q863.08-376 818.5-376v261.5h-677V-376Zm203.17-101.43q17.24 0 29.1-12.1 11.86-12.09 11.86-29.46 0-17.36-12.09-29.22-12.1-11.86-29.34-11.86-17.24 0-29.22 12.08Q303-535.92 303-518.4q0 17.25 12.21 29.11 12.22 11.86 29.46 11.86Zm271.13 0q17.24 0 29.22-12.1Q657-501.62 657-518.99q0-17.36-12.21-29.22-12.22-11.86-29.46-11.86-17.24 0-29.1 12.08-11.86 12.07-11.86 29.59 0 17.25 12.09 29.11 12.1 11.86 29.34 11.86ZM314.63-285h330.74v-62.63H314.63V-285Z"/></svg>`;
|
|
239
|
-
|
|
240
|
-
const StarIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m326.37-249.79 153.64-91.89 153.64 92.9-41.28-173.94L727.5-540.33l-178.17-15.52L480-720.02l-69.33 163.41-178.17 15.28 135.22 117.38-41.35 174.16ZM224.15-107.56l67.39-291.29L65.41-594.78l298.43-25.67L480-895.3l116.16 274.85 298.43 25.67-226.13 195.93 67.63 291.29L480-262.3 224.15-107.56ZM480-474.52Z"/></svg>`;
|
|
241
|
-
|
|
242
|
-
const StarFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="m224.15-107.56 67.39-291.29L65.41-594.78l298.52-25.72L480-895.3l116.07 274.8 298.52 25.72-226.13 195.93 67.63 291.29L480-262.3 224.15-107.56Z"/></svg>`;
|
|
243
|
-
|
|
244
|
-
const PhotoCameraIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M479.44-265.57q73.28 0 122.64-49.3 49.35-49.3 49.35-122.57 0-73.04-49.3-122.02-49.3-48.97-122.57-48.97-73.04 0-122.02 48.92-48.97 48.92-48.97 121.95 0 73.28 48.92 122.64 48.92 49.35 121.95 49.35Zm.06-64.78q-46.07 0-76.11-30.54t-30.04-76.61q0-46.07 30.04-76.23 30.04-30.16 76.11-30.16t76.73 30.16q30.66 30.16 30.66 76.23 0 46.07-30.66 76.61t-76.73 30.54ZM74.02-114.02v-645.2h209.87l75.39-87h241.44l75.63 87h209.87v645.2H74.02Zm68.13-68.13h675.7v-508.7H645.48l-74.91-87H389.91l-75.87 87H142.15v508.7ZM480-437Z"/></svg>`;
|
|
245
|
-
|
|
246
|
-
const PhotoCameraFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M479.94-265.57q72.78 0 122.14-49.3 49.35-49.3 49.35-122.07 0-73.54-49.3-122.52-49.3-48.97-122.07-48.97-73.54 0-122.52 48.92-48.97 48.92-48.97 122.45 0 72.78 48.92 122.14 48.92 49.35 122.45 49.35Zm.06-64.78q-46.57 0-76.61-30.54T373.35-437q0-46.57 30.04-76.73 30.04-30.16 76.61-30.16 45.57 0 76.23 30.16 30.66 30.16 30.66 76.73 0 45.57-30.66 76.11T480-330.35ZM74.02-114.02v-645.2h209.87l75.39-87h241.44l75.63 87h209.87v645.2H74.02Z"/></svg>`;
|
|
247
|
-
|
|
248
|
-
const ChatIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M74.02-74.02v-812.2h812.2v652.2h-652.2l-160 160Zm134-228.13h609.83v-515.7h-675.7v587.57l65.87-71.87Zm-65.87 0v-515.7 515.7ZM240-399h313v-60H240v60Zm0-130h480v-60H240v60Zm0-130h480v-60H240v60Z"/></svg>`;
|
|
249
|
-
|
|
250
|
-
const ChatFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M74.02-74.02v-812.2h812.2v652.2h-652.2l-160 160ZM240-399h313v-60H240v60Zm0-130h480v-60H240v60Zm0-130h480v-60H240v60Z"/></svg>`;
|
|
251
|
-
|
|
252
|
-
const RSSFeedIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M190.41-114.02q-31.67 0-54.03-22.59t-22.36-54.32q0-31.72 22.48-54.2 22.48-22.48 54.04-22.48 31.76 0 54.42 22.52 22.65 22.53 22.65 54.32t-22.68 54.27q-22.67 22.48-54.52 22.48Zm527.48 0q0-125.65-47.07-234.77-47.08-109.12-129.87-192.04-83.04-82.67-192.23-129.75-109.2-47.07-234.7-47.07v-95.74q145.83 0 272.39 54.53 126.55 54.53 222.24 150.21 95.68 95.69 150.21 222.24 54.53 126.56 54.53 272.39h-95.5Zm-269 0q0-70.48-26.04-132.56-26.03-62.07-71.68-109.59-45.47-47.24-106.11-73.98-60.64-26.74-131.04-26.74v-95.5q90.74 0 168.76 34.22 78.02 34.21 136.36 94.21 58.34 60.01 91.92 139.6 33.57 79.59 33.57 170.34h-95.74Z"/></svg>`;
|
|
253
|
-
|
|
254
|
-
const DescriptionIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M319-249.52h322v-62.63H319v62.63Zm0-170h322v-62.63H319v62.63ZM154.02-74.02v-812.2h429.61l222.59 222.66v589.54h-652.2Zm394.83-557.83v-186h-326.7v675.7h515.7v-489.7h-189Zm-326.7-186v186-186 675.7-675.7Z"/></svg>`;
|
|
255
|
-
|
|
256
|
-
const ImageIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M232.89-274.85h495.22L578-476.59l-132 171-93-127-120.11 157.74ZM114.02-114.02v-732.2h732.2v732.2h-732.2Zm68.13-68.13h595.7v-595.7h-595.7v595.7Zm0 0v-595.7 595.7Z"/></svg>`;
|
|
257
|
-
|
|
258
|
-
const ImageFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M232.89-274.85h495.22L578-476.59l-132 171-93-127-120.11 157.74ZM114.02-114.02v-732.2h732.2v732.2h-732.2Z"/></svg>`;
|
|
259
|
-
|
|
260
|
-
const GalleryThumbnailIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M36.41-196.41v-567.18h567.18v567.18H36.41Zm640-320v-247.18h247.18v247.18H676.41Zm66.46-66.46h114.26v-114.26H742.87v114.26Zm-640 320h434.26v-434.26H102.87v434.26ZM160-360h320L375-500l-75 100-55.24-73L160-360Zm516.41 163.59v-247.18h247.18v247.18H676.41Zm66.46-66.46h114.26v-114.26H742.87v114.26Zm-640 0v-434.26 434.26Zm640-320v-114.26 114.26Zm0 320v-114.26 114.26Z"/></svg>`;
|
|
261
|
-
|
|
262
|
-
const PhotoLibraryIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M349.07-381.07h391l-127-171-103 135-68-87-93 123ZM198.09-198.09v-692.19h692.19v692.19H198.09Zm68.13-68.13h555.69v-555.69H266.22v555.69ZM69.72-69.72v-692.19h68.37v623.82h623.82v68.37H69.72Zm196.5-752.19v555.69-555.69Z"/></svg>`;
|
|
263
|
-
|
|
264
|
-
const FiberManualRecordIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M478-478Zm1.97 283.98q-119.45 0-202.7-83.23-83.25-83.24-83.25-202.69t83.23-202.86q83.24-83.42 202.69-83.42t202.86 83.4q83.42 83.4 83.42 202.85 0 119.45-83.4 202.7-83.4 83.25-202.85 83.25Zm.03-68.13q91.28 0 154.57-63.28 63.28-63.28 63.28-154.57 0-91.28-63.28-154.57-63.28-63.28-154.57-63.28-91.28 0-154.57 63.28-63.28 63.28-63.28 154.57 0 91.28 63.28 154.57 63.28 63.28 154.57 63.28Z"/></svg>`;
|
|
265
|
-
|
|
266
|
-
const FiberManualRecordFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M479.99-194.02q-117.46 0-201.72-84.22-84.25-84.22-84.25-201.68 0-117.47 84.22-201.88 84.22-84.42 201.68-84.42 117.47 0 201.88 84.38 84.42 84.38 84.42 201.85 0 117.46-84.38 201.72-84.38 84.25-201.85 84.25Z"/></svg>`;
|
|
267
|
-
|
|
268
|
-
const PauseIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M524.76-189v-582H771v582H524.76ZM189-189v-582h246.24v582H189Zm404.13-68.37h109.5v-445.26h-109.5v445.26Zm-335.76 0h109.5v-445.26h-109.5v445.26Zm0-445.26v445.26-445.26Zm335.76 0v445.26-445.26Z"/></svg>`;
|
|
269
|
-
|
|
270
|
-
const PauseFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M552.13-189v-582h191.5v582h-191.5Zm-335.76 0v-582h191.5v582h-191.5Z"/></svg>`;
|
|
271
|
-
|
|
272
|
-
const PauseCircleIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M367.37-318.57H430v-322.86h-62.63v322.86Zm162.63 0h62.63v-322.86H530v322.86ZM480.03-74.02q-83.46 0-157.54-31.88-74.07-31.88-129.39-87.2-55.32-55.32-87.2-129.36-31.88-74.04-31.88-157.51 0-84.46 31.88-158.54 31.88-74.07 87.16-128.9 55.28-54.84 129.34-86.82 74.06-31.99 157.55-31.99 84.48 0 158.59 31.97 74.1 31.97 128.91 86.77 54.82 54.8 86.79 128.88 31.98 74.08 31.98 158.6 0 83.5-31.99 157.57-31.98 74.07-86.82 129.36-54.83 55.29-128.87 87.17-74.04 31.88-158.51 31.88Zm-.03-68.13q141.04 0 239.45-98.75 98.4-98.76 98.4-239.1 0-141.04-98.4-239.45-98.41-98.4-239.57-98.4-140.16 0-238.95 98.4-98.78 98.41-98.78 239.57 0 140.16 98.75 238.95 98.76 98.78 239.1 98.78ZM480-480Z"/></svg>`;
|
|
273
|
-
|
|
274
|
-
const PauseCircleFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M367.37-318.57H430v-322.86h-62.63v322.86Zm162.63 0h62.63v-322.86H530v322.86ZM480.03-74.02q-83.46 0-157.54-31.88-74.07-31.88-129.39-87.2-55.32-55.32-87.2-129.36-31.88-74.04-31.88-157.51 0-84.46 31.88-158.54 31.88-74.07 87.16-128.9 55.28-54.84 129.34-86.82 74.06-31.99 157.55-31.99 84.48 0 158.59 31.97 74.1 31.97 128.91 86.77 54.82 54.8 86.79 128.88 31.98 74.08 31.98 158.6 0 83.5-31.99 157.57-31.98 74.07-86.82 129.36-54.83 55.29-128.87 87.17-74.04 31.88-158.51 31.88Z"/></svg>`;
|
|
275
|
-
|
|
276
|
-
const StopCircleIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M328.57-328.57h302.86v-302.86H328.57v302.86ZM480.3-74.02q-84.2 0-158.04-31.88-73.84-31.88-129.16-87.2-55.32-55.32-87.2-129.2-31.88-73.88-31.88-158.17 0-84.28 31.88-158.2 31.88-73.91 87.16-128.74 55.28-54.84 129.18-86.82 73.9-31.99 158.21-31.99 84.3 0 158.25 31.97 73.94 31.97 128.75 86.77 54.82 54.8 86.79 128.88 31.98 74.08 31.98 158.33 0 84.24-31.99 158.07-31.98 73.84-86.82 128.95-54.83 55.1-128.87 87.17Q564.5-74.02 480.3-74.02Zm.2-68.13q140.54 0 238.95-98.75 98.4-98.76 98.4-239.6 0-140.54-98.22-238.95-98.21-98.4-239.75-98.4-140.16 0-238.95 98.22-98.78 98.21-98.78 239.75 0 140.16 98.75 238.95 98.76 98.78 239.6 98.78ZM480-480Z"/></svg>`;
|
|
277
|
-
|
|
278
|
-
const StopCircleFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M328.57-328.57h302.86v-302.86H328.57v302.86ZM480.03-74.02q-83.46 0-157.54-31.88-74.07-31.88-129.39-87.2-55.32-55.32-87.2-129.36-31.88-74.04-31.88-157.51 0-84.46 31.88-158.54 31.88-74.07 87.16-128.9 55.28-54.84 129.34-86.82 74.06-31.99 157.55-31.99 84.48 0 158.59 31.97 74.1 31.97 128.91 86.77 54.82 54.8 86.79 128.88 31.98 74.08 31.98 158.6 0 83.5-31.99 157.57-31.98 74.07-86.82 129.36-54.83 55.29-128.87 87.17-74.04 31.88-158.51 31.88Z"/></svg>`;
|
|
279
|
-
|
|
280
|
-
const StopIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M302.15-657.85v355.7-355.7Zm-68.13 423.83v-492.2h492.2v492.2h-492.2Zm68.13-68.13h355.7v-355.7h-355.7v355.7Z"/></svg>`;
|
|
281
|
-
|
|
282
|
-
const StopFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M234.02-234.02v-492.2h492.2v492.2h-492.2Z"/></svg>`;
|
|
283
|
-
|
|
284
|
-
const PlayPauseIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M187.56-324.11v-311.78L419.04-480 187.56-324.11Zm348.37 11.76v-335.3h68.14v335.3h-68.14Zm168.14 0v-335.3h68.37v335.3h-68.37Z"/></svg>`;
|
|
285
|
-
|
|
286
|
-
const PlayArrowIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M314.02-192v-582l457.22 291-457.22 291Zm68.13-291Zm0 166.93L644.93-483 382.15-649.93v333.86Z"/></svg>`;
|
|
287
|
-
|
|
288
|
-
const PlayArrowFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M314.02-192v-582l457.22 291-457.22 291Z"/></svg>`;
|
|
289
|
-
|
|
290
|
-
const SkipPreviousIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M208.76-228.76v-502.48h68.13v502.48h-68.13Zm542.48 0L388.26-480l362.98-251.24v502.48ZM683.11-480Zm0 120.93v-241.86L508.09-480l175.02 120.93Z"/></svg>`;
|
|
291
|
-
|
|
292
|
-
const SkipPreviousFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M208.76-228.76v-502.48h68.13v502.48h-68.13Zm542.48 0L388.26-480l362.98-251.24v502.48Z"/></svg>`;
|
|
293
|
-
|
|
294
|
-
const SkipNextIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M683.11-228.76v-502.48h68.13v502.48h-68.13Zm-474.35 0v-502.48L571.74-480 208.76-228.76ZM276.89-480Zm0 120.93L451.91-480 276.89-600.93v241.86Z"/></svg>`;
|
|
295
|
-
|
|
296
|
-
const SkipNextFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M683.11-228.76v-502.48h68.13v502.48h-68.13Zm-474.35 0v-502.48L571.74-480 208.76-228.76Z"/></svg>`;
|
|
297
|
-
|
|
298
|
-
const FastRewindIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M869.07-228.76 506.09-480l362.98-251.24v502.48Zm-415.16 0L90.93-480l362.98-251.24v502.48ZM385.78-480Zm415.15 0ZM385.78-359.07v-241.86L210.76-480l175.02 120.93Zm415.15 0v-241.86L625.91-480l175.02 120.93Z"/></svg>`;
|
|
299
|
-
|
|
300
|
-
const FastRewindFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M869.07-228.76 506.09-480l362.98-251.24v502.48Zm-415.16 0L90.93-480l362.98-251.24v502.48Z"/></svg>`;
|
|
301
|
-
|
|
302
|
-
const FastForwardIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M88.93-228.76v-502.48L451.91-480 88.93-228.76Zm420.16 0v-502.48L872.07-480 509.09-228.76ZM157.3-480Zm419.92 0ZM157.3-359.07 332.09-480 157.3-600.93v241.86Zm419.92 0L752.48-480 577.22-600.93v241.86Z"/></svg>`;
|
|
303
|
-
|
|
304
|
-
const FastForwardFillIcon = `<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M88.93-228.76v-502.48L451.91-480 88.93-228.76Zm420.16 0v-502.48L872.07-480 509.09-228.76Z"/></svg>`;
|
|
305
|
-
|
|
306
|
-
// src/components/00-foundations/icons/iconList.ts
|
|
307
|
-
const icons = [
|
|
308
|
-
{ name: 'ds_flame', component: DSFlameIcon, category: 'DS Custom icons' },
|
|
309
|
-
{ name: 'ds_flame_fill', component: DSFlameFillIcon, category: 'DS Custom icons' },
|
|
310
|
-
{ name: 'archive', component: ArchiveIcon, category: 'Actions' },
|
|
311
|
-
{ name: 'archive_fill', component: ArchiveFillIcon, category: 'Actions' },
|
|
312
|
-
{ name: 'download', component: DownloadIcon, category: 'Actions' },
|
|
313
|
-
{ name: 'file_save', component: FileSaveIcon, category: 'Actions' },
|
|
314
|
-
{ name: 'file_save_fill', component: FileSaveFillIcon, category: 'Actions' },
|
|
315
|
-
{ name: 'send', component: SendIcon, category: 'Actions' },
|
|
316
|
-
{ name: 'send_fill', component: SendFillIcon, category: 'Actions' },
|
|
317
|
-
{ name: 'list_alt', component: ListAltIcon, category: 'Actions' },
|
|
318
|
-
{ name: 'list_alt_add', component: ListAltAddIcon, category: 'Actions' },
|
|
319
|
-
{ name: 'list_alt_check', component: ListAltCheckIcon, category: 'Actions' },
|
|
320
|
-
{ name: 'fork_right', component: ForkRightIcon, category: 'Actions' },
|
|
321
|
-
{ name: 'manufacturing', component: ManufacturingIcon, category: 'Actions' },
|
|
322
|
-
{ name: 'drag_indicator', component: DragIndicatorIcon, category: 'Actions' },
|
|
323
|
-
{ name: 'resize', component: ResizeIcon, category: 'Actions' },
|
|
324
|
-
{ name: 'edit', component: EditIcon, category: 'Actions' },
|
|
325
|
-
{ name: 'edit_fill', component: EditFillIcon, category: 'Actions' },
|
|
326
|
-
{ name: 'code_blocks', component: CodeBlocksIcon, category: 'Actions' },
|
|
327
|
-
{ name: 'visibility', component: VisibilityIcon, category: 'Actions' },
|
|
328
|
-
{ name: 'visibility_fill', component: VisibilityFillIcon, category: 'Actions' },
|
|
329
|
-
{ name: 'visibility_off', component: VisibilityOffIcon, category: 'Actions' },
|
|
330
|
-
{ name: 'visibility_off_fill', component: VisibilityOffFillIcon, category: 'Actions' },
|
|
331
|
-
{ name: 'close', component: CloseIcon, category: 'Actions' },
|
|
332
|
-
{ name: 'cancel', component: CancelIcon, category: 'Actions' },
|
|
333
|
-
{ name: 'cancel_fill', component: CancelFillIcon, category: 'Actions' },
|
|
334
|
-
{ name: 'attach_file', component: AttachFileIcon, category: 'Actions' },
|
|
335
|
-
{ name: 'attach_file_add', component: AttachFileAddIcon, category: 'Actions' },
|
|
336
|
-
{ name: 'attach_file_off', component: AttachFileOffIcon, category: 'Actions' },
|
|
337
|
-
{ name: 'attach_email', component: AttachEmailIcon, category: 'Actions' },
|
|
338
|
-
{ name: 'attach_email_fill', component: AttachEmailFillIcon, category: 'Actions' },
|
|
339
|
-
{ name: 'zoom_in', component: ZoomInIcon, category: 'Actions' },
|
|
340
|
-
{ name: 'zoom_out', component: ZoomOutIcon, category: 'Actions' },
|
|
341
|
-
{ name: 'search', component: SearchIcon, category: 'Actions' },
|
|
342
|
-
{ name: 'arrow_back', component: ArrowBackIcon, category: 'Arrows and operators' },
|
|
343
|
-
{ name: 'arrow_forward', component: ArrowForwardIcon, category: 'Arrows and operators' },
|
|
344
|
-
{ name: 'arrow_upward', component: ArrowUpwardIcon, category: 'Arrows and operators' },
|
|
345
|
-
{ name: 'arrow_downward', component: ArrowDownwardIcon, category: 'Arrows and operators' },
|
|
346
|
-
{ name: 'arrow_insert', component: ArrowInsertIcon, category: 'Arrows and operators' },
|
|
347
|
-
{ name: 'arrow_outward', component: ArrowOutwardIcon, category: 'Arrows and operators' },
|
|
348
|
-
{ name: 'chevron_backward', component: ChevronBackwardIcon, category: 'Arrows and operators' },
|
|
349
|
-
{ name: 'chevron_forward', component: ChevronForwardIcon, category: 'Arrows and operators' },
|
|
350
|
-
{ name: 'keyboard_arrow_up', component: KeyboardArrowUpIcon, category: 'Arrows and operators' },
|
|
351
|
-
{ name: 'keyboard_arrow_down', component: KeyboardArrowDownIcon, category: 'Arrows and operators' },
|
|
352
|
-
{ name: 'arrow_drop_down_circle', component: ArrowDropDownCircleIcon, category: 'Arrows and operators' },
|
|
353
|
-
{ name: 'arrow_drop_down_fill', component: ArrowDropDownFillIcon, category: 'Arrows and operators' },
|
|
354
|
-
{ name: 'unfold_less', component: UnfoldLessIcon, category: 'Arrows and operators' },
|
|
355
|
-
{ name: 'unfold_more', component: UnfoldMoreIcon, category: 'Arrows and operators' },
|
|
356
|
-
{ name: 'collapse_content', component: CollapseContentIcon, category: 'Arrows and operators' },
|
|
357
|
-
{ name: 'expand_content', component: ExpandContentIcon, category: 'Arrows and operators' },
|
|
358
|
-
{ name: 'zoom_out_map', component: ZoomOutMapIcon, category: 'Arrows and operators' },
|
|
359
|
-
{ name: 'zoom_in_map', component: ZoomInMapIcon, category: 'Arrows and operators' },
|
|
360
|
-
{ name: 'add', component: AddIcon, category: 'Arrows and operators' },
|
|
361
|
-
{ name: 'close_small', component: CloseSmallIcon, category: 'Arrows and operators' },
|
|
362
|
-
{ name: 'remove', component: RemoveIcon, category: 'Arrows and operators' },
|
|
363
|
-
{ name: 'equal', component: EqualIcon, category: 'Arrows and operators' },
|
|
364
|
-
{ name: 'function', component: FunctionIcon, category: 'Arrows and operators' },
|
|
365
|
-
{ name: 'functions', component: FunctionsIcon, category: 'Arrows and operators' },
|
|
366
|
-
{ name: 'percent', component: PercentIcon, category: 'Arrows and operators' },
|
|
367
|
-
{ name: 'calculate', component: CalculateIcon, category: 'Arrows and operators' },
|
|
368
|
-
{ name: 'calculate_fill', component: CalculateFillIcon, category: 'Arrows and operators' },
|
|
369
|
-
{ name: 'calendar_month', component: CalendarMonthIcon, category: 'Information' },
|
|
370
|
-
{ name: 'calendar_month_fill', component: CalendarMonthFillIcon, category: 'Information' },
|
|
371
|
-
{ name: 'event_available', component: EventAvailableIcon, category: 'Information' },
|
|
372
|
-
{ name: 'event_available_fill', component: EventAvailableFillIcon, category: 'Information' },
|
|
373
|
-
{ name: 'edit_calendar', component: EditCalendarIcon, category: 'Information' },
|
|
374
|
-
{ name: 'edit_calendar_fill', component: EditCalendarFillIcon, category: 'Information' },
|
|
375
|
-
{ name: 'person_pin_circle', component: PersonPinCircleIcon, category: 'Information' },
|
|
376
|
-
{ name: 'person_pin_circle_fill', component: PersonPinCircleFillIcon, category: 'Information' },
|
|
377
|
-
{ name: 'euro_symbol', component: EuroSymbolIcon, category: 'Information' },
|
|
378
|
-
{ name: 'language', component: LanguageIcon, category: 'Information' },
|
|
379
|
-
{ name: 'grid_4x4', component: Grid4x4Icon, category: 'Information' },
|
|
380
|
-
{ name: 'sell', component: SellIcon, category: 'Information' },
|
|
381
|
-
{ name: 'sell_fill', component: SellFillIcon, category: 'Information' },
|
|
382
|
-
{ name: 'home', component: HomeIcon, category: 'Navigation' },
|
|
383
|
-
{ name: 'home_fill', component: HomeFillIcon, category: 'Navigation' },
|
|
384
|
-
{ name: 'menu', component: MenuIcon, category: 'Navigation' },
|
|
385
|
-
{ name: 'link', component: LinkIcon, category: 'Navigation' },
|
|
386
|
-
{ name: 'location_searching', component: LocationSearchingIcon, category: 'Navigation' },
|
|
387
|
-
{ name: 'my_location', component: MyLocationIcon, category: 'Navigation' },
|
|
388
|
-
{ name: 'my_location_fill', component: MyLocationFillIcon, category: 'Navigation' },
|
|
389
|
-
{ name: 'location_on', component: LocationOnIcon, category: 'Navigation' },
|
|
390
|
-
{ name: 'location_on_fill', component: LocationOnFillIcon, category: 'Navigation' },
|
|
391
|
-
{ name: 'explore', component: ExploreIcon, category: 'Navigation' },
|
|
392
|
-
{ name: 'explore_fill', component: ExploreFillIcon, category: 'Navigation' },
|
|
393
|
-
{ name: 'favorite', component: FavoriteIcon, category: 'Notifications and expressions' },
|
|
394
|
-
{ name: 'favorite_fill', component: FavoriteFillIcon, category: 'Notifications and expressions' },
|
|
395
|
-
{ name: 'help', component: HelpIcon, category: 'Notifications and expressions' },
|
|
396
|
-
{ name: 'help_fill', component: HelpFillIcon, category: 'Notifications and expressions' },
|
|
397
|
-
{ name: 'info', component: InfoIcon, category: 'Notifications and expressions' },
|
|
398
|
-
{ name: 'info_fill', component: InfoFillIcon, category: 'Notifications and expressions' },
|
|
399
|
-
{ name: 'warning', component: WarningIcon, category: 'Notifications and expressions' },
|
|
400
|
-
{ name: 'warning_fill', component: WarningFillIcon, category: 'Notifications and expressions' },
|
|
401
|
-
{ name: 'check', component: CheckIcon, category: 'Notifications and expressions' },
|
|
402
|
-
{ name: 'check_circle', component: CheckCircleIcon, category: 'Notifications and expressions' },
|
|
403
|
-
{ name: 'check_circle_fill', component: CheckCircleFillIcon, category: 'Notifications and expressions' },
|
|
404
|
-
{ name: 'notifications', component: NotificationsIcon, category: 'Notifications and expressions' },
|
|
405
|
-
{ name: 'notifications_fill', component: NotificationsFillIcon, category: 'Notifications and expressions' },
|
|
406
|
-
{ name: 'notifications_off', component: NotificationsOffIcon, category: 'Notifications and expressions' },
|
|
407
|
-
{ name: 'notifications_off_fill', component: NotificationsOffFillIcon, category: 'Notifications and expressions' },
|
|
408
|
-
{ name: 'notifications_unread', component: NotificationsUnreadIcon, category: 'Notifications and expressions' },
|
|
409
|
-
{ name: 'notifications_unread_fill', component: NotificationsUnreadFillIcon, category: 'Notifications and expressions' },
|
|
410
|
-
{ name: 'notifications_active', component: NotificationsActiveIcon, category: 'Notifications and expressions' },
|
|
411
|
-
{ name: 'notifications_active_fill', component: NotificationsActiveFillIcon, category: 'Notifications and expressions' },
|
|
412
|
-
{ name: 'sentiment_satisfied', component: SentimentSatisfiedIcon, category: 'Notifications and expressions' },
|
|
413
|
-
{ name: 'sentiment_satisfied_fill', component: SentimentSatisfiedFillIcon, category: 'Notifications and expressions' },
|
|
414
|
-
{ name: 'sentiment_neutral', component: SentimentNeutralIcon, category: 'Notifications and expressions' },
|
|
415
|
-
{ name: 'sentiment_neutral_fill', component: SentimentNeutralFillIcon, category: 'Notifications and expressions' },
|
|
416
|
-
{ name: 'sentiment_dissatisfied', component: SentimentDissatisfiedIcon, category: 'Notifications and expressions' },
|
|
417
|
-
{ name: 'sentiment_dissatisfied_fill', component: SentimentDissatisfiedFillIcon, category: 'Notifications and expressions' },
|
|
418
|
-
{ name: 'smart_toy', component: SmartToyIcon, category: 'Notifications and expressions' },
|
|
419
|
-
{ name: 'smart_toy_fill', component: SmartToyFillIcon, category: 'Notifications and expressions' },
|
|
420
|
-
{ name: 'star', component: StarIcon, category: 'Notifications and expressions' },
|
|
421
|
-
{ name: 'star_fill', component: StarFillIcon, category: 'Notifications and expressions' },
|
|
422
|
-
{ name: 'photo_camera', component: PhotoCameraIcon, category: 'Media and devices' },
|
|
423
|
-
{ name: 'photo_camera_fill', component: PhotoCameraFillIcon, category: 'Media and devices' },
|
|
424
|
-
{ name: 'chat', component: ChatIcon, category: 'Media and devices' },
|
|
425
|
-
{ name: 'chat_fill', component: ChatFillIcon, category: 'Media and devices' },
|
|
426
|
-
{ name: 'rss_feed', component: RSSFeedIcon, category: 'Media and devices' },
|
|
427
|
-
{ name: 'description', component: DescriptionIcon, category: 'Media and devices' },
|
|
428
|
-
{ name: 'image', component: ImageIcon, category: 'Media and devices' },
|
|
429
|
-
{ name: 'image_fill', component: ImageFillIcon, category: 'Media and devices' },
|
|
430
|
-
{ name: 'gallery_thumbnail', component: GalleryThumbnailIcon, category: 'Media and devices' },
|
|
431
|
-
{ name: 'photo_library', component: PhotoLibraryIcon, category: 'Media and devices' },
|
|
432
|
-
{ name: 'fiber_manual_record', component: FiberManualRecordIcon, category: 'Media and devices' },
|
|
433
|
-
{ name: 'fiber_manual_record_fill', component: FiberManualRecordFillIcon, category: 'Media and devices' },
|
|
434
|
-
{ name: 'pause', component: PauseIcon, category: 'Media and devices' },
|
|
435
|
-
{ name: 'pause_fill', component: PauseFillIcon, category: 'Media and devices' },
|
|
436
|
-
{ name: 'pause_circle', component: PauseCircleIcon, category: 'Media and devices' },
|
|
437
|
-
{ name: 'pause_circle_fill', component: PauseCircleFillIcon, category: 'Media and devices' },
|
|
438
|
-
{ name: 'stop_circle', component: StopCircleIcon, category: 'Media and devices' },
|
|
439
|
-
{ name: 'stop_circle_fill', component: StopCircleFillIcon, category: 'Media and devices' },
|
|
440
|
-
{ name: 'stop', component: StopIcon, category: 'Media and devices' },
|
|
441
|
-
{ name: 'stop_fill', component: StopFillIcon, category: 'Media and devices' },
|
|
442
|
-
{ name: 'play_pause', component: PlayPauseIcon, category: 'Media and devices' },
|
|
443
|
-
{ name: 'play_arrow', component: PlayArrowIcon, category: 'Media and devices' },
|
|
444
|
-
{ name: 'play_arrow_fill', component: PlayArrowFillIcon, category: 'Media and devices' },
|
|
445
|
-
{ name: 'skip_previous', component: SkipPreviousIcon, category: 'Media and devices' },
|
|
446
|
-
{ name: 'skip_previous_fill', component: SkipPreviousFillIcon, category: 'Media and devices' },
|
|
447
|
-
{ name: 'skip_next', component: SkipNextIcon, category: 'Media and devices' },
|
|
448
|
-
{ name: 'skip_next_fill', component: SkipNextFillIcon, category: 'Media and devices' },
|
|
449
|
-
{ name: 'fast_rewind', component: FastRewindIcon, category: 'Media and devices' },
|
|
450
|
-
{ name: 'fast_rewind_fill', component: FastRewindFillIcon, category: 'Media and devices' },
|
|
451
|
-
{ name: 'fast_forward', component: FastForwardIcon, category: 'Media and devices' },
|
|
452
|
-
{ name: 'fast_forward_fill', component: FastForwardFillIcon, category: 'Media and devices' },
|
|
453
|
-
];
|
|
454
|
-
|
|
455
|
-
const dsIconCss = ":host{display:block}";
|
|
456
|
-
const DsIconStyle0 = dsIconCss;
|
|
457
|
-
|
|
458
|
-
const DsIcon = class {
|
|
459
|
-
constructor(hostRef) {
|
|
460
|
-
registerInstance(this, hostRef);
|
|
461
|
-
this.name = undefined;
|
|
462
|
-
this.colour = undefined;
|
|
463
|
-
this.size = undefined;
|
|
464
|
-
this.title = 'Icon';
|
|
465
|
-
this.role = 'img';
|
|
466
|
-
this.hidden = true;
|
|
467
|
-
this.message = '';
|
|
468
|
-
}
|
|
469
|
-
// get the icon from the icon list
|
|
470
|
-
getIcon() {
|
|
471
|
-
const selectedIcon = icons.find(icon => icon.name === this.name);
|
|
472
|
-
if (!selectedIcon) {
|
|
473
|
-
console.warn(`Icon with name "${this.name}" not found.`);
|
|
474
|
-
return '';
|
|
475
|
-
}
|
|
476
|
-
const svgElement = this.parseSvg(selectedIcon.component);
|
|
477
|
-
if (svgElement) {
|
|
478
|
-
this.setIconAttributes(svgElement);
|
|
479
|
-
}
|
|
480
|
-
return svgElement ? svgElement.outerHTML : '';
|
|
481
|
-
}
|
|
482
|
-
// parse the svg string to an svg element
|
|
483
|
-
parseSvg(svgString) {
|
|
484
|
-
const parser = new DOMParser();
|
|
485
|
-
const svgDoc = parser.parseFromString(svgString, 'image/svg+xml');
|
|
486
|
-
return svgDoc.querySelector('svg');
|
|
487
|
-
}
|
|
488
|
-
// get the colour of the icon
|
|
489
|
-
getIconColour() {
|
|
490
|
-
const cssVariable = `--colour-${this.colour}`;
|
|
491
|
-
return getComputedStyle(document.documentElement).getPropertyValue(cssVariable) || this.colour;
|
|
492
|
-
}
|
|
493
|
-
// set the attributes of the icon
|
|
494
|
-
setIconAttributes(svgElement) {
|
|
495
|
-
const size = this.size || '1.5rem';
|
|
496
|
-
const colour = this.getIconColour() || 'currentColor';
|
|
497
|
-
const role = this.role || 'img';
|
|
498
|
-
const title = this.title || '';
|
|
499
|
-
svgElement.setAttribute('style', `fill: ${colour}; width: ${size}; height: ${size};`);
|
|
500
|
-
svgElement.setAttribute('role', role);
|
|
501
|
-
// if title is available, insert it into the svg element
|
|
502
|
-
const titleText = title || 'Icon';
|
|
503
|
-
const titleElement = document.createElementNS('http://www.w3.org/2000/svg', 'title');
|
|
504
|
-
titleElement.textContent = titleText;
|
|
505
|
-
svgElement.insertBefore(titleElement, svgElement.firstChild);
|
|
506
|
-
if (!title) {
|
|
507
|
-
svgElement.setAttribute('aria-label', 'Icon');
|
|
508
|
-
}
|
|
509
|
-
}
|
|
510
|
-
render() {
|
|
511
|
-
return (h(Fragment, { key: '8a2414880389617aa1f009bc7972201ee877ab65' }, h("span", { key: 'e7441e46ef7473d1e7d1a40b70eacc843ee742ea', class: "icon-container", innerHTML: this.getIcon(), "aria-hidden": this.hidden ? 'true' : 'false' })));
|
|
512
|
-
}
|
|
513
|
-
};
|
|
514
|
-
DsIcon.style = DsIconStyle0;
|
|
515
|
-
|
|
516
|
-
export { DsIcon as ds_icon };
|
|
517
|
-
|
|
518
|
-
//# sourceMappingURL=ds-icon.entry.js.map
|