@porsche-design-system/components-react 2.17.0 → 2.18.0-rc.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/CHANGELOG.md +19 -0
- package/esm/hooks.js +62 -0
- package/esm/lib/components/accordion.wrapper.js +23 -0
- package/esm/lib/components/banner.wrapper.js +23 -0
- package/esm/lib/components/button-group.wrapper.js +20 -0
- package/esm/lib/components/button-pure.wrapper.js +22 -0
- package/esm/lib/components/button.wrapper.js +22 -0
- package/esm/lib/components/carousel.wrapper.js +23 -0
- package/esm/lib/components/checkbox-wrapper.wrapper.js +22 -0
- package/esm/lib/components/content-wrapper.wrapper.js +22 -0
- package/esm/lib/components/divider.wrapper.js +22 -0
- package/esm/lib/components/fieldset-wrapper.wrapper.js +22 -0
- package/esm/lib/components/flex-item.wrapper.js +22 -0
- package/esm/lib/components/flex.wrapper.js +22 -0
- package/esm/lib/components/grid-item.wrapper.js +22 -0
- package/esm/lib/components/grid.wrapper.js +22 -0
- package/esm/lib/components/headline.wrapper.js +22 -0
- package/esm/lib/components/icon.wrapper.js +22 -0
- package/esm/lib/components/inline-notification.wrapper.js +24 -0
- package/esm/lib/components/link-pure.wrapper.js +22 -0
- package/esm/lib/components/link-social.wrapper.js +22 -0
- package/esm/lib/components/link-tile.wrapper.js +22 -0
- package/esm/lib/components/link.wrapper.js +22 -0
- package/esm/lib/components/marque.wrapper.js +22 -0
- package/esm/lib/components/modal.wrapper.js +23 -0
- package/esm/lib/components/pagination.wrapper.js +23 -0
- package/esm/lib/components/popover.wrapper.js +22 -0
- package/esm/lib/components/radio-button-wrapper.wrapper.js +22 -0
- package/esm/lib/components/scroller.wrapper.js +22 -0
- package/esm/lib/components/segmented-control-item.wrapper.js +22 -0
- package/esm/lib/components/segmented-control.wrapper.js +23 -0
- package/esm/lib/components/select-wrapper.wrapper.js +22 -0
- package/esm/lib/components/spinner.wrapper.js +22 -0
- package/esm/lib/components/stepper-horizontal-item.wrapper.js +22 -0
- package/esm/lib/components/stepper-horizontal.wrapper.js +23 -0
- package/esm/lib/components/switch.wrapper.js +23 -0
- package/esm/lib/components/table-body.wrapper.js +17 -0
- package/esm/lib/components/table-cell.wrapper.js +20 -0
- package/esm/lib/components/table-head-cell.wrapper.js +22 -0
- package/esm/lib/components/table-head-row.wrapper.js +17 -0
- package/esm/lib/components/table-head.wrapper.js +17 -0
- package/esm/lib/components/table-row.wrapper.js +17 -0
- package/esm/lib/components/table.wrapper.js +21 -0
- package/esm/lib/components/tabs-bar.wrapper.js +23 -0
- package/esm/lib/components/tabs-item.wrapper.js +20 -0
- package/esm/lib/components/tabs.wrapper.js +23 -0
- package/esm/lib/components/tag-dismissible.wrapper.js +22 -0
- package/esm/lib/components/tag.wrapper.js +22 -0
- package/esm/lib/components/text-field-wrapper.wrapper.js +23 -0
- package/esm/lib/components/text-list-item.wrapper.js +17 -0
- package/esm/lib/components/text-list.wrapper.js +22 -0
- package/esm/lib/components/text.wrapper.js +22 -0
- package/esm/lib/components/textarea-wrapper.wrapper.js +22 -0
- package/esm/lib/components/toast.wrapper.js +20 -0
- package/esm/provider.js +16 -0
- package/esm/public-api.js +55 -911
- package/esm/utils.js +28 -0
- package/hooks.js +71 -0
- package/jsdom-polyfill/index.js +1 -1
- package/lib/components/accordion.wrapper.js +27 -0
- package/lib/components/banner.wrapper.js +27 -0
- package/lib/components/button-group.wrapper.js +24 -0
- package/lib/components/button-pure.wrapper.js +26 -0
- package/lib/components/button.wrapper.js +26 -0
- package/lib/components/carousel.wrapper.js +27 -0
- package/lib/components/checkbox-wrapper.wrapper.js +26 -0
- package/lib/components/content-wrapper.wrapper.js +26 -0
- package/lib/components/divider.wrapper.js +26 -0
- package/lib/components/fieldset-wrapper.wrapper.js +26 -0
- package/lib/components/flex-item.wrapper.js +26 -0
- package/lib/components/flex.wrapper.js +26 -0
- package/lib/components/grid-item.wrapper.js +26 -0
- package/lib/components/grid.wrapper.js +26 -0
- package/lib/components/headline.wrapper.js +26 -0
- package/lib/components/icon.wrapper.js +26 -0
- package/lib/components/inline-notification.wrapper.js +28 -0
- package/lib/components/link-pure.wrapper.js +26 -0
- package/lib/components/link-social.wrapper.js +26 -0
- package/lib/components/link-tile.wrapper.js +26 -0
- package/lib/components/link.wrapper.js +26 -0
- package/lib/components/marque.wrapper.js +26 -0
- package/lib/components/modal.wrapper.js +27 -0
- package/lib/components/pagination.wrapper.js +27 -0
- package/lib/components/popover.wrapper.d.ts +2 -2
- package/lib/components/popover.wrapper.js +26 -0
- package/lib/components/radio-button-wrapper.wrapper.js +26 -0
- package/lib/components/scroller.wrapper.js +26 -0
- package/lib/components/segmented-control-item.wrapper.js +26 -0
- package/lib/components/segmented-control.wrapper.js +27 -0
- package/lib/components/select-wrapper.wrapper.js +26 -0
- package/lib/components/spinner.wrapper.js +26 -0
- package/lib/components/stepper-horizontal-item.wrapper.js +26 -0
- package/lib/components/stepper-horizontal.wrapper.js +27 -0
- package/lib/components/switch.wrapper.js +27 -0
- package/lib/components/table-body.wrapper.js +21 -0
- package/lib/components/table-cell.wrapper.js +24 -0
- package/lib/components/table-head-cell.wrapper.js +26 -0
- package/lib/components/table-head-row.wrapper.js +21 -0
- package/lib/components/table-head.wrapper.js +21 -0
- package/lib/components/table-row.wrapper.js +21 -0
- package/lib/components/table.wrapper.js +25 -0
- package/lib/components/tabs-bar.wrapper.js +27 -0
- package/lib/components/tabs-item.wrapper.js +24 -0
- package/lib/components/tabs.wrapper.js +27 -0
- package/lib/components/tag-dismissible.wrapper.js +26 -0
- package/lib/components/tag.wrapper.js +26 -0
- package/lib/components/text-field-wrapper.wrapper.js +27 -0
- package/lib/components/text-list-item.wrapper.js +21 -0
- package/lib/components/text-list.wrapper.js +26 -0
- package/lib/components/text.wrapper.js +26 -0
- package/lib/components/textarea-wrapper.wrapper.js +26 -0
- package/lib/components/toast.wrapper.js +24 -0
- package/package.json +2 -2
- package/provider.js +21 -0
- package/public-api.js +114 -965
- package/ssr/components/dist/styles/esm/styles-entry.js +8249 -0
- package/ssr/components/dist/utils/esm/utils-entry.js +5740 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/hooks.js +71 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/accordion.wrapper.js +41 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/banner.wrapper.js +41 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/button-group.wrapper.js +38 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/button-pure.wrapper.js +40 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/button.wrapper.js +40 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/carousel.wrapper.js +41 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/checkbox-wrapper.wrapper.js +40 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/content-wrapper.wrapper.js +40 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/divider.wrapper.js +39 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/fieldset-wrapper.wrapper.js +40 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/flex-item.wrapper.js +40 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/flex.wrapper.js +40 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/grid-item.wrapper.js +42 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/grid.wrapper.js +40 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/headline.wrapper.js +40 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/icon.wrapper.js +39 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/inline-notification.wrapper.js +42 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/link-pure.wrapper.js +40 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/link-social.wrapper.js +40 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/link-tile.wrapper.js +40 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/link.wrapper.js +40 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/marque.wrapper.js +39 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/modal.wrapper.js +41 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/pagination.wrapper.js +40 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/popover.wrapper.js +40 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/radio-button-wrapper.wrapper.js +40 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/scroller.wrapper.js +40 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/segmented-control-item.wrapper.js +42 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/segmented-control.wrapper.js +42 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/select-wrapper.wrapper.js +40 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/spinner.wrapper.js +39 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/stepper-horizontal-item.wrapper.js +43 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/stepper-horizontal.wrapper.js +42 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/switch.wrapper.js +41 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/table-body.wrapper.js +36 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/table-cell.wrapper.js +39 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/table-head-cell.wrapper.js +41 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/table-head-row.wrapper.js +36 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/table-head.wrapper.js +36 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/table-row.wrapper.js +36 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/table.wrapper.js +39 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/tabs-bar.wrapper.js +41 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/tabs-item.wrapper.js +40 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/tabs.wrapper.js +41 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/tag-dismissible.wrapper.js +40 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/tag.wrapper.js +40 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/text-field-wrapper.wrapper.js +41 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/text-list-item.wrapper.js +38 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/text-list.wrapper.js +40 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/text.wrapper.js +40 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/textarea-wrapper.wrapper.js +40 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/toast.wrapper.js +37 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/accordion.js +30 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/banner.js +28 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/button-group.js +25 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/button-pure.js +41 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/button.js +40 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/carousel.js +39 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/checkbox-wrapper.js +27 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/content-wrapper.js +25 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/divider.js +18 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/fieldset-wrapper.js +29 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/flex-item.js +25 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/flex.js +25 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/grid-item.js +26 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/grid.js +28 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/headline.js +27 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/icon.js +25 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/inline-notification.js +32 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/link-pure.js +37 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/link-social.js +32 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/link-tile.js +46 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/link.js +39 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/marque.js +32 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/modal.js +30 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/pagination.js +42 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/popover.js +37 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/radio-button-wrapper.js +27 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/required.js +11 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/scroller.js +37 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/segmented-control-item.js +31 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/segmented-control.js +31 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/select-wrapper.js +33 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/spinner.js +20 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/state-message.js +15 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/stepper-horizontal-item.js +28 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/stepper-horizontal.js +34 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/switch.js +31 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/table-body.js +25 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/table-cell.js +25 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/table-head-cell.js +29 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/table-head-row.js +25 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/table-head.js +25 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/table-row.js +25 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/table.js +38 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/tabs-bar.js +32 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/tabs-item.js +26 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/tabs.js +34 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/tag-dismissible.js +28 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/tag.js +28 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/text-field-wrapper.js +56 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/text-list-item.js +27 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/text-list.js +29 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/text.js +29 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/textarea-wrapper.js +28 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/toast.js +19 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/minifyCss.js +7 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/provider.js +21 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/public-api.js +123 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/stripFocusAndHoverStyles.js +7 -0
- package/ssr/components-react/projects/react-ssr-wrapper/src/utils.js +34 -0
- package/ssr/esm/components/dist/styles/esm/styles-entry.js +8192 -0
- package/ssr/esm/components/dist/utils/esm/utils-entry.js +5687 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/hooks.js +62 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/accordion.wrapper.js +37 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/banner.wrapper.js +37 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/button-group.wrapper.js +34 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/button-pure.wrapper.js +36 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/button.wrapper.js +36 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/carousel.wrapper.js +37 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/checkbox-wrapper.wrapper.js +36 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/content-wrapper.wrapper.js +36 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/divider.wrapper.js +35 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/fieldset-wrapper.wrapper.js +36 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/flex-item.wrapper.js +36 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/flex.wrapper.js +36 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/grid-item.wrapper.js +38 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/grid.wrapper.js +36 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/headline.wrapper.js +36 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/icon.wrapper.js +35 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/inline-notification.wrapper.js +38 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/link-pure.wrapper.js +36 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/link-social.wrapper.js +36 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/link-tile.wrapper.js +36 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/link.wrapper.js +36 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/marque.wrapper.js +35 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/modal.wrapper.js +37 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/pagination.wrapper.js +36 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/popover.wrapper.js +36 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/radio-button-wrapper.wrapper.js +36 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/scroller.wrapper.js +36 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/segmented-control-item.wrapper.js +38 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/segmented-control.wrapper.js +38 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/select-wrapper.wrapper.js +36 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/spinner.wrapper.js +35 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/stepper-horizontal-item.wrapper.js +39 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/stepper-horizontal.wrapper.js +38 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/switch.wrapper.js +37 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/table-body.wrapper.js +32 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/table-cell.wrapper.js +35 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/table-head-cell.wrapper.js +37 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/table-head-row.wrapper.js +32 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/table-head.wrapper.js +32 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/table-row.wrapper.js +32 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/table.wrapper.js +35 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/tabs-bar.wrapper.js +37 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/tabs-item.wrapper.js +36 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/tabs.wrapper.js +37 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/tag-dismissible.wrapper.js +36 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/tag.wrapper.js +36 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/text-field-wrapper.wrapper.js +37 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/text-list-item.wrapper.js +34 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/text-list.wrapper.js +36 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/text.wrapper.js +36 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/textarea-wrapper.wrapper.js +36 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/toast.wrapper.js +33 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/accordion.js +26 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/banner.js +24 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/button-group.js +21 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/button-pure.js +37 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/button.js +36 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/carousel.js +35 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/checkbox-wrapper.js +23 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/content-wrapper.js +21 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/divider.js +14 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/fieldset-wrapper.js +25 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/flex-item.js +21 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/flex.js +21 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/grid-item.js +22 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/grid.js +24 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/headline.js +23 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/icon.js +21 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/inline-notification.js +28 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/link-pure.js +33 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/link-social.js +28 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/link-tile.js +42 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/link.js +35 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/marque.js +28 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/modal.js +26 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/pagination.js +38 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/popover.js +33 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/radio-button-wrapper.js +23 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/required.js +7 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/scroller.js +33 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/segmented-control-item.js +27 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/segmented-control.js +27 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/select-wrapper.js +29 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/spinner.js +16 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/state-message.js +11 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/stepper-horizontal-item.js +24 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/stepper-horizontal.js +30 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/switch.js +27 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/table-body.js +21 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/table-cell.js +21 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/table-head-cell.js +25 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/table-head-row.js +21 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/table-head.js +21 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/table-row.js +21 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/table.js +34 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/tabs-bar.js +28 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/tabs-item.js +22 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/tabs.js +30 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/tag-dismissible.js +24 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/tag.js +24 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/text-field-wrapper.js +52 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/text-list-item.js +23 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/text-list.js +25 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/text.js +25 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/textarea-wrapper.js +24 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/toast.js +15 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/minifyCss.js +3 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/provider.js +16 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/public-api.js +56 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/stripFocusAndHoverStyles.js +3 -0
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/utils.js +28 -0
- package/ssr/esm/icons/dist/module/index.js +3 -0
- package/ssr/hooks.d.ts +15 -0
- package/ssr/icons/dist/module/index.js +7 -0
- package/ssr/lib/components/accordion.wrapper.d.ts +64 -0
- package/ssr/lib/components/banner.wrapper.d.ts +48 -0
- package/ssr/lib/components/button-group.wrapper.d.ts +16 -0
- package/ssr/lib/components/button-pure.wrapper.d.ts +122 -0
- package/ssr/lib/components/button.wrapper.d.ts +90 -0
- package/ssr/lib/components/carousel.wrapper.d.ts +72 -0
- package/ssr/lib/components/checkbox-wrapper.wrapper.d.ts +40 -0
- package/ssr/lib/components/content-wrapper.wrapper.d.ts +32 -0
- package/ssr/lib/components/divider.wrapper.d.ts +30 -0
- package/ssr/lib/components/fieldset-wrapper.wrapper.d.ts +48 -0
- package/ssr/lib/components/flex-item.wrapper.d.ts +56 -0
- package/ssr/lib/components/flex.wrapper.d.ts +56 -0
- package/ssr/lib/components/grid-item.wrapper.d.ts +24 -0
- package/ssr/lib/components/grid.wrapper.d.ts +32 -0
- package/ssr/lib/components/headline.wrapper.d.ts +56 -0
- package/ssr/lib/components/icon.wrapper.d.ts +62 -0
- package/ssr/lib/components/index.d.ts +52 -0
- package/ssr/lib/components/inline-notification.wrapper.d.ts +88 -0
- package/ssr/lib/components/link-pure.wrapper.d.ts +120 -0
- package/ssr/lib/components/link-social.wrapper.d.ts +64 -0
- package/ssr/lib/components/link-tile.wrapper.d.ts +112 -0
- package/ssr/lib/components/link.wrapper.d.ts +88 -0
- package/ssr/lib/components/marque.wrapper.d.ts +46 -0
- package/ssr/lib/components/modal.wrapper.d.ts +64 -0
- package/ssr/lib/components/pagination.wrapper.d.ts +86 -0
- package/ssr/lib/components/popover.wrapper.d.ts +32 -0
- package/ssr/lib/components/radio-button-wrapper.wrapper.d.ts +40 -0
- package/ssr/lib/components/scroller.wrapper.d.ts +40 -0
- package/ssr/lib/components/segmented-control-item.wrapper.d.ts +48 -0
- package/ssr/lib/components/segmented-control.wrapper.d.ts +40 -0
- package/ssr/lib/components/select-wrapper.wrapper.d.ts +80 -0
- package/ssr/lib/components/spinner.wrapper.d.ts +30 -0
- package/ssr/lib/components/stepper-horizontal-item.wrapper.d.ts +24 -0
- package/ssr/lib/components/stepper-horizontal.wrapper.d.ts +32 -0
- package/ssr/lib/components/switch.wrapper.d.ts +82 -0
- package/ssr/lib/components/table-body.wrapper.d.ts +5 -0
- package/ssr/lib/components/table-cell.wrapper.d.ts +15 -0
- package/ssr/lib/components/table-head-cell.wrapper.d.ts +32 -0
- package/ssr/lib/components/table-head-row.wrapper.d.ts +5 -0
- package/ssr/lib/components/table-head.wrapper.d.ts +5 -0
- package/ssr/lib/components/table-row.wrapper.d.ts +5 -0
- package/ssr/lib/components/table.wrapper.d.ts +24 -0
- package/ssr/lib/components/tabs-bar.wrapper.d.ts +56 -0
- package/ssr/lib/components/tabs-item.wrapper.d.ts +15 -0
- package/ssr/lib/components/tabs.wrapper.d.ts +56 -0
- package/ssr/lib/components/tag-dismissible.wrapper.d.ts +32 -0
- package/ssr/lib/components/tag.wrapper.d.ts +40 -0
- package/ssr/lib/components/text-field-wrapper.wrapper.d.ts +96 -0
- package/ssr/lib/components/text-list-item.wrapper.d.ts +5 -0
- package/ssr/lib/components/text-list.wrapper.d.ts +32 -0
- package/ssr/lib/components/text.wrapper.d.ts +64 -0
- package/ssr/lib/components/textarea-wrapper.wrapper.d.ts +56 -0
- package/ssr/lib/components/toast.wrapper.d.ts +14 -0
- package/ssr/lib/dsr-components/accordion.d.ts +8 -0
- package/ssr/lib/dsr-components/banner.d.ts +6 -0
- package/ssr/lib/dsr-components/button-group.d.ts +5 -0
- package/ssr/lib/dsr-components/button-pure.d.ts +10 -0
- package/ssr/lib/dsr-components/button.d.ts +6 -0
- package/ssr/lib/dsr-components/carousel.d.ts +12 -0
- package/ssr/lib/dsr-components/checkbox-wrapper.d.ts +6 -0
- package/ssr/lib/dsr-components/content-wrapper.d.ts +5 -0
- package/ssr/lib/dsr-components/divider.d.ts +5 -0
- package/ssr/lib/dsr-components/fieldset-wrapper.d.ts +5 -0
- package/ssr/lib/dsr-components/flex-item.d.ts +5 -0
- package/ssr/lib/dsr-components/flex.d.ts +5 -0
- package/ssr/lib/dsr-components/grid-item.d.ts +6 -0
- package/ssr/lib/dsr-components/grid.d.ts +5 -0
- package/ssr/lib/dsr-components/headline.d.ts +6 -0
- package/ssr/lib/dsr-components/icon.d.ts +8 -0
- package/ssr/lib/dsr-components/inline-notification.d.ts +5 -0
- package/ssr/lib/dsr-components/link-pure.d.ts +9 -0
- package/ssr/lib/dsr-components/link-social.d.ts +5 -0
- package/ssr/lib/dsr-components/link-tile.d.ts +5 -0
- package/ssr/lib/dsr-components/link.d.ts +5 -0
- package/ssr/lib/dsr-components/marque.d.ts +5 -0
- package/ssr/lib/dsr-components/modal.d.ts +9 -0
- package/ssr/lib/dsr-components/pagination.d.ts +8 -0
- package/ssr/lib/dsr-components/popover.d.ts +9 -0
- package/ssr/lib/dsr-components/radio-button-wrapper.d.ts +6 -0
- package/ssr/lib/dsr-components/required.d.ts +2 -0
- package/ssr/lib/dsr-components/scroller.d.ts +9 -0
- package/ssr/lib/dsr-components/segmented-control-item.d.ts +6 -0
- package/ssr/lib/dsr-components/segmented-control.d.ts +5 -0
- package/ssr/lib/dsr-components/select-wrapper-dropdown.d.ts +12 -0
- package/ssr/lib/dsr-components/select-wrapper.d.ts +9 -0
- package/ssr/lib/dsr-components/spinner.d.ts +5 -0
- package/ssr/lib/dsr-components/state-message.d.ts +9 -0
- package/ssr/lib/dsr-components/stepper-horizontal-item.d.ts +6 -0
- package/ssr/lib/dsr-components/stepper-horizontal.d.ts +8 -0
- package/ssr/lib/dsr-components/switch.d.ts +9 -0
- package/ssr/lib/dsr-components/table-body.d.ts +5 -0
- package/ssr/lib/dsr-components/table-cell.d.ts +5 -0
- package/ssr/lib/dsr-components/table-head-cell.d.ts +5 -0
- package/ssr/lib/dsr-components/table-head-row.d.ts +5 -0
- package/ssr/lib/dsr-components/table-head.d.ts +5 -0
- package/ssr/lib/dsr-components/table-row.d.ts +5 -0
- package/ssr/lib/dsr-components/table.d.ts +11 -0
- package/ssr/lib/dsr-components/tabs-bar.d.ts +11 -0
- package/ssr/lib/dsr-components/tabs-item.d.ts +6 -0
- package/ssr/lib/dsr-components/tabs.d.ts +6 -0
- package/ssr/lib/dsr-components/tag-dismissible.d.ts +5 -0
- package/ssr/lib/dsr-components/tag.d.ts +5 -0
- package/ssr/lib/dsr-components/text-field-wrapper.d.ts +17 -0
- package/ssr/lib/dsr-components/text-list-item.d.ts +6 -0
- package/ssr/lib/dsr-components/text-list.d.ts +5 -0
- package/ssr/lib/dsr-components/text.d.ts +6 -0
- package/ssr/lib/dsr-components/textarea-wrapper.d.ts +10 -0
- package/ssr/lib/dsr-components/toast-item.d.ts +5 -0
- package/ssr/lib/dsr-components/toast.d.ts +6 -0
- package/ssr/lib/types.d.ts +738 -0
- package/ssr/minifyCss.d.ts +1 -0
- package/ssr/package.json +6 -0
- package/ssr/provider.d.ts +9 -0
- package/ssr/public-api.d.ts +6 -0
- package/ssr/stripFocusAndHoverStyles.d.ts +1 -0
- package/ssr/utils.d.ts +4 -0
- package/{testing.js → testing/index.js} +0 -0
- package/utils.js +34 -0
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
const ICONS_MAP = { "360": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M6.39 11.88a1.71 1.71 0 0 0 1-1.63C7.34 8.87 6.67 8 5 8s-2.44 1-2.5 2.57h1.2c.06-1.09.41-1.41 1.23-1.41s1.2.32 1.2 1.16-.36 1.11-1.19 1.11h-.63v1.12H5c1 0 1.29.38 1.29 1.24S5.87 15 5 15s-1.27-.38-1.33-1.47H2.5C2.57 15.28 3.26 16 5 16s2.48-.83 2.48-2.25a1.76 1.76 0 0 0-1.09-1.87Zm4.76-1.08a1.57 1.57 0 0 0-.65.13L12.3 8h-1.36l-1.7 2.81a4.41 4.41 0 0 0-.75 2.57c0 1.91.87 2.62 2.51 2.62s2.52-.71 2.52-2.62-.83-2.58-2.37-2.58ZM11 15c-1 0-1.28-.41-1.28-1.55s.32-1.51 1.28-1.51 1.27.42 1.27 1.51S12 15 11 15Zm6-7c-2 0-2.53 1.09-2.53 4 0 3.12.63 4.05 2.51 4.05S19.5 15 19.5 12c0-2.93-.5-4-2.5-4Zm0 7c-1.06 0-1.24-.54-1.24-3 0-2.28.25-2.79 1.24-2.79s1.25.51 1.25 2.79c-.02 2.43-.2 3-1.25 3Zm4-7a1 1 0 1 0 1 1 1 1 0 0 0-1-1Zm0 1.47a.47.47 0 0 1 0-.94.47.47 0 0 1 0 .94Z\"/></svg>", "accessibility": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 3c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 17c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8z\"/><path d=\"M11 10H7v1h4v2.5l-2.4 3.2.8.6 2.6-3.5 2.6 3.5.8-.6-2.4-3.2V11h4v-1h-4zm1-1c.7 0 1-.3 1-1V7c0-.7-.3-1-1-1s-1 .3-1 1v1c0 .7.3 1 1 1z\"/></svg>", "activeCabinVentilation": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M5 19h14v1H5zM7 6a7.84 7.84 0 0 0 .53 2.66A7 7 0 0 1 8 11a7 7 0 0 1-.47 2.34A7.84 7.84 0 0 0 7 16v1h1v-1a7 7 0 0 1 .47-2.34A7.84 7.84 0 0 0 9 11a7.84 7.84 0 0 0-.53-2.66A7 7 0 0 1 8 6V5h1L7.5 3 6 5h1Zm4.9 3.17c-.37.13-1.93 1-1.15 2.39A2.61 2.61 0 0 0 13 12.73v.68c-1.24.22-2.13-.29-2.64-.1s-.32 1.42-.19 1.79 1 1.93 2.39 1.15A2.61 2.61 0 0 0 13.73 14h.68c.22 1.24-.29 2.13-.1 2.64s1.42.32 1.79.19 1.93-1 1.15-2.39A2.61 2.61 0 0 0 15 13.27v-.68c1.24-.22 2.13.29 2.64.1s.32-1.42.19-1.79-1-1.93-2.39-1.15A2.61 2.61 0 0 0 14.27 12h-.68c-.22-1.24.29-2.13.1-2.64S12.27 9 11.9 9.17ZM15 6a6.54 6.54 0 0 0 .32 2h1l-.05-.15A6 6 0 0 1 16 6V5h1l-1.5-2L14 5h1Zm-4 0a6.6 6.6 0 0 0 .32 2h1A6.42 6.42 0 0 1 12 6V5h1l-1.5-2L10 5h1Z\"/></svg>", "add": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M11.5 3a8.5 8.5 0 1 0 8.5 8.5A8.51 8.51 0 0 0 11.5 3Zm0 16a7.5 7.5 0 1 1 7.5-7.5 7.51 7.51 0 0 1-7.5 7.5Z\"/><path d=\"M12 7h-1v4H7v1h4v4h1v-4h4v-1h-4V7z\"/></svg>", "adjust": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M8.5 15a2.5 2.5 0 0 0-2.45 2H3v1h3.05A2.5 2.5 0 0 0 11 18h10v-1H11a2.5 2.5 0 0 0-2.5-2Zm0 4a1.5 1.5 0 1 1 1.5-1.5A1.5 1.5 0 0 1 8.5 19ZM11 5a2.5 2.5 0 0 0-4.9 0H3v1h3.05A2.5 2.5 0 0 0 11 6h10V5ZM8.5 7A1.5 1.5 0 1 1 10 5.5 1.5 1.5 0 0 1 8.5 7Zm5.95 2A2.5 2.5 0 0 0 12 11H3v1h9a2.5 2.5 0 0 0 4.9 0H21v-1h-4.1a2.5 2.5 0 0 0-2.45-2Zm0 4A1.5 1.5 0 1 1 16 11.5a1.5 1.5 0 0 1-1.55 1.5Z\"/></svg>", "arrowDoubleDown": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m20 10.75-8 6-8-6v1.26L12 18l8-5.99v-1.26z\"/><path d=\"m20 6.75-8 6-8-6v1.26L12 14l8-5.99V6.75z\"/></svg>", "arrowDoubleLeft": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M13.25 4h-1.26L6 12l5.99 8h1.26l-6-8 6-8z\"/><path d=\"M17.25 4h-1.26L10 12l5.99 8h1.26l-6-8 6-8z\"/></svg>", "arrowDoubleRight": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m16.75 12-6 8h1.26L18 12l-5.99-8h-1.26l6 8z\"/><path d=\"m12.75 12-6 8h1.26L14 12 8.01 4H6.75l6 8z\"/></svg>", "arrowDoubleUp": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M20 11.99 12 6l-8 5.99v1.26l8-6 8 6v-1.26z\"/><path d=\"M20 15.99 12 10l-8 5.99v1.26l8-6 8 6v-1.26z\"/></svg>", "arrowDown": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M18 14.81 11.5 20 5 14.81v-1.25l6 4.81V4h1v14.37l6-4.81v1.25z\"/></svg>", "arrowFirst": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><defs><clipPath id=\"a\"><path d=\"m16 4-6 8 6 8h-1.26l-6-8 6-8ZM7 4v16H6V4Z\" clip-rule=\"evenodd\"/></clipPath></defs><path fill-rule=\"evenodd\" d=\"m16 4-6 8 6 8h-1.26l-6-8 6-8ZM7 4v16H6V4Z\"/><path d=\"M1-1h20v26H1z\" clip-path=\"url(#a)\"/></svg>", "arrowHeadDown": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m20 8.75-8 6-8-6v1.26L12 16l8-5.99V8.75z\"/></svg>", "arrowHeadLeft": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M15.25 4h-1.26L8 12l5.99 8h1.26l-6-8 6-8z\"/></svg>", "arrowHeadRight": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m14.75 12-6 8h1.26L16 12l-5.99-8H8.75l6 8z\"/></svg>", "arrowHeadUp": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m12 8-8 5.99v1.26l8-6 8 6v-1.26L12 8z\"/></svg>", "arrowLast": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><defs><clipPath id=\"a\"><path d=\"m8.26 4 6 8-6 8H7l6-8-6-8ZM17 4v16h-1V4Z\" clip-rule=\"evenodd\"/></clipPath></defs><path fill-rule=\"evenodd\" d=\"m8.26 4 6 8-6 8H7l6-8-6-8ZM17 4v16h-1V4Z\"/><path d=\"M2-1h20v26H2z\" clip-path=\"url(#a)\"/></svg>", "arrowLeft": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M9.19 18 4 11.5 9.19 5h1.25l-4.81 6H20v1H5.63l4.81 6H9.19z\"/></svg>", "arrowRight": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M14.81 18 20 11.5 14.81 5h-1.25l4.81 6H4v1h14.37l-4.81 6h1.25z\"/></svg>", "arrowUp": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M18 9.19 11.5 4 5 9.19v1.25l6-4.81V20h1V5.63l6 4.81V9.19z\"/></svg>", "augmentedReality": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m18 7-6.5-3L5 7v7l6.5 4 6.5-4Zm-7 9.5-5-3V8.25l5 2.25ZM6.21 7.33 11.5 5l5.39 2.33-5.39 2.29ZM17 13.5l-5 3v-6l5-2.31ZM4 4h2V3H3v3h1V4zm15 15h-2v1h3v-3h-1v2zM4 17H3v3h3v-1H4v-2zM17 3v1h2v2h1V3h-3z\"/></svg>", "batteryEmpty": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M14 4V2h-4v2H8v18h8V4Zm-1-1v1h-2V3Zm2 18H9V5h6Z\"/></svg>", "batteryFull": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M14 4V2h-4v2H8v18h8V4Zm-1-1v1h-2V3Zm2 18H9V5h6Z\"/><path d=\"M10 6h4v14h-4z\"/></svg>", "bell": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M18 13V8.42C18 3.32 13.31 3 12.16 3h-.32C10.69 3 6 3.32 6 8.42V13l-2 4h16Zm-11.11.45.11-.21V8.42a3.85 3.85 0 0 1 2-3.74A6.3 6.3 0 0 1 11.84 4h.32C13.61 4 17 4.43 17 8.42v4.82l.11.21L18.38 16H5.62ZM12 20a2 2 0 0 1-2-2H9a3 3 0 0 0 6 0h-1a2 2 0 0 1-2 2Z\"/></svg>", "bookmark": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M7 4v16l5-3 5 3V4Zm9 14.23-3.49-2.09-.51-.31-.51.31L8 18.23V5h8Z\"/></svg>", "broadcast": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M14 8a2 2 0 1 0-2.69 1.87L8 20l1 1 3-3 3 3 1-1-3.31-10.13A2 2 0 0 0 14 8Zm-3 0a1 1 0 1 1 1 1 1 1 0 0 1-1-1Zm1.71 9.29-.71-.7-.71.7-2 2L12 11l2.71 8.31ZM8 7.62a4 4 0 0 1 .66-2.12L7.85 5A4.62 4.62 0 0 0 7 7.62 3.94 3.94 0 0 0 7.85 10l.8-.5A3.15 3.15 0 0 1 8 7.62ZM5.54 3A7.22 7.22 0 0 0 4 7.58 7.26 7.26 0 0 0 5.4 12l.8-.56A6.38 6.38 0 0 1 5 7.58a6.27 6.27 0 0 1 1.34-4Zm9.8 2.5A4 4 0 0 1 16 7.62a3.15 3.15 0 0 1-.65 1.88l.8.5A3.94 3.94 0 0 0 17 7.62 4.62 4.62 0 0 0 16.15 5ZM18.46 3l-.8.56a6.27 6.27 0 0 1 1.34 4 6.38 6.38 0 0 1-1.2 3.86l.8.56a7.26 7.26 0 0 0 1.4-4.4A7.22 7.22 0 0 0 18.46 3Z\"/></svg>", "calculator": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M16 5H7v4h9Zm-1 3H8V6h7Zm-4 2H7v4h4Zm-1 3H8v-2h2Zm2 1h4v-4h-4Zm1-3h2v2h-2Z\"/><path d=\"M5 3v18h13V3Zm12 17H6V4h11Z\"/><path d=\"M11 15H7v4h4Zm-1 3H8v-2h2Zm2 1h4v-4h-4Zm1-3h2v2h-2Z\"/></svg>", "calendar": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M17 4V3h-1v1H8V3H7v1H3v17h13l5-5V4h-4ZM8 5h8v2H8ZM4 5h3v2H4Zm16 10.33L15.44 20H15v-5h5ZM20 14h-6v6H4V8h3v1h1V8h8v1h1V8h3Zm0-7h-3V5h3Z\"/></svg>", "camera": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 16a4 4 0 1 0-4-4 4 4 0 0 0 4 4Zm0-7a3 3 0 1 1-3 3 3 3 0 0 1 3-3Z\"/><path d=\"M9 6V5H5v1H3v12h18V6Zm11 11H4V7h16Z\"/></svg>", "car": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m19.42 9.25.25-.38h.93a.48.48 0 0 0 .4-.43.49.49 0 0 0-.49-.44h-1.08a.42.42 0 0 0-.38.24l-.52.76H18a3.43 3.43 0 0 0-3.75-3H9.81C7.69 6 6.28 7.17 6.06 9h-.58L5 8.24A.42.42 0 0 0 4.57 8H3.49a.49.49 0 0 0-.49.43.48.48 0 0 0 .4.43h.93l.25.38C3.54 9.76 3 11 3 13v3.23a.78.78 0 0 0 .8.77h1.82C6.16 17 7 17 7 16h10c0 1 .85 1 1.4 1h1.82a.78.78 0 0 0 .78-.77V13c0-2-.53-3.25-1.58-3.75ZM9.81 7h4.4A2.46 2.46 0 0 1 17 9H7.05c.21-1.26 1.2-2 2.76-2ZM20 16h-1.6a2.94 2.94 0 0 1-.4 0v-.5a.5.5 0 0 0-.5-.5H16a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1H6.51a.5.5 0 0 0-.5.5v.5a2.87 2.87 0 0 1-.39 0H4v-3c0-2.64.91-3 1.79-3h12.42c.88 0 1.79.36 1.79 3Z\"/><path d=\"M18.56 11h-1.13A1.43 1.43 0 0 0 16 12.43a.07.07 0 0 0 .07.07h2.74a.2.2 0 0 0 .19-.2v-.64c0-.56-.08-.66-.44-.66ZM6.58 11H5.45c-.36 0-.43.1-.43.66v.64a.2.2 0 0 0 .2.2h2.72a.07.07 0 0 0 .06-.07A1.43 1.43 0 0 0 6.58 11Z\"/></svg>", "carBattery": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M17 6h-2V5h-3v1H8V5H5v1H3v9h14Zm-1 8H4V7h12Z\"/><path d=\"M19 16V8h-1v8H5v1h14v-1z\"/><path d=\"M20 10v8H7v1h14v-9h-1zm-7 1h1v-1h1V9h-1V8h-1v1h-1v1h1v1zM5 9h3v1H5z\"/></svg>", "card": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M19.8 5H4.2A1.2 1.2 0 0 0 3 6.2v11.6A1.2 1.2 0 0 0 4.2 19h15.6a1.2 1.2 0 0 0 1.2-1.2V6.2A1.2 1.2 0 0 0 19.8 5Zm.2 12.8a.2.2 0 0 1-.2.2H4.2a.2.2 0 0 1-.2-.2V11h16ZM20 9H4V6.2a.2.2 0 0 1 .2-.2h15.6a.2.2 0 0 1 .2.2Z\"/></svg>", "chargingActive": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m11 18 3-6h-1V7l-3 6h1v5z\"/><path d=\"M14 4V2h-4v2H8v18h8V4Zm-1-1v1h-2V3Zm2 18H9V5h6Z\"/></svg>", "chargingState": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M14 2h-4v2H8v18h8V4h-2Zm-1 1v1h-2V3Zm2 2v16H9V5Z\"/><path d=\"M10 9h4v11h-4zm7 0 3 3V6l-3 3z\"/></svg>", "chargingStation": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><defs><clipPath id=\"a\"><path d=\"M9 8v4h1l-3 5v-4H6ZM8 4c-2.82 0-3 .71-3 1v15h6V5.11C11 4.81 11 4 8 4Zm0-1c3.2 0 4 .94 4 2.11V11h1.05a2.37 2.37 0 0 1 .95.19 1.89 1.89 0 0 1 1 1.93v5.63c0 1.15.5 1.25 1 1.25s1-.1 1-1.25V11c-1-.12-2-1-2-3h1V6h1v2h1V6h1v2h1c0 2-1 2.9-2 3v7.75C18 20 17.52 21 16 21s-2-1-2-2.25V13c0-.73-.26-1-.92-1H12v9H4V5.11C4 3.94 4.82 3 8 3Z\" clip-rule=\"evenodd\"/></clipPath></defs><path d=\"M-.98-2h26v28h-26z\" clip-path=\"url(#a)\"/></svg>", "chart": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M20 20h-5v-7h-1v7H9v-4H8v4H4v-9H3v10h18V11h-1v9z\"/><path d=\"M16 3v1h3.36L9 12 4.89 7H3v1h1.47l4.46 5.35L20 4.77V8h1V3h-5z\"/></svg>", "chat": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M7 8h10v1H7zm0 3h7v1H7z\"/><path d=\"M12 3C5.25 3 3 6.07 3 9.86a6.19 6.19 0 0 0 2 4.86c.22.19 8 6.28 8 6.28v-4c6-.29 8-3.55 8-7.14C21 6.07 18.75 3 12 3Zm0 13v2.85l-6-4.62a5.08 5.08 0 0 1-2-4.37C4 6 6.69 4 12 4s8 2 8 5.86S17.31 16 12 16Z\"/></svg>", "check": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m9 19-6-7h1.5l4.49 5.36L19.5 5H21L9 19z\"/></svg>", "city": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M16 10V7h-2V4h-2V2h-1v2H9v3H7v3H5v10h1v-9h11v9h1V10Zm-6-5h3v2h-3Zm5 5H8V8h7Z\"/><path d=\"M8 13h1v7H8zm3 0h1v7h-1zm3 0h1v7h-1z\"/></svg>", "climate": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M16 7V6h-2V5a2 2 0 0 0-4 0v10.78a3 3 0 1 0 4 0V13h2v-1h-2v-2h2V9h-2V7Zm-3 4h-2V5a1 1 0 0 1 2 0Z\"/></svg>", "climateControl": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M5 19h14v1H5zM6 6a7.84 7.84 0 0 0 .53 2.66A7 7 0 0 1 7 11a7 7 0 0 1-.47 2.34A7.84 7.84 0 0 0 6 16v1h1v-1a7 7 0 0 1 .47-2.34A7.84 7.84 0 0 0 8 11a7.84 7.84 0 0 0-.53-2.66A7 7 0 0 1 7 6V5h1L6.5 3 5 5h1Zm4 0a7.84 7.84 0 0 0 .53 2.66A7 7 0 0 1 11 11a7 7 0 0 1-.47 2.34A7.84 7.84 0 0 0 10 16v1h1v-1a7 7 0 0 1 .47-2.34A7.84 7.84 0 0 0 12 11a7.84 7.84 0 0 0-.53-2.66A7 7 0 0 1 11 6V5h1l-1.5-2L9 5h1Zm9.18 7.09-.12-.7-1.05.18V9.43l1.05.18.12-.7-.56-.1.88-.5-.35-.62-.89.51.2-.53-.66-.24-.34.93-2.7-1.58.63-.74-.54-.46-.37.44V5h-.71v1.02l-.36-.44-.54.46.62.74-.49.29v1.16l1.13-.66 2.88 1.68v3.38l-2.88 1.68-1.13-.66v1.16l.56.33-.69.82.54.46.36-.44V17h.71v-1.02l.37.44.54-.46-.69-.82 2.72-1.59.38 1.02.66-.24-.2-.53.89.51.35-.62-.88-.5.56-.1z\"/></svg>", "clock": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 4a8 8 0 1 1-8 8 8 8 0 0 1 8-8m0-1a9 9 0 1 0 9 9 9 9 0 0 0-9-9Z\"/><path d=\"m8.35 8.5-.7.7L12 14l4.01-3.56-.71-.71-3.21 2.89L8.35 8.5z\"/></svg>", "close": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M4.91 19h1.5L12 12.83 17.59 19h1.5l-6.34-7 6.34-7h-1.5L12 11.17 6.41 5h-1.5l6.34 7-6.34 7z\"/></svg>", "closedCaption": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M3 6v12h18V6Zm17 11H4V7h16Z\"/><path d=\"M9.21 15c1.44 0 1.92-.68 2-2.25h-.92c-.06 1.08-.26 1.48-1.07 1.48C8.2 14.23 8 13.91 8 12c0-1.73.2-2.1 1.21-2.1.81 0 1 .32 1.06 1.4h.93C11.13 9.71 10.83 9 9.21 9S7 9.68 7 12s.46 3 2.21 3ZM15 15c1.44 0 1.92-.68 2-2.25h-.92c-.06 1.08-.25 1.48-1.07 1.48-1 0-1.21-.32-1.21-2.26 0-1.73.2-2.1 1.21-2.1.82 0 1 .32 1.06 1.4H17C16.93 9.71 16.63 9 15 9s-2.21.68-2.21 3 .48 3 2.21 3Z\"/></svg>", "co2Emission": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M6.68 7.45C8 7.45 8.37 8 8.45 9.78H10C9.89 7.18 9.39 6 6.68 6S3 7.13 3 11s.77 5 3.68 5c2.41 0 3.21-1.06 3.32-3.68H8.46c-.09 1.81-.42 2.39-1.78 2.39-1.68 0-2-.53-2-3.76-.01-2.89.32-3.5 2-3.5Zm8-1.45C11.87 6 11 7.13 11 11s.77 5 3.68 5 3.67-1.26 3.67-5-.87-5-3.67-5Zm0 8.71c-1.68 0-2-.53-2-3.76 0-2.89.33-3.5 2-3.5s2 .61 2 3.5c0 3.23-.33 3.76-2 3.76Zm4.93 3.82.51-.32A1.55 1.55 0 0 0 21 16.8c0-.86-.39-1.39-1.49-1.39S18 16 18 16.91h.84c0-.57.19-.71.66-.71s.63.15.63.6-.27.71-.65.95l-.52.32a1.56 1.56 0 0 0-.89 1.43v.5h2.87v-.7h-2c-.01-.3.23-.49.67-.77Z\"/></svg>", "compare": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M21 8h-8l2-2V4.5l-4 4 4 4V11l-2-2h8V8zM9 13l2 2H3v1h8l-2 2v1.5l4-4-4-4V13z\"/></svg>", "configurate": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 8a4 4 0 1 0 4 4 4 4 0 0 0-4-4Zm0 7a3 3 0 1 1 3-3 3 3 0 0 1-3 3Z\"/><path d=\"M18.84 13a5.81 5.81 0 0 0 .08-1 6.19 6.19 0 0 0-.08-1.07l1.78-1.5a7.24 7.24 0 0 0-.53-1.36 9.09 9.09 0 0 0-.65-1.14 8.56 8.56 0 0 0-.93-1.14l-2.2.8a6.71 6.71 0 0 0-1.8-1l-.41-2.3A8.63 8.63 0 0 0 12.66 3h-1.32a8.63 8.63 0 0 0-1.44.22l-.41 2.3a6.71 6.71 0 0 0-1.8 1l-2.2-.8a8.56 8.56 0 0 0-.93 1.14A9.09 9.09 0 0 0 3.91 8a7.24 7.24 0 0 0-.53 1.36l1.78 1.5A6.19 6.19 0 0 0 5.08 12a5.81 5.81 0 0 0 .08 1l-1.79 1.5a8.62 8.62 0 0 0 .52 1.37A9.09 9.09 0 0 0 4.54 17a11.18 11.18 0 0 0 .92 1.14l2.19-.79a6.74 6.74 0 0 0 1.84 1.06l.41 2.3a7.81 7.81 0 0 0 1.45.22h1.3a7.81 7.81 0 0 0 1.45-.22l.41-2.3a6.74 6.74 0 0 0 1.84-1.06l2.19.79a11.18 11.18 0 0 0 .92-1.14 9.09 9.09 0 0 0 .65-1.14 8.62 8.62 0 0 0 .52-1.37Zm.36 2.45a6.64 6.64 0 0 1-.57 1c-.12.19-.26.36-.39.53l-1.55-.55-.53-.2-.44.36a5.9 5.9 0 0 1-1.57.91l-.53.2-.1.56-.29 1.63-.68.07L12 20h-.59c-.22 0-.43 0-.64-.06l-.29-1.63-.1-.56-.53-.2a5.9 5.9 0 0 1-1.57-.91l-.44-.36-.53.2-1.55.52-.39-.52a7.41 7.41 0 0 1-.58-1c-.09-.19-.18-.39-.26-.6L5.8 13.8l.44-.37-.09-.56a4.94 4.94 0 0 1-.07-.87 5.62 5.62 0 0 1 .07-.92l.09-.55-.44-.37L4.54 9.1c.08-.2.17-.39.26-.59a9.31 9.31 0 0 1 .58-1L5.79 7l1.56.57.52.19.44-.35a5.62 5.62 0 0 1 1.53-.88l.53-.2.1-.56.29-1.63c.22 0 .45-.06.68-.08L12 4h.59c.21 0 .43 0 .65.07l.29 1.63.1.56.53.2a5.62 5.62 0 0 1 1.53.88l.44.35.52-.19 1.56-.5c.14.17.28.35.4.53a8.84 8.84 0 0 1 .59 1c.09.2.18.39.26.59l-1.26 1.04-.44.37.09.55a5.62 5.62 0 0 1 .07.92 4.94 4.94 0 0 1-.07.87l-.09.56.44.37 1.27 1.06c-.08.21-.17.42-.27.62Z\"/></svg>", "countryRoad": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M13.46 21h1.83a10.28 10.28 0 0 1 4.78-1H21v-1h-.93a10.51 10.51 0 0 0-6.61 2ZM19 11.16 15 3l-3.55 7.1L9 6l-4.19 7.31h-.06A4.86 4.86 0 0 0 3 13v1a3.85 3.85 0 0 1 1.37.2 5 5 0 0 1 1.29.8 3.51 3.51 0 0 1 1.18 2.15 25.72 25.72 0 0 0-2.75 3.63A2.06 2.06 0 0 0 4 21h1.13c3.94-6 8.69-8.7 15.87-9v-1c-.71 0-1.39.09-2 .16ZM7.67 16.31a4.5 4.5 0 0 0-1.36-2.07 5.79 5.79 0 0 0-.62-.45L9 8l1.91 3.18-2 4.05c-.46.34-.86.71-1.24 1.08Zm3-2.38L15 5.24l2.91 6.06a18.66 18.66 0 0 0-7.26 2.63Zm4.95 1.94a14.94 14.94 0 0 0-3.88 1.87l.56.83a14.19 14.19 0 0 1 3.7-1.78ZM8.23 21h1.3a13.9 13.9 0 0 1 1.74-1.69l-.63-.78A14.83 14.83 0 0 0 8.23 21Zm8.52-5.56.25 1a13.52 13.52 0 0 1 4-.44v-1a14.89 14.89 0 0 0-4.25.44Z\"/></svg>", "cubicCapacity": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m17.11 5.01-.72.71 3.46 3.68.72-.71-3.46-3.68zm-2.3 6.41L16.25 13l2.88-2.84-3.46-3.73-2.89 2.83 1.34 1.42-2.15 2-2.14-2 1.33-1.42-2.88-2.83-3.47 3.68L7.7 13l1.43-1.53 2.09 1.89-3.12 2.77a1.5 1.5 0 1 0 .46 2.43 1.48 1.48 0 0 0 .27-1.72L12 14l3.15 2.85a1.49 1.49 0 0 0 2.39 1.72 1.5 1.5 0 0 0-1.67-2.43l-3.11-2.82Zm.83-3.56 2.09 2.22-1.46 1.44-2.09-2.23Zm-8 3.66-1.43-1.44 2.1-2.22 1.45 1.43Zm-.8-6.51L3.37 8.69l.72.71 3.47-3.68-.72-.71z\"/></svg>", "delete": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M17 20H7V8H6v13h12V8h-1v12zM6 5h12v1H6z\"/><path d=\"M10 9h1v9h-1zm0-6h4v1h-4zm3 6h1v9h-1z\"/></svg>", "disable": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 3a9 9 0 1 0 9 9 9 9 0 0 0-9-9Zm-8 9a8 8 0 0 1 8-8 7.92 7.92 0 0 1 5.28 2L6 17.28A7.92 7.92 0 0 1 4 12Zm8 8a7.92 7.92 0 0 1-5.28-2L18 6.72A7.92 7.92 0 0 1 20 12a8 8 0 0 1-8 8Z\"/></svg>", "document": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M14 3H6v18h12V7Zm0 1.41L16.59 7H14ZM17 20H7V4h6v4h4Z\"/></svg>", "download": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M15 9v1h4v8H4v-8h4V9H3v10h17V9h-5z\"/><path d=\"m11.5 16 4-4H14l-2 2V3h-1v11l-2-2H7.5l4 4z\"/></svg>", "duration": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m7.34 7.9-.71-.71a7.72 7.72 0 0 0-.82 1.35l.87.51a7.63 7.63 0 0 1 .66-1.15ZM10 5.68l-.34-.94a7.75 7.75 0 0 0-2 1.34l.71.71A6.94 6.94 0 0 1 10 5.68Zm-3.81 4.81L5.27 10a9 9 0 0 0-.22 1.38h1a7.93 7.93 0 0 1 .14-.89ZM13 4a8 8 0 0 0-1.91.24l.35 1A6.66 6.66 0 0 1 13 5a7 7 0 1 1-6.53 9.42l1.63.84 1.57-.5-4.39-2.11L3 16.87l1.56-.5.88-1.73A8 8 0 1 0 13 4Z\"/></svg>", "edit": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M16.49 3.52A3.24 3.24 0 0 0 14.85 3a2.61 2.61 0 0 0-2.21 1.5L6 16v4.28a.72.72 0 0 0 .34.62.7.7 0 0 0 .36.1.73.73 0 0 0 .35-.09l3.73-2.2 6.7-11.35a2.5 2.5 0 0 0-.99-3.84ZM10.05 18 7 19.78v-3.51l5.28-9.15 3.15 1.74Zm6.57-11.15L15.94 8l-3.16-1.74L13.5 5c.6-1 1.17-1 1.35-1a2.35 2.35 0 0 1 1.15.38 2 2 0 0 1 1 1.07 1.93 1.93 0 0 1-.38 1.4Z\"/></svg>", "email": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M3 6v12h18V6Zm16.43 1L12 11.75 4.57 7ZM20 17H4V7.9l8 5.1 8-5.1Z\"/></svg>", "exclamation": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M11.49 13h1.01l.5-6h-2l.49 6zM11 15h2v2h-2z\"/><path d=\"M12 3a9 9 0 1 0 9 9 9 9 0 0 0-9-9Zm0 17a8 8 0 1 1 8-8 8 8 0 0 1-8 8Z\"/></svg>", "external": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M15 4v1h3.08L10 13.2l.8.8L19 5.92V9h1V4h-5z\"/><path d=\"M19 19H5V5h7V4H4v16h16v-8h-1v7z\"/></svg>", "filter": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M5 4v3l5 6.43V17l1 1v-5L6.34 7h11.32L13 13v7l1 1v-7.57L19 7V4Zm1 2V5h12v1Z\"/></svg>", "flash": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 5.7V11h3.26L11 18.3V13H7.74L12 5.7M13 2 6 14h4v8l7-12h-4V2Z\"/></svg>", "fuelStation": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M15.17 3H14l2 2v3l2 2.05v8.7c0 1.15-.47 1.25-1 1.25s-1-.1-1-1.25v-5.63a1.89 1.89 0 0 0-1-1.93 2.6 2.6 0 0 0-.95-.19H13V5.11C13 4 12.2 3 9 3S5 4 5 5.11V21h8v-9h1.07c.66 0 .9.27.93 1v5.75C15 20 15.5 21 17 21s2-1 2-2.25V6.5ZM12 11.44V20H6V5.11C6 4.81 6 4 9 4s3 .81 3 1.11Z\"/><path d=\"M7 8h4v1H7z\"/></svg>", "garage": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M20 4H3v16h1V9h16v11h1V4Zm0 4H4V5h16Z\"/><path d=\"M18.63 13.68h.07a.36.36 0 0 0 .3-.33.38.38 0 0 0-.37-.34h-.84a.35.35 0 0 0-.3.19l-.27.41h-.27A3.15 3.15 0 0 0 13.71 11h-3.42a3.15 3.15 0 0 0-3.24 2.55h-.27l-.27-.41a.35.35 0 0 0-.3-.19h-.84a.38.38 0 0 0-.37.34.36.36 0 0 0 .3.33H6l.09.13C5 14.44 5 16.05 5 16.76v2.51a.73.73 0 0 0 .72.73H7c.39 0 1.19 0 1.19-.95l7.59-.05v.05c0 .95.8.95 1.19.95h1.28a.76.76 0 0 0 .75-.73v-2.51c0-.71 0-2.32-1.12-3l.09-.13ZM10.29 12h3.42a2.15 2.15 0 0 1 2.21 1.53H8.08A2.15 2.15 0 0 1 10.29 12ZM18 16.76V19h-1.22v-.5a.5.5 0 0 0-.5-.5h-1.45a.5.5 0 0 0-.5-.5H9.67a.5.5 0 0 0-.5.5H7.72a.5.5 0 0 0-.5.5v.5H6v-2.24c0-1.86.43-2.23 1.17-2.23h9.66c.74 0 1.17.37 1.17 2.23Z\"/><path d=\"M17.1 15.2h-.88a1.12 1.12 0 0 0-1.11 1.12.05.05 0 0 0 .05.05h2.13a.15.15 0 0 0 .15-.16v-.5c0-.43-.06-.51-.34-.51Zm-9.32 0H6.9c-.28 0-.34.08-.34.51v.5a.15.15 0 0 0 .15.16h2.13a.05.05 0 0 0 .05-.05 1.12 1.12 0 0 0-1.11-1.12Z\"/></svg>", "gift": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M5 9v11h13V9Zm1 10v-9h5v9Zm11 0h-5v-9h5ZM6 7h11v1H6z\"/><path d=\"M10.7 7.9 8 4.64 8.77 4l2.85 3.45-.92.45z\"/><path d=\"M12.3 7.9 15 4.64 14.23 4l-2.85 3.45.92.45z\"/></svg>", "globe": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 3a9 9 0 1 0 9 9 9 9 0 0 0-9-9Zm7.41 6H15.8a14.34 14.34 0 0 0-1.34-4.61A8 8 0 0 1 19.41 9ZM15 12c0 .7 0 1.37-.09 2H9.09C9 13.37 9 12.7 9 12s0-1.37.09-2h5.82c.09.63.09 1.3.09 2Zm-3 8a8 8 0 0 1-1.11-.09A11.14 11.14 0 0 1 9.21 15h5.58a11.14 11.14 0 0 1-1.68 4.91A8 8 0 0 1 12 20ZM9.21 9a11.14 11.14 0 0 1 1.68-4.91A8 8 0 0 1 12 4a8 8 0 0 1 1.11.09A11.14 11.14 0 0 1 14.79 9Zm.34-4.61A14.08 14.08 0 0 0 8.2 9H4.59a8 8 0 0 1 4.96-4.61ZM4.26 10H8.1c-.1.65-.1 1.31-.1 2s0 1.35.1 2H4.26a7.82 7.82 0 0 1 0-4Zm.33 5H8.2a14.08 14.08 0 0 0 1.35 4.61A8 8 0 0 1 4.59 15Zm9.87 4.61A14.34 14.34 0 0 0 15.8 15h3.61a8 8 0 0 1-4.95 4.61ZM19.74 14H15.9c.06-.65.1-1.31.1-2s0-1.35-.1-2h3.84a7.82 7.82 0 0 1 0 4Z\"/></svg>", "grid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M20 10V4H4v16h16V10Zm-1-5v4h-4V5Zm-5 0v4h-4V5Zm0 5v4h-4v-4ZM5 5h4v4H5Zm0 5h4v4H5Zm0 9v-4h4v4Zm5 0v-4h4v4Zm9 0h-4v-4h4Zm0-5h-4v-4h4Z\"/></svg>", "highway": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M11 5h1v3h-1zM3 9v3h2v-1H4v-1h15v1h-1v1h2V9H3z\"/><path d=\"M10.36 4h2.28L14 8h1.19l-1.86-5H9.67L7.82 8H9l1.36-4zm4.88 7 3.32 8.99H12V11h-1v8.99H4.44L7.82 11H6.7L3 21h17l-3.7-10h-1.06z\"/></svg>", "home": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 2 4 9v12h6v-7h4v7h6V9Zm7 18h-4v-7H9v7H5V9.48l7-6.3 7 6.3Z\"/></svg>", "horn": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m20 9-1 1H8s-2 0-2-4H3v12h3c0-4 2-4 2-4h1v1c0 1 0 2 2 2h4c2 0 2-1 2-2v-1h2l1 1h1V9Zm-4 6c0 .92 0 1-1 1h-4c-.92 0-1 0-1-1v-1h6Zm4-1.44-.25-.26-.3-.3H8c-.11 0-2.6.05-3 4H4V7h1c.4 4 2.89 4 3 4h11.45l.3-.3.25-.26Z\"/></svg>", "image": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M21 16V5H6v3H3v11h15v-3ZM7 6h13v9h-2V8H7ZM6 18l2-2.5 2.2 2L13 13l3.2 5Zm7-7-3 5-2-2-3.2 4H4V9h13v8.39Z\"/><circle cx=\"6\" cy=\"11\" r=\"1\"/></svg>", "increase": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M3 21h4v-7H3Zm1-6h2v5H4Zm6 6h4V9h-4Zm1-11h2v10h-2Zm6-7v18h4V3Zm3 17h-2V4h2Z\"/></svg>", "information": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M11 7h2v2h-2zm0 4h2v6h-2z\"/><path d=\"M12 3a9 9 0 1 0 9 9 9 9 0 0 0-9-9Zm0 17a8 8 0 1 1 8-8 8 8 0 0 1-8 8Z\"/></svg>", "key": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M18.07 7a7.9 7.9 0 0 0-2.71.71c-1.47.64-2.18 1.39-2.18 2.29H5l-.29.29-1 1L3 12l.69.71 1 1 .69.7.69-.7.67-.71h.17l.69.71.69.7.69-.7.69-.71h.17l.69.71.69.7.7-.7.69-.71h.57c0 .9.71 1.65 2.18 2.29a7.9 7.9 0 0 0 2.71.71C19 16 21 16 21 14V9c0-2-2-2-2.93-2Zm-4.89 5h-1l-1 1-1-1h-1l-1 1-1-1h-1l-1 1-1-1 1-1H13ZM20 14c0 1-1 1-1.95 1s-3.91-1-3.91-2v-3c0-1 2.93-2 3.91-2S20 8 20 9Z\"/><path d=\"M18.56 9a.49.49 0 0 0-.49.5v4a.5.5 0 0 0 .49.5.49.49 0 0 0 .48-.5v-4a.48.48 0 0 0-.48-.5Z\"/></svg>", "leaf": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path fill-rule=\"evenodd\" d=\"M20.58 3.72a1.13 1.13 0 0 0-.17-.23 1.74 1.74 0 0 0-.26-.19A16.2 16.2 0 0 0 17 3a15 15 0 0 0-6.38 1.37 11 11 0 0 0-2 1.22 9.16 9.16 0 0 0-1.23 1.07 5.92 5.92 0 0 0-.39.45 3.42 3.42 0 0 0-.22.28c-.1.12-.19.25-.29.38-1.94 2.54-2.1 5.32.61 8.32l.06.06L3 20.29l.71.71 4.13-4.13.22.21c.19.16.39.32.58.46a6.78 6.78 0 0 0 4 1.42 6.76 6.76 0 0 0 4.54-1.9l.18-.16.39-.39.21-.23a11.33 11.33 0 0 0 .74-.94 12 12 0 0 0 1.19-2.2 15.83 15.83 0 0 0 .69-9.42Zm-1.59 9a11.08 11.08 0 0 1-1.08 2 8.52 8.52 0 0 1-.68.86 1.54 1.54 0 0 1-.17.19l-.33.33-.12.11-.07.06A5.79 5.79 0 0 1 12.67 18a5.8 5.8 0 0 1-3.44-1.23l-.5-.39-.18-.18L12 12.71l-.71-.71-3.44 3.44c-2.2-2.43-2.37-4.66-.56-7l.12-.17.12-.27.17-.22.36-.39a9.93 9.93 0 0 1 1.14-1 10.74 10.74 0 0 1 1.83-1.11A13.91 13.91 0 0 1 17 4a15.63 15.63 0 0 1 2.65.23 14.8 14.8 0 0 1-.65 8.53Z\"/></svg>", "leather": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M13.26 4a5 5 0 0 0 2 2.34 8.57 8.57 0 0 0 3.2.66l.26.42a7.64 7.64 0 0 0-2 4.8 7 7 0 0 0 2.07 5l-.34.67a12.62 12.62 0 0 0-2-.3A6.19 6.19 0 0 0 12 19.4a6.15 6.15 0 0 0-4.38-1.84 14.32 14.32 0 0 0-2.07.3l-.34-.67a6.76 6.76 0 0 0 2.07-5 7.64 7.64 0 0 0-2-4.78L5.54 7a8.57 8.57 0 0 0 3.19-.68 4.85 4.85 0 0 0 2-2.34h2.54M14 3h-4a4 4 0 0 1-1.78 2.49 8.65 8.65 0 0 1-2.9.51A1.17 1.17 0 0 1 5 6L4 7.6a6.56 6.56 0 0 1 2.28 4.67C6.38 14.2 5.35 15.68 4 17l1 2a20.82 20.82 0 0 1 2.62-.44A5.22 5.22 0 0 1 12 21a5.24 5.24 0 0 1 4.42-2.44A19.89 19.89 0 0 1 19 19l1-2a6.31 6.31 0 0 1-2.28-4.73A6.56 6.56 0 0 1 20 7.6L19 6a1.17 1.17 0 0 1-.32 0 8.65 8.65 0 0 1-2.9-.54A4.14 4.14 0 0 1 14 3Z\"/></svg>", "light": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M10 17h5a1.08 1.08 0 0 1 .13-.47C16 15.1 18 11.23 18 9c0-4-2-6-6-6S6 5 6 9c0 2.23 2 6.1 2.91 7.58A1.87 1.87 0 0 1 9 17Zm3-1h-2v-6h2Zm1.31 0H14V9h-4v7h-.28C8.77 14.49 7 10.9 7 9c0-3.46 1.54-5 5-5s5 1.54 5 5c0 1.9-1.77 5.49-2.69 7ZM9 18h6v1H9zm1 2h4v1h-4z\"/></svg>", "list": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M8 16h13v1H8z\"/><circle cx=\"4.5\" cy=\"16.5\" r=\"1.5\"/><path d=\"M8 11h13v1H8z\"/><circle cx=\"4.5\" cy=\"11.5\" r=\"1.5\"/><path d=\"M8 6h13v1H8z\"/><circle cx=\"4.5\" cy=\"6.5\" r=\"1.5\"/></svg>", "locate": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M11.5 8.47a3 3 0 1 0 3 3 3 3 0 0 0-3-3Zm0 5.06a2 2 0 1 1 2-2 2 2 0 0 1-2 2Z\"/><path d=\"M20 11h-2a6.48 6.48 0 0 0-6-6V3h-1v2a6.48 6.48 0 0 0-6 6H3v1h2a6.48 6.48 0 0 0 6 6v2h1v-2a6.48 6.48 0 0 0 6-6h2Zm-8.5 6a5.5 5.5 0 1 1 5.5-5.5 5.51 5.51 0 0 1-5.5 5.5Z\"/></svg>", "lock": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M16 11v3.38c0 3.15-1.43 4.62-4.5 4.62S7 17.53 7 14.38V11h9m1-1H6v4.38C6 17.48 7.37 20 11.5 20s5.5-2.52 5.5-5.62V10Z\"/><path d=\"M11.5 5c1.16 0 2.5.34 2.5 3v2H9V8c0-2.66 1.34-3 2.5-3m0-1C8.88 4 8 5.79 8 8v3h7V8c0-2.21-.88-4-3.5-4Zm-.5 9h1v3h-1z\"/></svg>", "lockOpen": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M16 11v3.38c0 3.15-1.43 4.62-4.5 4.62S7 17.53 7 14.38V11h9m1-1H6v4.38C6 17.48 7.37 20 11.5 20s5.5-2.52 5.5-5.62V10Z\"/><path d=\"M11.5 4a3.15 3.15 0 0 0-3.42 3h1a2.14 2.14 0 0 1 2.42-2c1.16 0 2.5.34 2.5 3v2h-2v1h3V8c0-2.21-.88-4-3.5-4Zm-.5 9h1v3h-1z\"/></svg>", "logoBaidu": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M9 15.86h1.12v2.5H9.11a1.11 1.11 0 0 1-.95-.86 1.64 1.64 0 0 1 .08-.95 1.2 1.2 0 0 1 .76-.69Zm-2.88-3.37c-2 .42-2.74-1.85-2.52-2.9 0 0 .24-2.29 1.85-2.43a2.45 2.45 0 0 1 2.33 2.05c.06.51.34 2.86-1.66 3.28Zm12.08 3.12a3.12 3.12 0 0 1 .61 3.84c-1.09 2.52-5.08 1.21-5.08 1.21a6.78 6.78 0 0 0-3.19-.09 11.57 11.57 0 0 1-3.18.23 2.74 2.74 0 0 1-2.57-2.43c-.57-2.48 2-3.83 2.18-4.06a11.86 11.86 0 0 0 2.38-2.53c.86-1.4 3.42-2.52 5.23.24a20.16 20.16 0 0 0 3.62 3.59Zm-6.84 3.76v-6.15h-1.18v1.67H8.8a2.27 2.27 0 0 0-1.87 1.64 2.9 2.9 0 0 0 .2 1.76 2.3 2.3 0 0 0 1.63 1.1Zm4.84 0V15h-1.29v3.25h-1.23s-.4-.05-.47-.3v-2.89L12 15v3.23s.06.81 1.22 1.1Zm4.23-8.64c0 .56.24 2.94-1.95 3s-2.28-1.45-2.28-2.52.23-2.72 2-2.72a2.28 2.28 0 0 1 2.23 2.22Zm-5.85-2c-1.47-.19-1.81-1.5-1.66-2.81.12-1.07 1.42-2.71 2.47-2.47a2.64 2.64 0 0 1 1.81 2.77c-.2 1.17-1.14 2.72-2.62 2.53Zm-4.75-.17c-1.11 0-2-1.24-2-2.78S8.72 3 9.83 3s2 1.24 2 2.78-.9 2.78-2 2.78Z\"/></svg>", "logoDelicious": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M3 3v18h18V3Zm17.25 17.25H12V12H3.75V3.75H12V12h8.25Z\"/></svg>", "logoDigg": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M5.69 9.25V7h1.93v7.87H3V9.25Zm0 4.15-.05-2.63h-.76v2.63Zm2.68-4.15h1.93v5.62H8.37Zm0-2.25h1.93v1.52H8.37Zm2.69 7.87V9.26h4.61v7.86h-4.61v-1.51h2.68v-.74Zm1.88-4.1v2.63h.76v-2.63Zm3.49-1.52H21v7.86h-4.62v-1.5h2.69v-.74h-2.64Zm2.64 4.15v-2.63h-.76v2.63Z\"/></svg>", "logoFacebook": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M7.5 12.44h2.42V21h3.27v-8.56H16l.51-3.21h-3.32V7a.71.71 0 0 1 .38-.68 1.6 1.6 0 0 1 .77-.21h2.12V3H14a5.38 5.38 0 0 0-2 .36 2.84 2.84 0 0 0-1.3 1 4.16 4.16 0 0 0-.59 1.2 4.51 4.51 0 0 0-.17 1.23v2.44H7.5v3.21Z\"/></svg>", "logoFoursquare": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M16.53 3H7.6A1.54 1.54 0 0 0 6 4.62v15.26a1 1 0 0 0 .55 1.05 1 1 0 0 0 1.08-.25s4.21-5.25 4.29-5.33.11-.12.22-.12h2.73c1.14 0 1.33-.88 1.45-1.4s1.21-6.58 1.59-8.54C18.19 3.8 17.84 3 16.53 3Zm-.21 10.83c.09-.43 1.21-6.58 1.59-8.54ZM16 5.6l-.38 2.1a.62.62 0 0 1-.55.46h-3.48a.66.66 0 0 0-.67.71v.46a.67.67 0 0 0 .67.72h2.95s.55.32.49.64-.34 1.89-.37 2.06a.6.6 0 0 1-.55.48H11.7a.85.85 0 0 0-.87.45c-.29.39-2.93 3.8-2.93 3.8h-.05V5.56A.58.58 0 0 1 8.39 5h7.17a.49.49 0 0 1 .44.6Z\"/></svg>", "logoGmail": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M21 18.75V5.25H3v13.5ZM18.42 16v2.63H5.78v-2.51h.06l4.74-3.83 1.44 1.22 1.27-1.13L18.42 16Zm0-.46-4.83-3.4 4.83-4.2Zm-.8-10.13L12 10.8 6.54 5.37ZM10.34 12l-4.56 3.68V8.15L10.34 12Z\"/></svg>", "logoGoogle": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path fill-rule=\"evenodd\" d=\"M19.53 10.55H12v3.09h4.31a3.67 3.67 0 0 1-1.6 2.41A4.82 4.82 0 1 1 12 7.18a4.35 4.35 0 0 1 3.06 1.2l2.29-2.3A7.67 7.67 0 0 0 12 4a8 8 0 1 0 0 16 7.63 7.63 0 0 0 5.29-1.94 7.77 7.77 0 0 0 2.39-5.88 8.59 8.59 0 0 0-.15-1.63Z\"/></svg>", "logoHatena": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M14.63 14.8a4.28 4.28 0 0 1-.42 1.93 3.86 3.86 0 0 1-1.14 1.42 5.19 5.19 0 0 1-1.84.94 9.48 9.48 0 0 1-2.54.28H3V4.5h5a18.69 18.69 0 0 1 2.51.12 5 5 0 0 1 1.57.53 2.77 2.77 0 0 1 1.21 1.1 3.48 3.48 0 0 1 .39 1.66 3.42 3.42 0 0 1-.54 1.91 3.61 3.61 0 0 1-1.53 1.29v.08a4 4 0 0 1 2.2 1.2 3.5 3.5 0 0 1 .82 2.41ZM9.94 8.69a1.43 1.43 0 0 0-.17-.64 1.12 1.12 0 0 0-.63-.5 3.33 3.33 0 0 0-1-.17H6.58v2.74h1.6a2.62 2.62 0 0 0 1-.17 1.13 1.13 0 0 0 .65-.51 1.67 1.67 0 0 0 .15-.73Zm.89 6.06a1.86 1.86 0 0 0-.26-1.06 1.63 1.63 0 0 0-.89-.55A4.79 4.79 0 0 0 8.5 13H6.57v3.58h2a3.29 3.29 0 0 0 1.23-.25 1.46 1.46 0 0 0 .78-.64 1.84 1.84 0 0 0 .22-.92ZM21 4.5 20.56 15h-3.1L17 4.5Zm-.3 13.37a1.69 1.69 0 1 1-1.7-1.63 1.66 1.66 0 0 1 1.7 1.63Z\"/></svg>", "logoInstagram": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 4.62c-2.4 0-2.69 0-3.64.06A4.8 4.8 0 0 0 6.7 5a2.81 2.81 0 0 0-1 .68 2.74 2.74 0 0 0-.67 1 5 5 0 0 0-.31 1.67v7.27A5.06 5.06 0 0 0 5 17.3a2.74 2.74 0 0 0 .67 1 2.81 2.81 0 0 0 1 .68 5.05 5.05 0 0 0 1.66.3c1 .05 1.24.06 3.64.06s2.69 0 3.64-.06a4.92 4.92 0 0 0 1.67-.3A3 3 0 0 0 19 17.3a5 5 0 0 0 .31-1.67c0-1 .05-1.23.05-3.64s0-2.68-.05-3.63A5.06 5.06 0 0 0 19 6.69 3 3 0 0 0 17.31 5a5.13 5.13 0 0 0-1.67-.3c-.95-.07-1.24-.08-3.64-.08ZM12 3c2.45 0 2.75 0 3.71.06a6.61 6.61 0 0 1 2.19.41 4.64 4.64 0 0 1 2.63 2.63 6.66 6.66 0 0 1 .41 2.19c0 1 .06 1.26.06 3.71s0 2.75-.06 3.71a6.61 6.61 0 0 1-.41 2.19 4.64 4.64 0 0 1-2.63 2.63 6.61 6.61 0 0 1-2.19.41c-1 0-1.26.06-3.71.06s-2.75 0-3.71-.06a6.66 6.66 0 0 1-2.19-.41 4.64 4.64 0 0 1-2.63-2.63 6.61 6.61 0 0 1-.41-2.19C3 14.75 3 14.45 3 12s0-2.75.06-3.71a6.54 6.54 0 0 1 .41-2.18 4.37 4.37 0 0 1 1-1.6 4.42 4.42 0 0 1 1.59-1 6.93 6.93 0 0 1 2.19-.41C9.25 3 9.55 3 12 3Zm0 4.38A4.62 4.62 0 1 1 7.38 12 4.62 4.62 0 0 1 12 7.38ZM12 15a3 3 0 1 0-3-3 3 3 0 0 0 3 3Zm5.89-7.81a1.08 1.08 0 1 1-1.08-1.08 1.08 1.08 0 0 1 1.08 1.08Z\"/></svg>", "logoKaixin": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M13.78 10.09v.13c-.18.56-.63 1-1 .9s-.53-.57-.35-1.13.63-1 1-.9a.39.39 0 0 1 .24.12 1.29 1.29 0 0 0-.85-1 1.43 1.43 0 0 0-1.41.79c0-.86-.33-1.53-.87-1.7-.8-.3-1.79.7-2.21 2.07-.42 1.4-.11 2.73.69 3a1.59 1.59 0 0 0 1.58-.81c0 1 .37 1.76 1 1.9.81.19 1.75-.79 2.08-2.22a4 4 0 0 0 .11-1.13Zm-.28-.66c-.35-.15-.69.14-.44.37.35.15.69-.13.44-.37Zm-3.43.67c-.35-.1-.46-.6-.24-1.1s.69-.93 1-.85.45.59.23 1.15-.64.88-.99.8Zm.63-1.73a.25.25 0 1 0 0 .48c.17 0 .32-.11.32-.24s-.14-.24-.32-.24ZM21 10.61c.24.72-.4 2-1.39 3a9.3 9.3 0 0 1-3.31 1.74l.3 3c.13 1.18.27 2.36-.84 2.59s-2.64-.49-4-1.49l-2-1.53s-1.31 1-2.35 1.68-1.63.9-2.41-.06-.83-3.45-.64-4.71a18.35 18.35 0 0 1 .55-2.4A9.58 9.58 0 0 1 3 7.16c.08-2.68 1.43-2.08 2.14-1.64a6.55 6.55 0 0 0 3 1S11 3 13.33 3c1.26 0 1.41 1.57 1.67 2.81S15.51 9 15.51 9a21.34 21.34 0 0 0 2.49.53c1.71.31 2.75.36 3 1.08Zm-7.36 3.24.38.31a1.84 1.84 0 0 1-.19-.44c-.07-.24-.16-.62-.16-.62l-.08.61s-2.9 2-4.56 1.38-2-3.52-2-3.52l.38-.44a2.28 2.28 0 0 1-.52.27 2.87 2.87 0 0 1-.48.17h.48s.08 3.34 2 3.95 4.71-1.67 4.72-1.67Z\"/></svg>", "logoKakaotalk": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m10 9.72-.67 1.91h1.36L10 9.72Z\"/><path d=\"M12 3C6.48 3 2 6.54 2 10.91c0 2.84 1.9 5.33 4.74 6.72-.21.78-.75 2.83-.86 3.27s.2.54.42.39l3.84-2.62a12.62 12.62 0 0 0 1.86.14c5.52 0 10-3.54 10-7.9S17.52 3 12 3ZM7.08 13.07a.48.48 0 0 1-.49.49h-.1a.46.46 0 0 1-.34-.14.47.47 0 0 1-.15-.35v-3.5H5a.5.5 0 1 1 0-1h3a.5.5 0 0 1 0 1h-.9Zm4.79.46a.48.48 0 0 1-.62-.29l-.25-.71H9l-.25.71a.49.49 0 0 1-.62.29.47.47 0 0 1-.29-.61l1.44-3.85v-.06a.69.69 0 0 1 .71-.5.7.7 0 0 1 .68.42l1.46 4a.47.47 0 0 1-.26.6Zm3.13 0h-2a.45.45 0 0 1-.45-.45v-4a.54.54 0 1 1 1.07 0v3.57H15a.47.47 0 0 1 .46.46.46.46 0 0 1-.46.42Zm4.25-.06a.48.48 0 0 1-.67-.1l-1.44-1.88-.3.31V13a.54.54 0 0 1-.54.54.54.54 0 0 1-.54-.54V9a.54.54 0 0 1 .54-.54.54.54 0 0 1 .54.54v1.4l1.69-1.69a.47.47 0 1 1 .67.67l-1.37 1.42 1.52 2a.48.48 0 0 1-.1.67Z\"/></svg>", "logoLinkedin": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M3.3 8H7v12H3.3V8zm1.9-6c1.2 0 2.2 1 2.2 2.2 0 1.2-1 2.2-2.2 2.2C4 6.3 3 5.4 3 4.2 3 3 4 2 5.2 2zm4.2 6H13v1.6c.7-1.3 2.1-2 3.5-1.9 3.8 0 4.5 2.5 4.5 5.7V20h-3.7v-5.8c0-1.4 0-3.2-1.9-3.2s-2.2 1.5-2.2 3.1V20H9.4V8z\"/></svg>", "logoNaver": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M14.85 12.56 8.92 4H4v16h5.15v-8.56L15.08 20H20V4h-5.15v8.56z\"/></svg>", "logoPinterest": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M5.25 9.47a5.47 5.47 0 0 0 .52 2.44 3 3 0 0 0 1.54 1.5.32.32 0 0 0 .5-.24 2.44 2.44 0 0 1 .08-.44 2 2 0 0 1 .12-.4.56.56 0 0 0-.16-.56 3.13 3.13 0 0 1-.66-2 4.88 4.88 0 0 1 1.38-3.5 4.67 4.67 0 0 1 3.55-1.45 4.19 4.19 0 0 1 3.08 1.1 3.9 3.9 0 0 1 1.11 2.88 7.76 7.76 0 0 1-.9 3.88 2.6 2.6 0 0 1-2.28 1.59 1.61 1.61 0 0 1-1.3-.58 1.52 1.52 0 0 1-.3-1.39c.08-.32.2-.75.35-1.27s.29-1 .39-1.39a4 4 0 0 0 .16-1 1.74 1.74 0 0 0-.35-1.09 1.23 1.23 0 0 0-1-.44 1.69 1.69 0 0 0-1.38.77 3.14 3.14 0 0 0-.56 1.89 4.91 4.91 0 0 0 .08.86 1.43 1.43 0 0 0 .19.58l.08.2Q8.36 16.15 8.16 17a11.2 11.2 0 0 0 0 3.94.09.09 0 0 0 .08.1.16.16 0 0 0 .15 0 10.54 10.54 0 0 0 1.79-3.41c.49-1.75.74-2.69.74-2.82a2.19 2.19 0 0 0 .95.9 2.93 2.93 0 0 0 1.49.39 4.65 4.65 0 0 0 3.88-2 8.25 8.25 0 0 0 1.51-5.11A5.64 5.64 0 0 0 17 4.77 6.19 6.19 0 0 0 12.43 3a6.92 6.92 0 0 0-5.26 2 6.33 6.33 0 0 0-1.92 4.47Z\"/></svg>", "logoQq": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m3 10 4.3 4.22-.89 6.18 5.51-2.89 5.34 2.93-.64-5.1a21.49 21.49 0 0 1-4.18.4A29 29 0 0 1 9 15.58l-1.25-.2 5.59-4.06a18.65 18.65 0 0 0-2.52-.26c-1.13-.07-2.13-.12-3-.14H6.58q7.59-1 9.88-.13l-5.91 4.1 6 .16-.12-.88L21 10l-6.31-.76-2.85-5.68-2.93 5.63Zm13.58 5.1v.29l1.05-.25Z\"/></svg>", "logoQqShare": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M20.42 13.05a14.93 14.93 0 0 0-1.18-2 1.94 1.94 0 0 0 0-1.63 5.47 5.47 0 0 1-.37-.66c-.13-.37-.11-.8-.2-1.15a8.22 8.22 0 0 0-.31-1C17.54 4.45 15.79 3.26 13 3h-1.08a7.72 7.72 0 0 0-2.28.53A5.26 5.26 0 0 0 8 4.65a6 6 0 0 0-1.86 3.6v.36c0 .11-.14.18-.14.3a2.17 2.17 0 0 0-.12.69 1.64 1.64 0 0 0-.29 1.47 6.92 6.92 0 0 0-1.92 2.12A5 5 0 0 0 3 16c0 .31.08.77.34.83a.73.73 0 0 0 .41-.09 2.32 2.32 0 0 0 .84-.74c.09-.15.11-.34.26-.45A2.1 2.1 0 0 1 5 16a4.67 4.67 0 0 0 1.45 2c.1.08.26.16.29.27-.67.06-1.21.2-1.44.64a1.65 1.65 0 0 0-.14.82c.06.52.67.81 1.13 1a8.86 8.86 0 0 0 3.12.27 5 5 0 0 0 2.34-.67c.11-.06.19-.16.28-.17a3.94 3.94 0 0 1 .4 0h.38a6.6 6.6 0 0 1 .86.28c1.53.49 4.11.6 5.35-.18a1 1 0 0 0 .48-.63.87.87 0 0 0-.5-.83 9.06 9.06 0 0 0-1.22-.71 5 5 0 0 0 1.1-1.67 1.78 1.78 0 0 1 .3-.62 6.59 6.59 0 0 0 .42.71c.14.2.33.52.6.51a.56.56 0 0 0 .41-.27 2.22 2.22 0 0 0 .39-1.13 4.8 4.8 0 0 0-.57-2.56Z\"/></svg>", "logoReddit": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M22 12.03c0-1.21-.99-2.18-2.19-2.18-.59 0-1.13.23-1.52.61-1.51-1.07-3.57-1.77-5.86-1.86l1-4.68 3.26.7c.04.82.72 1.48 1.56 1.48.86 0 1.56-.7 1.56-1.55a1.56 1.56 0 0 0-2.96-.68l-3.64-.77c-.11-.02-.22 0-.29.05-.09.05-.14.14-.16.25l-1.11 5.21c-2.33.07-4.43.77-5.95 1.86-.38-.37-.92-.6-1.51-.6-1.22 0-2.19.98-2.19 2.18 0 .89.54 1.64 1.29 1.98-.04.21-.05.43-.05.66 0 3.36 3.92 6.09 8.76 6.09s8.76-2.71 8.76-6.09c0-.21-.02-.45-.05-.66.75-.34 1.29-1.11 1.29-2zM6.98 13.58c0-.86.7-1.55 1.56-1.55.86 0 1.56.7 1.56 1.55s-.7 1.55-1.56 1.55c-.86.03-1.56-.69-1.56-1.55zm8.73 4.13c-1.08 1.07-3.12 1.14-3.71 1.14-.61 0-2.65-.09-3.71-1.14a.398.398 0 0 1 0-.57c.16-.16.41-.16.57 0 .68.68 2.11.91 3.14.91s2.47-.23 3.14-.91c.16-.16.41-.16.57 0 .14.16.14.41 0 .57zm-.29-2.55c-.86 0-1.56-.7-1.56-1.55 0-.86.7-1.55 1.56-1.55.86 0 1.56.7 1.56 1.55 0 .83-.7 1.55-1.56 1.55z\"/></svg>", "logoSkyrock": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12.55 13.79a3.09 3.09 0 0 1 .25 1.72 3.26 3.26 0 0 1-.6 1.58 3.14 3.14 0 0 1-1.67 1.11 6 6 0 0 1-1.75.28 7.68 7.68 0 0 1-2.08-.19 3.43 3.43 0 0 1-2.27-1.68A3.75 3.75 0 0 1 4 15v-.09h2.22v.14a2 2 0 0 0 .21.63 1.53 1.53 0 0 0 .81.69 3.73 3.73 0 0 0 2.51.09 1.15 1.15 0 0 0 .84-.82.88.88 0 0 0-.32-1 3.43 3.43 0 0 0-1-.53c-.46-.17-.94-.28-1.42-.41a16.22 16.22 0 0 1-2-.56 2.33 2.33 0 0 1-1.27-1 3.45 3.45 0 0 1-.1-3 2.87 2.87 0 0 1 1.7-1.45 5.67 5.67 0 0 1 1.69-.31 6.37 6.37 0 0 1 2.38.26 3.09 3.09 0 0 1 2.12 2.45 3.31 3.31 0 0 1 .07.55v.07h-2a1.67 1.67 0 0 0-.19-.55 1.7 1.7 0 0 0-1.33-.94 3.55 3.55 0 0 0-1.62 0 1.19 1.19 0 0 0-.91 1.17.77.77 0 0 0 .3.61 2.64 2.64 0 0 0 1 .48l2.27.6a8 8 0 0 1 1.43.48 2.42 2.42 0 0 1 1.16 1.23Zm3.46.33L18.3 21l-.65-.46-4.44-3.15v-.07a4 4 0 0 0 .55-1.32l1.68 1.19-.13-.4-1.07-3.2 3.15-2.23h-3.91v-.16a9.43 9.43 0 0 0-.07-1.06 4.18 4.18 0 0 0-1.05-2.28 3.79 3.79 0 0 0-1.27-.94h-.08L12.3 3l2.28 6.87H22l-6 4.25Z\"/></svg>", "logoSohu": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m6.18 12.46-1 .34v2.61c0 .89-.34 1.06-1.68 1a3.84 3.84 0 0 0-.25-.87h.94c.13 0 .17-.05.17-.18v-2.29c-.34.12-.65.21-.9.29a.2.2 0 0 1-.15.16L3 12.5c.36-.09.81-.2 1.31-.34v-1.9h-1.2v-.83h1.2V7.51h1c0 .09-.07.14-.22.16v1.76h1v.83h-1V12l1-.27.1.78Zm4.58.3.56.27a.29.29 0 0 1-.11.11 4.7 4.7 0 0 1-1.6 1.95 9.31 9.31 0 0 0 2.17.59 3.38 3.38 0 0 0-.55.79 8.84 8.84 0 0 1-2.49-.87 10.28 10.28 0 0 1-2.8.85 3.19 3.19 0 0 0-.4-.75A10 10 0 0 0 8 15.09a5.45 5.45 0 0 1-1.24-1.3l.55-.23H6.16v-.77h4.6Zm-2.38-.16V12h-2V8.3l.42.15a4.65 4.65 0 0 0 1-.62l.56.54V7.5l1 .07c0 .07-.07.12-.21.14v3.52h1.32v-.8h-1v-.67h1V9h-1v-.74h1.76V12H9.16v.65Zm-1.22-1.37h1.22V8.5H8.3a7.18 7.18 0 0 1-1.14.5v.72H8v.67h-.84Zm.37 2.33a4.14 4.14 0 0 0 1.26 1.11 3.87 3.87 0 0 0 1.26-1.11Zm5.39-6a6.09 6.09 0 0 1 .9 1 7.91 7.91 0 0 0 .64-1l.88.45c0 .05-.09.09-.2.08a8.77 8.77 0 0 1-.88 1.3 8 8 0 0 1 .55 3.34 7 7 0 0 1-.48 3.27c-.19.25-.43.41-1.23.41h-.38a2 2 0 0 0-.23-.87h.59c.34 0 .48 0 .62-.17a8.62 8.62 0 0 0 .3-2.77 7.76 7.76 0 0 1-1.29 1.45 3 3 0 0 0-.57-.67 6.28 6.28 0 0 0 1.79-2.07 5.45 5.45 0 0 0-.27-1.21c-.29.29-.58.57-.88.82a3.67 3.67 0 0 0-.6-.58 8.45 8.45 0 0 0 1.11-1.06 5.6 5.6 0 0 0-1-1.24l.61-.47Zm3.31.86a17.93 17.93 0 0 0 3.42-.93l.82.66a.3.3 0 0 1-.22.05l-.62.2c.16 3 .47 5.93 1.37 7.4a3 3 0 0 0-.65.67c-1-1.69-1.25-4.63-1.43-7.87-.77.2-1.65.38-2.47.52v2.35a12.74 12.74 0 0 1-.4 3.39l1.27-.08V9l.93.06c0 .07-.06.12-.19.14v5.51h.68c-.1-.42-.22-.83-.34-1.19l.58-.16a17.63 17.63 0 0 1 .68 2.64l-.62.18c0-.22-.07-.48-.13-.75-1 .12-1.91.22-2.54.28a.17.17 0 0 1-.14.13L16 15a5.62 5.62 0 0 1-.69 1.49 2.08 2.08 0 0 0-.62-.56 8.13 8.13 0 0 0 1-4.47V8.25l.57.18Z\"/></svg>", "logoTecent": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 3a7.32 7.32 0 1 1-1.95 14.37c-.46-.2-.22-.74-.22-.74.2-.58.61-.41.61-.41a6.12 6.12 0 1 0-3.72-2.85c.18.6-.24.74-.24.74a.56.56 0 0 1-.76 0A7.32 7.32 0 0 1 12 3Zm0 4.88a2.44 2.44 0 0 1 0 4.88 2.41 2.41 0 0 1-1.42-.46 16.23 16.23 0 0 0-3.47 6.45 14.59 14.59 0 0 0-.4 1.88.89.89 0 0 1-.86.35.7.7 0 0 1-.39-.29 17.86 17.86 0 0 1 4.33-9.34A2.44 2.44 0 0 1 12 7.88Z\"/></svg>", "logoTelegram": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M7.73 13.29 3.64 12c-.88-.27-.89-.87.2-1.31L19.78 4.6c.73-.33 1.44.17 1.16 1.28l-2.72 12.71c-.18.91-.73 1.12-1.49.71l-4.14-3-2 1.92a1 1 0 0 1-.83.41c-.54 0-.44-.2-.63-.7Z\"/></svg>", "logoTiktok": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M17.6 6.65a4.349 4.349 0 0 1-1.93-2.86 4.07 4.07 0 0 1-.08-.79h-3.17l.06 12.34c-.05 1.41-1.22 2.53-2.66 2.53-1.7 0-2.66-1.42-2.66-2.63 0-1.45 1.19-2.63 2.66-2.63.27 0 .54.04.79.12v-3.2c-.26-.03-.52-.06-.79-.06C6.61 9.47 4 12.06 4 15.24c0 1.95.99 3.68 2.49 4.72.94.65 2.1 1.04 3.34 1.04 3.21 0 5.83-2.59 5.83-5.76l-.06-6.15a7.59 7.59 0 0 0 4.41 1.4V7.35c-.89.01-1.72-.25-2.41-.7\"/></svg>", "logoTumblr": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M8.93 14.38V10.8c0-.23-.07-.28-.28-.28H7.01c-.2 0-.28 0-.27-.28V8.41A.34.34 0 0 1 7 8.06 6.2 6.2 0 0 0 9.42 5.9a5 5 0 0 0 .81-2.62c0-.23.08-.28.28-.28h1.67c.21 0 .27.07.27.29v4.09c0 .25.06.32.3.32h3.78c.25 0 .3.08.3.32v2.26c0 .22-.07.26-.25.26h-3.83c-.23 0-.31 0-.31.31v5.2a4 4 0 0 0 .05.6 1.83 1.83 0 0 0 1.81 1.65 6.35 6.35 0 0 0 2.63-.63c.31-.13.31-.13.31.21v2.26c0 .13 0 .22-.15.26a12.78 12.78 0 0 1-5.17.54 4 4 0 0 1-1.73-.63 2.83 2.83 0 0 1-1.26-2.42V14.4Z\"/></svg>", "logoTwitter": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M3 17.82a10.88 10.88 0 0 0 5.81 1.68 9.9 9.9 0 0 0 7.55-3.27 10.45 10.45 0 0 0 2.86-7.84v-.14a6.26 6.26 0 0 0 1.78-2 5.31 5.31 0 0 1-2.06.62 3.35 3.35 0 0 0 .91-.87 3.36 3.36 0 0 0 .64-1.2 5.91 5.91 0 0 1-1.15.55 3.52 3.52 0 0 1-1.15.26 3.7 3.7 0 0 0-2.72-1.11 3.53 3.53 0 0 0-2.6 1.11 3.63 3.63 0 0 0-1.1 2.69 4.12 4.12 0 0 0 .09.86 10.4 10.4 0 0 1-4.33-1.1A9.6 9.6 0 0 1 4 5.22a4.17 4.17 0 0 0-.31 2.93 3.52 3.52 0 0 0 1.43 2.07 1.9 1.9 0 0 1-1.59-.43 3.86 3.86 0 0 0 .63 2.26 3.72 3.72 0 0 0 2.23 1.49 2.38 2.38 0 0 1-1.55.09 2.72 2.72 0 0 0 1.1 1.76 3.41 3.41 0 0 0 2.23.84 5.31 5.31 0 0 1-2 1.3 5.71 5.71 0 0 1-3.17.29Z\"/></svg>", "logoViber": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M19.61 16c.75.6 1.72 1.1 1.26 2.36A4.24 4.24 0 0 1 17.38 21a5.47 5.47 0 0 1-.93-.26A23.4 23.4 0 0 1 3.32 7.81c-.85-2 0-3.76 2.18-4.47a1.69 1.69 0 0 1 1.13 0c.91.33 3.23 3.45 3.28 4.38A1.62 1.62 0 0 1 9 9.15a1.62 1.62 0 0 0-.53 2.29 8.44 8.44 0 0 0 4.42 4.22 1.39 1.39 0 0 0 1.9-.45c.87-1.3 2-1.23 3.13-.42.59.4 1.19.8 1.74 1.24ZM12.73 4c-.37 0-.93 0-.91-.46 0-.71.72-.44 1-.49a8.44 8.44 0 0 1 8 8.18c0 .41.15 1-.48 1s-.44-.63-.49-1c-.57-4.43-2.64-6.52-7.13-7.2Zm.88 1.22a5.6 5.6 0 0 1 5 5.27c-.05.3.13.83-.37.91-.68.09-.55-.52-.62-.91-.46-2.69-1.42-3.69-4.19-4.29-.41-.09-1 0-.94-.65s.69-.43 1.12-.37Zm.26 2.11A3 3 0 0 1 16.51 10c0 .34 0 .7-.44.75s-.49-.21-.52-.51a2 2 0 0 0-1.85-2c-.34-.05-.67-.16-.51-.61.11-.3.39-.33.68-.34Z\"/></svg>", "logoVk": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M11.81 17.08h1.07a.91.91 0 0 0 .5-.21.77.77 0 0 0 .14-.47s0-1.42.65-1.63 1.51 1.38 2.41 2a1.74 1.74 0 0 0 1.2.36h2.4s1.26-.07.66-1a8.07 8.07 0 0 0-1.79-2c-1.51-1.38-1.3-1.15.51-3.54C20.67 9 21.11 8.11 21 7.73s-1-.27-1-.27h-2.71a.6.6 0 0 0-.35.06.74.74 0 0 0-.24.29 15.81 15.81 0 0 1-1 2.08c-1.2 2-1.69 2.12-1.88 2-.46-.29-.35-1.18-.35-1.8 0-2 .3-2.77-.58-3A4.73 4.73 0 0 0 11.66 7a5.77 5.77 0 0 0-2.25.23c-.31.15-.55.48-.4.5a1.24 1.24 0 0 1 .8.39 2.55 2.55 0 0 1 .27 1.21s.16 2.3-.38 2.59c-.36.2-.86-.2-1.94-2a15.92 15.92 0 0 1-1-2 .81.81 0 0 0-.23-.3 1.15 1.15 0 0 0-.41-.16H3.59s-.39 0-.53.18 0 .45 0 .45 2 4.65 4.29 7a6.24 6.24 0 0 0 4.47 2Z\"/></svg>", "logoWechat": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M9.37 4.69c3.13 0 5.88 1.9 6.43 4.46h-.61a5.22 5.22 0 0 0-5.42 5 4.51 4.51 0 0 0 .2 1.33h-.6a10.81 10.81 0 0 1-2.23-.32l-2.23 1.13.64-1.91A5.19 5.19 0 0 1 3 10.09c0-3.02 2.87-5.4 6.37-5.4ZM7.3 9a.76.76 0 0 0 .8-.8.75.75 0 0 0-.8-.79.89.89 0 0 0-1 .79.9.9 0 0 0 1 .8Zm4.46 0a.76.76 0 0 0 .8-.8.75.75 0 0 0-.8-.79.89.89 0 0 0-1 .79.9.9 0 0 0 1 .8ZM21 14.07a4.79 4.79 0 0 1-2.23 3.65l.48 1.59-1.75-.95a8 8 0 0 1-1.91.32c-3 0-5.42-2.07-5.42-4.61s2.39-4.61 5.42-4.61c2.86 0 5.41 2.07 5.41 4.61Zm-7.17-.8a.73.73 0 0 0 .8-.64.73.73 0 0 0-.8-.63.64.64 0 1 0 0 1.27Zm3.51 0a.72.72 0 0 0 .79-.64.73.73 0 0 0-.79-.63.64.64 0 1 0 0 1.27Z\"/></svg>", "logoWeibo": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M3 14.51A4 4 0 0 0 5.3 18a10.34 10.34 0 0 0 5.25 1.32 9.87 9.87 0 0 0 5.8-1.64c1.57-1.1 2.35-2.26 2.35-3.48a2.07 2.07 0 0 0-.64-1.57 3.8 3.8 0 0 0-1.55-.9q-.41-.13-.27-.45a1.86 1.86 0 0 0 0-1.79 1.78 1.78 0 0 0-1.55-.64 6.2 6.2 0 0 0-2.45.6c-.31.12-.46.09-.46-.09v-.1a2.09 2.09 0 0 0-.18-2.15c-.48-.49-1.3-.5-2.46-.05a10.67 10.67 0 0 0-3.45 2.38Q3 12.14 3 14.51Zm1.84.71a3 3 0 0 1 1.32-2.67 6.83 6.83 0 0 1 3.71-1.42 6.76 6.76 0 0 1 3.91.66 3 3 0 0 1 1.82 2.36 3 3 0 0 1-1.34 2.67 6.65 6.65 0 0 1-3.71 1.42 6.94 6.94 0 0 1-3.89-.67 3 3 0 0 1-1.82-2.35Zm2.35.91a2.16 2.16 0 0 0 1.45 1.26 3.07 3.07 0 0 0 2.25-.11 2.84 2.84 0 0 0 1.57-1.53 2.07 2.07 0 0 0 0-1.92 2.3 2.3 0 0 0-1.57-1.19 3.22 3.22 0 0 0-2.11.18 2.88 2.88 0 0 0-1.53 1.42 2.19 2.19 0 0 0 0 1.9Zm.81-.27a.82.82 0 0 1 .11-.69 1.17 1.17 0 0 1 .59-.48 1 1 0 0 1 .75 0 .74.74 0 0 1 .46.5.84.84 0 0 1-.14.69 1.32 1.32 0 0 1-.61.48.92.92 0 0 1-.73 0 .7.7 0 0 1-.43-.5Zm2.09-1.44a.36.36 0 0 1 .5-.18c.21.09.26.24.14.46a.36.36 0 0 1-.5.18c-.23-.09-.23-.25-.13-.46Zm4.63-8.82A.69.69 0 0 0 15 6a.64.64 0 0 0 .5.12 3.16 3.16 0 0 1 3.23 1 3.22 3.22 0 0 1 .73 3.34.67.67 0 0 0 0 .5.55.55 0 0 0 .39.34.87.87 0 0 0 .55 0 .51.51 0 0 0 .32-.39 4.75 4.75 0 0 0-1-4.69 4.65 4.65 0 0 0-2.1-1.35 5 5 0 0 0-2.43-.13.77.77 0 0 0-.43.32.56.56 0 0 0-.09.5Zm.59 2.31c.07.38.31.52.7.43a1 1 0 0 1 1.07.37 1.09 1.09 0 0 1 .25 1.09.55.55 0 0 0 .37.78c.36.12.6 0 .72-.41A2.16 2.16 0 0 0 18 7.91a2.17 2.17 0 0 0-2.21-.71.53.53 0 0 0-.43.71Z\"/></svg>", "logoWhatsapp": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M18.38 5.62A8.88 8.88 0 0 0 12.06 3a9 9 0 0 0-9 8.92 8.78 8.78 0 0 0 1.24 4.5L3 21l4.75-1.24A8.91 8.91 0 0 0 12 20.84a9 9 0 0 0 9-8.91 8.79 8.79 0 0 0-2.62-6.28ZM12 19.34a7.53 7.53 0 0 1-3.83-1.05L8 18.15l-2.82.73.76-2.73-.18-.28a7.28 7.28 0 0 1-1.14-3.94 7.45 7.45 0 0 1 14.9 0A7.45 7.45 0 0 1 12 19.34Zm4.09-5.55c-.23-.12-1.33-.65-1.53-.73s-.36-.11-.51.11-.58.73-.71.87-.26.17-.48.06a6.1 6.1 0 0 1-1.77-1.1 6.85 6.85 0 0 1-1.24-1.54A.32.32 0 0 1 10 11a4.77 4.77 0 0 0 .33-.39 1.76 1.76 0 0 0 .23-.37.44.44 0 0 0 0-.39c-.06-.11-.51-1.21-.69-1.66s-.37-.37-.51-.38h-.49a.85.85 0 0 0-.6.28 2.49 2.49 0 0 0-.79 1.86 4.35 4.35 0 0 0 .92 2.31 10 10 0 0 0 3.82 3.36 12 12 0 0 0 1.19.45 3.23 3.23 0 0 0 1 .16 3.1 3.1 0 0 0 .54-.05 2.29 2.29 0 0 0 1.49-1.06 1.78 1.78 0 0 0 .11-1.12c-.05-.09-.2-.14-.42-.26Z\"/></svg>", "logoXing": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m9.11 7 1.75 3.11c-.07.13-1 1.78-2.74 5a.8.8 0 0 1-.69.5H4.86a.37.37 0 0 1-.31-.18.42.42 0 0 1 0-.2.38.38 0 0 1 0-.19l2.7-4.88-1.72-3a.38.38 0 0 1 0-.41.36.36 0 0 1 .34-.16h2.54a.8.8 0 0 1 .7.41Zm10.33-3.43-5.62 10.16 3.58 6.69a.4.4 0 0 1 0 .41.38.38 0 0 1-.34.16h-2.54a.77.77 0 0 1-.7-.49l-3.61-6.77 5.65-10.24a.78.78 0 0 1 .68-.49h2.57a.34.34 0 0 1 .33.16.38.38 0 0 1 0 .41Z\"/></svg>", "logoYahoo": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M11.86 8.28h3.23c.8 0 2.54 0 3 .05l-.42.67a12.82 12.82 0 0 0-1.73.34c-.42.14-4 3-4.22 3.71a5.37 5.37 0 0 0-.09 1l-.05.58a12.42 12.42 0 0 0 .14 1.37c.23.05 1.92 0 2.25.05l-.05.73h-3.7c-.66 0-2.67.05-3.28.05l.06-.65c.33 0 1.74.05 2.06-.29.14-.15.1-.34.1-1.32v-.44a8.07 8.07 0 0 0 0-1 36.64 36.64 0 0 0-4.1-5.2c-.23 0-1.69-.19-2.06-.29V7c.19-.1 1.83 0 3.42 0h3.71l-.1.53c-.28.1-1.83.15-2.2.25 1 1.56 2.62 3.61 3.14 4.39.28-.44 2.81-2.24 2.9-2.88A16.67 16.67 0 0 0 12 9l-.14-.73Zm8-.25c.79.1.94.1 1.17.15l-.36 1.12c-.33.93-1.17 5-1.26 5.27l-1.13-.1c.1-.58 0-5.17 0-5.66l-.05-1a12.26 12.26 0 0 0 1.6.19ZM18 15.55l.8.1h.65l-.18 1.37h-.61l-.61-.09Z\"/></svg>", "logoYouku": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M5.11 8s.68-1.53.78-1.73.35-.61.83-.37.2.82.2.82l-2 4.45s-.33.52-.77.28-.22-.8-.22-.8l.61-1.32s-1.05-1.8-1.42-2.5A.69.69 0 0 1 3.18 6c.42-.27.71-.11.94.25S5.11 8 5.11 8Zm3.53-2.16A2 2 0 0 1 10.52 8a2 2 0 0 1-1.88 2 2 2 0 0 1-1.86-2.1 2 2 0 0 1 1.86-2.06Zm0 3.2c.49 0 .86-.45.86-1.1s-.35-1.08-.85-1.08-.87.43-.87 1.08S8.16 9 8.65 9Zm2-2.51c0-.25.09-.62.52-.62s.48.35.48.6v1.84c0 .37.15.84.71.84s.68-.52.68-.85V6.52c0-.26.09-.6.49-.6a.51.51 0 0 1 .48.58v2c0 .83-.44 1.53-1.69 1.53a1.47 1.47 0 0 1-1.67-1.54v-2Zm7 0c0-.25.09-.62.52-.62s.47.35.47.6v1.84c0 .37.15.84.71.84s.69-.52.69-.85V6.52c0-.26.08-.6.48-.6a.51.51 0 0 1 .49.58v2c0 .83-.44 1.53-1.68 1.53a1.47 1.47 0 0 1-1.67-1.54v-2Zm-3.5 2.89V6.6a.55.55 0 1 1 1.09 0v1s1.18-1.25 1.42-1.47a.53.53 0 0 1 .72 0 .48.48 0 0 1 0 .71c-.22.25-1 1.07-1 1.07l1.15 1.19a.5.5 0 0 1 0 .73.63.63 0 0 1-.83 0l-1.45-1.38v1a.55.55 0 1 1-1.09 0Zm-6.3 3.06A8.4 8.4 0 0 1 7.25 14v4.15h-.72v-2.9a4.84 4.84 0 0 1-.38.58l-.64-.48a13.26 13.26 0 0 0 1.58-3.25l.75.38Zm-.07 5.71-.64-.56a4.19 4.19 0 0 0 1.58-3.19H7.49v-.64h1.29v-1.64h.7v1.64h2.28v.64h-1.37v2.93c0 .08 0 .12.11.12h.5c.08 0 .14-.05.18-.16a8.23 8.23 0 0 0 .07-1.08l.76.23v.61a1 1 0 0 1-.79 1.1h-.94a.68.68 0 0 1-.6-.63v-3.1H9.5a5.21 5.21 0 0 1-1.73 3.75Zm3.87-5-.48.53-1.16-1 .49-.52 1.15 1Zm5.88 1.39h1.19v.6h-3.07v-.6h1.24v-.86h-.59a5.24 5.24 0 0 1-.16.69l-.61-.1a12.18 12.18 0 0 0 .26-1.8h.67a2.86 2.86 0 0 1-.05.61h.47v-.84h.66v.84h.94v.61h-.95v.86Zm-1.75 3v-2.07h2.69v2.17s-.07.51-.54.51h-1.67c-.25 0-.48-.19-.48-.61Zm.69-1.47v1.31s0 .15.2.15h1a.14.14 0 0 0 .16-.15v-1.31Zm-1.27-2.55c.2 0 .22.1.22.32v3.72s-.27.59-.49.59H13c-.37 0-.65-.16-.65-.56v-3.84a.21.21 0 0 1 .23-.23h.73V13h-1v-.61h3.09V13h-.82v.6Zm-.61.73v.89c0 .08 0 .12.08.12h.16v-1ZM13.86 13v.6H14V13ZM13 14.29v1.19a1.33 1.33 0 0 0 .25-.75v-.44Zm0 1.46v.48h1.78v-.36h-.37a.47.47 0 0 1-.45-.5v-1.08h-.13v.4a1.62 1.62 0 0 1-.46 1.31Zm1.66 1.82c.16 0 .12-.11.12-.11v-.62H13v.62a.12.12 0 0 0 .13.11Z\"/></svg>", "logoYoutube": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M20.82 8.59a3.56 3.56 0 0 0-.72-1.69 2.66 2.66 0 0 0-1.8-.73C15.78 6 12 6 12 6s-3.78 0-6.3.17a2.69 2.69 0 0 0-1.81.73 3.51 3.51 0 0 0-.71 1.69A24.46 24.46 0 0 0 3 11.35v1.29a24.75 24.75 0 0 0 .18 2.77 3.6 3.6 0 0 0 .72 1.69 3.13 3.13 0 0 0 2 .73C7.32 18 12 18 12 18s3.78 0 6.3-.18a2.63 2.63 0 0 0 1.8-.72 3.6 3.6 0 0 0 .72-1.69 24.52 24.52 0 0 0 .18-2.77v-1.29a24.46 24.46 0 0 0-.18-2.76Zm-10.68 5.62V9.42l4.86 2.4Z\"/></svg>", "logout": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M11.5 18.94A7.44 7.44 0 1 1 16.55 6l.72-.77a8.5 8.5 0 1 0 0 12.46l-.72-.69a7.42 7.42 0 0 1-5.05 1.94Z\"/><path d=\"m17 15.5 4-4-4-4V9l2 2h-9v1h9l-2 2v1.5z\"/></svg>", "map": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M11.05 13.73 12 15l1-1.27s.74-1 1.47-2.15C15.84 9.31 16 8.34 16 7.81A3.91 3.91 0 0 0 12 4a3.91 3.91 0 0 0-4 3.81c0 .53.16 1.5 1.58 3.77.73 1.16 1.42 2.11 1.47 2.15ZM12 5a2.92 2.92 0 0 1 3 2.81 7.78 7.78 0 0 1-1.43 3.24c-.68 1.09-1.35 2-1.42 2.09l-.15.19-.15-.2s-.7-.94-1.42-2.08A7.78 7.78 0 0 1 9 7.81 2.92 2.92 0 0 1 12 5Z\"/><path d=\"M18 12h-2.24l-.55 1h2.22l1.8 3H4.77l1.8-3h2.22l-.55-1H6l-3 5h18l-3-5z\"/></svg>", "menuDotsHorizontal": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><circle cx=\"5\" cy=\"12\" r=\"2\"/><circle cx=\"12\" cy=\"12\" r=\"2\"/><circle cx=\"19\" cy=\"12\" r=\"2\"/></svg>", "menuDotsVertical": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><circle cx=\"12\" cy=\"19\" r=\"2\"/><circle cx=\"12\" cy=\"12\" r=\"2\"/><circle cx=\"12\" cy=\"5\" r=\"2\"/></svg>", "menuLines": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M3 6h18v1H3zm0 10h18v1H3zm0-5h18v1H3z\"/></svg>", "minus": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M3 11h18v1H3z\"/></svg>", "mobile": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M16 3H7v18h10V3Zm0 17H8v-3h8Zm0-4H8V6h8Zm0-11H8V4h8Z\"/><path d=\"M11.56 19h.88a.5.5 0 1 0 0-1h-.88a.5.5 0 1 0 0 1Z\"/></svg>", "moon": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M16.87 19.63A8.16 8.16 0 0 1 14.55 18a8.41 8.41 0 0 1-.14-11.88 8.54 8.54 0 0 1 2.47-1.74.63.63 0 0 0 .36-.65.65.65 0 0 0-.51-.56A9.26 9.26 0 0 0 14.92 3a8.88 8.88 0 0 0-6.36 2.67A9 9 0 0 0 15 21a8.79 8.79 0 0 0 1.69-.16.64.64 0 0 0 .51-.55.65.65 0 0 0-.33-.66ZM15 20A8 8 0 0 1 9.27 6.37 7.86 7.86 0 0 1 14.92 4h.55a9.39 9.39 0 0 0-1.62 14.7 8.67 8.67 0 0 0 1.6 1.3Z\"/></svg>", "oilCan": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M21 14c-.4.75-1 1.45-1 2a1 1 0 0 0 2 0c0-.55-.6-1.25-1-2Zm-2-4-5.62 1.27L12 9H8V8h2V7H5v1h2v1H3v8h12.32L19 11.33l1.62 1.21.56-.78Zm-4.16 6H4v-6h7.5l1.39 2.45L18 11.19Z\"/></svg>", "parkingBrake": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12.27 9h-2v6h.75v-2.43h1.2c1.14 0 1.8-.4 1.8-1.75S13.52 9 12.27 9Zm0 3h-1.2V9.65h1.22c.76 0 1.05.25 1.05 1.17S13 12 12.25 12Z\"/><path d=\"M12 6a6 6 0 1 0 6 6 6 6 0 0 0-6-6Zm0 11a5 5 0 1 1 5-5 5 5 0 0 1-5 5Z\"/><path d=\"m18.3 7.07-.82.59a7 7 0 0 1 0 8.68l.82.59a8 8 0 0 0 0-9.86Zm-11.78.59-.82-.59a8 8 0 0 0 0 9.86l.82-.59a7 7 0 0 1 0-8.68Z\"/></svg>", "parkingLight": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M8.67 8H5v11h1.36v-4.37h2.28c2.13 0 3.36-.74 3.36-3.26S11 8 8.67 8Zm0 5.56H6.36V9.18h2.31c1.43 0 2 .46 2 2.19s-.57 2.19-2.03 2.19ZM14 11h6v1h-6zm-.697-3.006 5.196-3 .5.866-5.196 3zm.001 7.008.5-.866 5.196 3-.5.866z\"/></svg>", "pause": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M7 6h3v12H7zm7 0h3v12h-3z\"/></svg>", "phone": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m5.08 4.28 3.68 4.55-1 1-.58.58.45.68.36.54A15.52 15.52 0 0 0 12.36 16l.52.35.68.45.58-.58 1-1 4.56 3.69A7.59 7.59 0 0 1 16.17 20H16a8.56 8.56 0 0 1-3.11-.92 17.31 17.31 0 0 1-5.66-4.44A15.39 15.39 0 0 1 4.46 10 6.66 6.66 0 0 1 4 7.46a2.84 2.84 0 0 0 .06-.31 7.76 7.76 0 0 1 1-2.87M5 3a.6.6 0 0 0-.46.25A8.76 8.76 0 0 0 3.08 7c0 .08-.05.24-.05.25v.09a7.52 7.52 0 0 0 .51 3 16.82 16.82 0 0 0 2.93 4.92 18.34 18.34 0 0 0 6 4.7A9.58 9.58 0 0 0 16 21h.27a8.61 8.61 0 0 0 4.51-1.55A.6.6 0 0 0 21 19a.61.61 0 0 0-.22-.49l-5.27-4.26a.59.59 0 0 0-.37-.14.56.56 0 0 0-.42.18l-1.29 1.28-.52-.34A14.62 14.62 0 0 1 8.8 11.1l-.36-.54 1.29-1.28a.61.61 0 0 0 0-.8L5.51 3.22A.6.6 0 0 0 5 3Z\"/></svg>", "pin": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 5a4 4 0 1 0 4 4 4 4 0 0 0-4-4Zm0 7a3 3 0 1 1 3-3 3 3 0 0 1-3 3Z\"/><path d=\"M12 2C8.14 2 5 4.48 5 8.49c0 1.69.29 2.65 2.77 7 1.27 2.21 2.52 4 2.57 4.11L12 22l1.66-2.42c.05-.07 1.3-1.9 2.57-4.11 2.48-4.33 2.77-5.31 2.77-7C19 4.48 15.86 2 12 2Zm3.36 13c-1.21 2.12-2.4 3.86-2.53 4L12 20.23 11.16 19s-1.25-1.8-2.52-4C6.13 10.59 6 9.89 6 8.49 6 5.26 8.47 3 12 3s6 2.26 6 5.49c0 1.42-.2 2.24-2.64 6.51Z\"/></svg>", "play": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M8 18V6l10 6-10 6z\"/></svg>", "plug": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M14 11V6h-2V3h-1v3H6V3H5v3H3v5c.15 2.8 1.59 5 5.48 5s5.35-2.2 5.52-5Zm-5.5 4c-2.68 0-4.14-1.15-4.44-3.52L4 7h9l-.05 4.48C12.64 13.85 11.18 15 8.5 15Z\"/><path d=\"M17.91 13C16 13 14 13.28 14 16.6v.92A2.22 2.22 0 0 1 11.48 20 2.19 2.19 0 0 1 9 17.52V16H8v1.52A3.16 3.16 0 0 0 11.48 21 3.18 3.18 0 0 0 15 17.51v-.91c0-2.24.86-2.6 2.91-2.6H21v-1Z\"/></svg>", "plus": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M20 11h-8V3h-1v8H3v1h8v8h1v-8h8v-1z\"/></svg>", "preheating": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M5 19h14v1H5zM15 6a7.84 7.84 0 0 0 .53 2.66A7 7 0 0 1 16 11a7 7 0 0 1-.47 2.34A7.84 7.84 0 0 0 15 16v1h1v-1a7 7 0 0 1 .47-2.34A7.84 7.84 0 0 0 17 11a7.84 7.84 0 0 0-.53-2.66A7 7 0 0 1 16 6V5h1l-1.5-2L14 5h1ZM7 6a7.84 7.84 0 0 0 .53 2.66A7 7 0 0 1 8 11a7 7 0 0 1-.47 2.34A7.84 7.84 0 0 0 7 16v1h1v-1a7 7 0 0 1 .47-2.34A7.84 7.84 0 0 0 9 11a7.84 7.84 0 0 0-.53-2.66A7 7 0 0 1 8 6V5h1L7.5 3 6 5h1Zm4 0a7.84 7.84 0 0 0 .53 2.66A7 7 0 0 1 12 11a7 7 0 0 1-.47 2.34A7.84 7.84 0 0 0 11 16v1h1v-1a7 7 0 0 1 .47-2.34A7.84 7.84 0 0 0 13 11a7.84 7.84 0 0 0-.53-2.66A7 7 0 0 1 12 6V5h1l-1.5-2L10 5h1Z\"/></svg>", "printer": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M7 4h10v2a8.43 8.43 0 0 1 1 .3V3H6v3.3A8.43 8.43 0 0 1 7 6Zm5 3c-6.93 0-9 1.82-9 4.15V17h3v4h12v-4h3v-5.85C21 8.82 18.93 7 12 7Zm5 13H7v-6h10Zm3-4h-2v-3H6v3H4v-4.85C4 8.6 8.4 8 12 8s8 .6 8 3.15Z\"/><path d=\"M16 10h2v2h-2z\"/></svg>", "purchase": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M20.13 8.35A11.07 11.07 0 0 0 18.24 7 6.05 6.05 0 0 0 15 6a4.69 4.69 0 0 0-1.12.18l1.12.91a4.76 4.76 0 0 1 2.73.78 10.48 10.48 0 0 1 1.72 1.22 2.25 2.25 0 0 1 .55 1.29v6.12l-2.87 2.18-6.23-6.49a.78.78 0 0 1-.29-.49.82.82 0 0 1 .29-.48.82.82 0 0 1 .48-.3.84.84 0 0 1 .49.3l1.57 1.57.71.71.1.1 2.83-2.83L9.3 3 3 9.11 10.83 17l.71-.71-.76-.83-6.37-6.35 4.89-4.7 6.36 6.36-1.41 1.42-.1-.11-1.57-1.57a1.77 1.77 0 0 0-1.2-.59 1.71 1.71 0 0 0-1.19.59 1.52 1.52 0 0 0 0 2.39L17 20l4-3v-6.73a3.06 3.06 0 0 0-.87-1.92Z\"/></svg>", "question": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 3a9 9 0 1 0 9 9 9 9 0 0 0-9-9Zm0 17a8 8 0 1 1 8-8 8 8 0 0 1-8 8Z\"/><path d=\"M12.26 6a3.82 3.82 0 0 0-2.81 1.19 3.55 3.55 0 0 0-.72 1.19l-.26.71 1.49.5.26-.71a2 2 0 0 1 .42-.69 2.22 2.22 0 0 1 1.62-.7 2.12 2.12 0 0 1 2.15 2.07 2 2 0 0 1-.63 1.44 2.61 2.61 0 0 1-.39.26 3.25 3.25 0 0 0-1.93 3V15h1.59v-.76c0-1 .54-1.32 1.17-1.69a4.3 4.3 0 0 0 .68-.47A3.51 3.51 0 0 0 16 9.56 3.66 3.66 0 0 0 12.26 6Zm.75 10h-2v2h2v-2z\"/></svg>", "racingFlag": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M18.1 9.5A4.4 4.4 0 0 1 15.74 7a6.81 6.81 0 0 0-3.87-3.49A6.57 6.57 0 0 0 9.43 3 3 3 0 0 0 9 3L5.45 13.18 3 19.7l.83.3 2.69-7.06a8.39 8.39 0 0 1 1.85.5A4.63 4.63 0 0 1 11 16a6.09 6.09 0 0 0 3.27 3.4A12 12 0 0 0 17 20l4-10a14.54 14.54 0 0 1-2.9-.5Zm-1.74 9.42a8.6 8.6 0 0 1-1.73-.41 5.07 5.07 0 0 1-2.73-2.86 5.65 5.65 0 0 0-3.12-3.12A9.41 9.41 0 0 0 6.92 12l2.79-8a5.76 5.76 0 0 1 1.78.47 5.74 5.74 0 0 1 3.33 3 5.36 5.36 0 0 0 2.89 3 8.78 8.78 0 0 0 1.87.43Z\"/></svg>", "refresh": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m18.06 11.75-1.75 1.75H15l3.5-3.5 3.5 3.5h-1.31l-1.75-1.75h-.88zm-13 0L3.31 10H2l3.5 3.5L9 10H7.69l-1.75 1.75h-.88z\"/><path d=\"M6 12.36V12a6 6 0 0 1 10.07-4.4l1-.46A7 7 0 0 0 5 12a7.37 7.37 0 0 0 0 .82Zm12-.99V12a6 6 0 0 1-6 6 5.92 5.92 0 0 1-4.26-1.79l-1 .45A7 7 0 0 0 19 12a7.61 7.61 0 0 0-.09-1.08Z\"/></svg>", "replay": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 5h-.39L13 3.64V2L9.66 5.45 13 9V7.35L11.68 6H12a7 7 0 1 1-7 7H4a8 8 0 1 0 8-8Z\"/></svg>", "reset": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M19 13a7 7 0 1 1-7-7h.32L11 7.35V9l3.34-3.55L11 2v1.64L12.39 5H12a8 8 0 1 0 8 8Z\"/></svg>", "route": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M18 12a3.07 3.07 0 0 0-3 3.12 6.47 6.47 0 0 0 1.19 3.08c.54.95 1.08 1.73 1.1 1.76L18 21l.71-1s.56-.81 1.1-1.76A6.47 6.47 0 0 0 21 15.12 3.07 3.07 0 0 0 18 12Zm1 5.7c-.39.67-.77 1.25-.95 1.53-.18-.27-.56-.85-.95-1.53a7.21 7.21 0 0 1-1.1-2.58A2.07 2.07 0 0 1 18 13a2.07 2.07 0 0 1 2 2.12 7.21 7.21 0 0 1-1 2.58ZM5.29 12 6 13l.71-1s.56-.81 1.1-1.76A6.47 6.47 0 0 0 9 7.12 3.07 3.07 0 0 0 6 4a3.07 3.07 0 0 0-3 3.12 6.47 6.47 0 0 0 1.19 3.08c.54.95 1.08 1.73 1.1 1.8ZM6 5a2.07 2.07 0 0 1 2 2.12A7.21 7.21 0 0 1 7 9.7c-.39.67-.77 1.25-1 1.53-.18-.27-.56-.85-1-1.53a7.21 7.21 0 0 1-1-2.58A2.07 2.07 0 0 1 6 5Z\"/><path d=\"M5 16h2.92c1.08 0 1.86-.4 1.94-1.71 0-.21.24-.29.5-.29h2.28A2.52 2.52 0 0 0 15 11.46 2.45 2.45 0 0 0 12.64 9H10v1h2.64A1.44 1.44 0 0 1 14 11.46 1.54 1.54 0 0 1 12.64 13h-2.28a1.59 1.59 0 0 0-1.18.42 1.11 1.11 0 0 0-.32.8A.83.83 0 0 1 8 15H5a2 2 0 0 0 0 4h9v-1H5a1 1 0 0 1 0-2Z\"/></svg>", "rss": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M5.4 16.2A2.39 2.39 0 1 1 3 18.59a2.39 2.39 0 0 1 2.4-2.39ZM3 3a18 18 0 0 1 18 18h-3.46A14.56 14.56 0 0 0 3 6.45V3Zm0 6.12A11.89 11.89 0 0 1 14.88 21h-3.46A8.42 8.42 0 0 0 3 12.57Z\"/></svg>", "save": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M19.99 6H11.7l-1.15-2H4v15.99h6V19H5V5h4.89l1.15 2h7.95l.01 7h1l-.01-8z\"/><path d=\"M16 18.2V11h-1v7.2L12.5 16H11l4.5 4 4.5-4h-1.5L16 18.2z\"/></svg>", "screen": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M21 16V3H3v13h8.47v4H8v1h8v-1h-3.47v-4ZM4 15V4h16v11Z\"/></svg>", "search": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M8.6 14.06 3 19.64 4.35 21 10 15.41a6.49 6.49 0 0 1-1.4-1.35ZM15 3a6 6 0 1 0 6 6 6 6 0 0 0-6-6Zm0 11a5 5 0 1 1 5-5 5 5 0 0 1-5 5Z\"/></svg>", "send": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m3 12 6 3 3 6 8-17Zm13.58-5.28L9.27 14l-4-2ZM12 18.71l-2-4 7.3-7.31Z\"/></svg>", "share": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M16.5 16a2.49 2.49 0 0 0-1.35.4l-2.46-1.86A4 4 0 0 0 13 13a3.86 3.86 0 0 0-.57-2l3.16-3.16a2.53 2.53 0 1 0-1.41-1.41L11 9.57A3.86 3.86 0 0 0 9 9a4 4 0 0 0 0 8 4 4 0 0 0 2.47-.88L14 18.07a3 3 0 0 0 0 .43 2.5 2.5 0 1 0 2.5-2.5Z\"/></svg>", "shoppingBag": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M15 8V6a2.65 2.65 0 0 0-3-3 2.65 2.65 0 0 0-3 3v2H6v13h12V8Zm-5-2c0-1.44.56-2 2-2s2 .56 2 2v2h-4Zm7 14H7V9h2v3h1V9h4v3h1V9h2Z\"/></svg>", "shoppingCart": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m5.8 5-.4-2H3v1h1.32L7 17h11v-1H8l-.64-3h5.88C18.94 13 21 9.8 21 6.6V5ZM20 6.58c0 1.1-.38 5.42-6.62 5.42H7.21L6 6.09 20 6Z\"/><circle cx=\"9.5\" cy=\"19.5\" r=\"1.5\"/><circle cx=\"16.5\" cy=\"19.5\" r=\"1.5\"/></svg>", "sidelights": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M19 11h3v1h-3zm-1-3.58 2.486-1.435.5.866L18.5 8.286zm-.003 8.12.5-.867 2.486 1.435-.5.866zM2 11h3v1H2zm1.02-4.148.5-.866 2.485 1.435-.5.866zm-.006 9.259 2.485-1.435.5.866-2.485 1.435zM16.31 8a3.51 3.51 0 0 0 0 7c.14 0 .24 0 .27-.06A8.71 8.71 0 0 0 17 11.5a8.84 8.84 0 0 0-.43-3.44S16.45 8 16.31 8Zm-.46 5.91A2.39 2.39 0 0 1 14 11.5a2.39 2.39 0 0 1 1.84-2.4 16.11 16.11 0 0 1 .16 2.4 17.3 17.3 0 0 1-.15 2.41ZM7.69 8c-.14 0-.23 0-.26.06A8.84 8.84 0 0 0 7 11.5a8.71 8.71 0 0 0 .43 3.44s.13.06.27.06a3.51 3.51 0 0 0 0-7Zm.46 5.9A17.13 17.13 0 0 1 8 11.5a16.11 16.11 0 0 1 .16-2.4A2.39 2.39 0 0 1 10 11.5a2.37 2.37 0 0 1-1.85 2.4Z\"/></svg>", "snowflake": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m19.73 14.24-.24-1.01-2.69.77-4.3-2.48L16.87 9l2.61.75.24-1.02-2.31-.66.58-2.33-1-.3-.67 2.72-4.34 2.5V5.63l1.99-1.91-.76-.72-1.73 1.67L9.75 3 9 3.72l1.98 1.91v5.01l-4.32-2.5-.67-2.67-.99.29.58 2.34-2.31.66.24 1.01 2.65-.76 4.34 2.51-4.33 2.5-2.65-.77-.24 1.02 2.31.66-.58 2.33 1 .3.66-2.68 4.31-2.49v5.01l-1.95 1.88.76.72 1.73-1.67L13.25 20l.75-.72-2.02-1.94v-4.96l4.37 2.52.66 2.63.99-.3-.58-2.33 2.31-.66z\"/></svg>", "sort": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M3.5 7H5l2-2v16h1V5l2 2h1.5l-4-4-4 4zM19 17l-2 2V3h-1v16l-2-2h-1.5l4 4 4-4H19z\"/></svg>", "stack": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m21 8-9-5-9 5 9 5Zm-9-3.86L18.94 8 12 11.8 5.06 8Z\"/><path d=\"M12.01 15.8H12L5.06 12l-1.04-.57L3 12l9 5 8.99-5-1.01-.56-7.97 4.36z\"/><path d=\"M12.01 19.8H12L5.06 16l-1.04-.57L3 16l9 5 8.99-5-1.01-.56-7.97 4.36z\"/></svg>", "star": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M21 10.36a.5.5 0 0 0-.5-.36h-5.65l-2.38-6.67a.52.52 0 0 0-.94 0L9.15 10H3.5a.5.5 0 0 0-.48.36.5.5 0 0 0 .21.56L7.9 14 6 19.34a.5.5 0 0 0 .71.6L12 17l5.26 3a.5.5 0 0 0 .24.06.49.49 0 0 0 .32-.12.49.49 0 0 0 .15-.54L16.1 14l4.67-3a.5.5 0 0 0 .23-.64Zm-5.75 3a.48.48 0 0 0-.2.58l1.57 4.51L12.24 16a.51.51 0 0 0-.48 0L7.4 18.42 9 13.91a.48.48 0 0 0-.2-.58L5.19 11H9.5a.5.5 0 0 0 .47-.33L12 5l2 5.68a.5.5 0 0 0 .47.33h4.31Z\"/></svg>", "steeringWheel": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 3a9 9 0 1 0 9 9 9 9 0 0 0-9-9Zm4 9.48a4 4 0 0 0-.56-1.48h4.49a8.26 8.26 0 0 1 .07 1v.05ZM12 16a3 3 0 1 1 3-3 3 3 0 0 1-3 3Zm0-12a8 8 0 0 1 7.74 6h-5.12a3.93 3.93 0 0 0-5.24 0H4.26A8 8 0 0 1 12 4Zm-7.93 7h4.49a4 4 0 0 0-.51 1.48L4 12.05V12a8.26 8.26 0 0 1 .07-1Zm0 2.06 4 .42a4 4 0 0 0 2 3l.37 3.37a8 8 0 0 1-6.36-6.79ZM11.44 20l-.34-3.08a3.74 3.74 0 0 0 1.8 0L12.56 20h-1.12Zm2.14-.13.42-3.4a4 4 0 0 0 2-3l4-.42a8 8 0 0 1-6.42 6.79Z\"/></svg>", "stopwatch": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m18.004 3.818.768-.815L21 5.103l-.769.814zM14.63 9.61l-1.71 1.62A2.05 2.05 0 0 0 12 11a2 2 0 1 0 1.74 1l1.68-1.59ZM12 14a1 1 0 1 1 1-1 1 1 0 0 1-1 1Z\"/><path d=\"M12.58 4V3H14V2h-4v1h1.38v1a9 9 0 1 0 1.2 0ZM12 21a8 8 0 1 1 8-8 8 8 0 0 1-8 8Z\"/></svg>", "subtract": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M7 11h9v1H7z\"/><path d=\"M11.5 3a8.5 8.5 0 1 0 8.5 8.5A8.51 8.51 0 0 0 11.5 3Zm0 16a7.5 7.5 0 1 1 7.5-7.5 7.5 7.5 0 0 1-7.5 7.5Z\"/></svg>", "success": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m15.548 9-4.558 5.36L9 11.984V12H7.571L11 16l6-7h-1.452zM23 2z\"/><path d=\"M12 3a9 9 0 0 0-9 9 9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9zm0 17.003A8 8 0 0 1 3.998 12 8 8 0 0 1 12 3.997c2.122 0 4.158.843 5.659 2.344a8 8 0 0 1 0 11.317A8.002 8.002 0 0 1 12 20.002z\"/></svg>", "sun": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M11.5 8a3.5 3.5 0 1 0 3.5 3.5A3.5 3.5 0 0 0 11.5 8Zm0 6a2.5 2.5 0 1 1 2.5-2.5 2.5 2.5 0 0 1-2.5 2.5ZM11 3h1v3h-1zm0 14h1v3h-1zM5.139 5.843l.707-.707 2.121 2.121-.707.707zm9.901 9.9.707-.707 2.121 2.121-.707.707zM3 11h3v1H3zm14 0h3v1h-3zM5.14 17.157l2.12-2.12.708.706-2.122 2.122zm9.9-9.9 2.12-2.122.708.708-2.122 2.12z\"/></svg>", "switch": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M7 14v-1.5l-4 4 4 4V19l-2-2h16v-1H5l2-2zm10-4v1.5l4-4-4-4V5l2 2H3v1h16l-2 2z\"/></svg>", "tablet": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M5 3v18h14V3Zm13 17H6v-3h12Zm0-4H6V4h12Z\"/><path d=\"M11.56 19h.88a.5.5 0 1 0 0-1h-.88a.5.5 0 1 0 0 1Z\"/></svg>", "tachometer": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m14.85 9.26-2 2A1.92 1.92 0 0 0 12 11a2 2 0 1 0 1.75 1.05l1.95-2ZM12 14a1 1 0 1 1 1-1 1 1 0 0 1-1 1Z\"/><path d=\"M12 4a9 9 0 0 0-6 15.71l2.11-2.11-.71-.71L6 18.28a8 8 0 0 1-1.59-2.73L6.33 15l-.25-1-1.91.51A7.5 7.5 0 0 1 4 13a8.22 8.22 0 0 1 .16-1.58l1.92.51.25-1-1.91-.51A8 8 0 0 1 6 7.72l1.4 1.39.71-.71L6.72 7a8 8 0 0 1 2.73-1.58L10 7.33l1-.25-.51-1.92a7.88 7.88 0 0 1 3.16 0l-.51 1.92 1 .25.51-1.91A8 8 0 0 1 17.28 7l-1.39 1.4.71.71L18 7.72a8 8 0 0 1 1.59 2.73l-1.92.55c.06.16.25 1 .25 1l1.92-.51A8.22 8.22 0 0 1 20 13a7.5 7.5 0 0 1-.17 1.58l-1.91-.51-.25 1 1.91.51a8 8 0 0 1-1.58 2.7l-1.4-1.39c-.11.13-.71.71-.71.71L18 19.71A9 9 0 0 0 12 4Z\"/></svg>", "truck": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M6 10h5v1H6z\"/><path d=\"M21.81 12.45 20.43 9a2.24 2.24 0 0 0-2.1-1H17V6H3.93v2H2v1h1.93v7h2.16a1.49 1.49 0 0 0 2.82 0h8.18a1.49 1.49 0 0 0 2.82 0H21a1 1 0 0 0 1-1v-1.84a1.38 1.38 0 0 0-.19-.71ZM16 15H8.91a1.49 1.49 0 0 0-2.82 0H5V9h4V8H5V7h11v8Zm5 0h-1.09a1.49 1.49 0 0 0-2.82 0H17V9h1.33c1 0 1.16.37 1.23.49l1.38 3.47a.43.43 0 0 1 .06.22Z\"/></svg>", "upload": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M11 5v11h1V5l2 2h1.5l-4-4-4 4H9l2-2z\"/><path d=\"M15 9v1h4v8H4v-8h4V9H3v10h17V9h-5z\"/></svg>", "user": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 14c3 0 4-1.84 4-4.12V7.12C16 4.84 15 3 12 3S8 4.84 8 7.12v2.76C8 12.16 9 14 12 14ZM9 7.12C9 4.32 10.71 4 12 4s3 .32 3 3.12v2.76c0 2.8-1.71 3.12-3 3.12s-3-.32-3-3.12Z\"/><path d=\"M21 18.45A5.48 5.48 0 0 0 17.49 13a4.54 4.54 0 0 1-.42.89A4.51 4.51 0 0 1 20 18.45V20H4v-1.55a4.5 4.5 0 0 1 2.93-4.55 5.33 5.33 0 0 1-.43-.9A5.47 5.47 0 0 0 3 18.45V21h18v-2.55Z\"/></svg>", "userGroup": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M10 16a2.69 2.69 0 0 0 3-3v-2a2.69 2.69 0 0 0-3-3 2.69 2.69 0 0 0-3 3v2a2.69 2.69 0 0 0 3 3Zm-2-5c0-1.4.6-2 2-2s2 .6 2 2v2c0 1.4-.6 2-2 2s-2-.6-2-2Zm8.5-1c1.86 0 2.5-1 2.5-2.25v-1.5C19 5 18.37 4 16.5 4S14 5 14 6.25v1.5C14 9 14.63 10 16.5 10ZM15 6.25C15 5.5 15.26 5 16.5 5s1.5.5 1.5 1.25v1.5C18 8.5 17.74 9 16.5 9S15 8.5 15 7.75Z\"/><path d=\"M14 14a4.78 4.78 0 0 1-.22 1A4 4 0 0 1 16 18.87V19H4v-.13A3.89 3.89 0 0 1 6.19 15 4.54 4.54 0 0 1 6 14a4.9 4.9 0 0 0-3 4.87V20h14v-1.13A5.07 5.07 0 0 0 14 14Zm7-1.75a3.32 3.32 0 0 0-1.61-3.09 2.56 2.56 0 0 1-.5.86A2.16 2.16 0 0 1 20 12h-5v1h6v-.75Z\"/></svg>", "userManual": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><defs><clipPath id=\"a\"><path d=\"M14 7v2h-2V7Zm0 4v6h-2v-6ZM7 4a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1Zm11 0H8v16h10Zm1-1v18H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2Z\" clip-rule=\"evenodd\"/></clipPath></defs><path d=\"M0-2h24v28H0z\" clip-path=\"url(#a)\"/></svg>", "video": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M20 6v12H4V6h16m1-1H3v14h18V5Z\"/><path d=\"M9 16V8l6 4-6 4z\"/></svg>", "view": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><defs><clipPath id=\"a\"><path d=\"M12 18a11.49 11.49 0 0 1-9.74-5.5L2 12l.27-.5A11.49 11.49 0 0 1 12 6a11.5 11.5 0 0 1 9.75 5.5l.25.5-.27.5A11.69 11.69 0 0 1 12 18Zm-8.87-6A10.64 10.64 0 0 0 12 17a10.62 10.62 0 0 0 8.86-5A10.63 10.63 0 0 0 12 7a10.63 10.63 0 0 0-8.85 5Z\"/></clipPath></defs><path d=\"M12 18a11.49 11.49 0 0 1-9.74-5.5L2 12l.27-.5A11.49 11.49 0 0 1 12 6a11.5 11.5 0 0 1 9.75 5.5l.25.5-.27.5A11.69 11.69 0 0 1 12 18Zm-8.87-6A10.64 10.64 0 0 0 12 17a10.62 10.62 0 0 0 8.86-5A10.63 10.63 0 0 0 12 7a10.63 10.63 0 0 0-8.85 5Z\"/><path d=\"M27.22 23.73H-3.22V.27h30.44Zm-29.44-1h28.44V1.27H-2.22Zm28.41-.07H-2.19V1.34h28.38Zm-27.38-1h26.38V2.34H-1.19Z\" clip-path=\"url(#a)\"/><path d=\"M12 10a2 2 0 1 1-2 2 2 2 0 0 1 2-2m0-1a3 3 0 1 0 3 3 3 3 0 0 0-3-3Z\"/></svg>", "viewOff": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M19.5 20H21L5 4H3.5l16 16z\"/><path d=\"M21.74 12.5 22 12l-.27-.5A11.5 11.5 0 0 0 12 6a11 11 0 0 0-5.23 1.27l.76.73A10 10 0 0 1 12 7a10.63 10.63 0 0 1 8.87 5 10.94 10.94 0 0 1-5.08 4.26l.76.76a12.17 12.17 0 0 0 5.19-4.52Zm-19.48 0A11.49 11.49 0 0 0 12 18a11.26 11.26 0 0 0 3.46-.54l-.81-.81A10.42 10.42 0 0 1 12 17a10.64 10.64 0 0 1-8.86-5 11 11 0 0 1 3.42-3.44l-.73-.73a11.81 11.81 0 0 0-3.57 3.67L2 12Z\"/><path d=\"M10.36 10.86a2 2 0 1 1 2.78 2.78l.71.71a3 3 0 1 0-4.2-4.2ZM12 14a2 2 0 0 1-2-2l-.86-.86A3 3 0 0 0 9 12a3 3 0 0 0 3 3 3 3 0 0 0 .86-.14Z\"/></svg>", "volumeOff": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M11 7.31v9.38l-2.59-2.42-.29-.27H4v-4h4.12l.29-.27L11 7.31M12 5 7.73 9H3v6h4.73L12 19V5Zm8.25 4L15 14.25l.75.75L21 9.75 20.25 9z\"/><path d=\"m15.75 9-.75.75L20.25 15l.75-.75L15.75 9z\"/></svg>", "volumeUp": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m18.74 7-.74.78A5.48 5.48 0 0 1 20 12a5.8 5.8 0 0 1-1.88 4.23l.72.74a6.78 6.78 0 0 0-.12-10Zm-2 2-.74.77A3.1 3.1 0 0 1 17 12a3.61 3.61 0 0 1-.89 2.25l.76.78A4.5 4.5 0 0 0 18 12a4.23 4.23 0 0 0-1.24-3ZM11 7.31v9.38l-2.59-2.42-.29-.27H4v-4h4.12l.29-.27L11 7.31M12 5 7.73 9H3v6h4.73L12 19V5Z\"/></svg>", "warning": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 3 3 21h18Zm0 2.24L19.38 20H4.62Z\"/><path d=\"m12.5 15 .5-5h-2l.49 5h1.01zM11 16h2v2h-2z\"/></svg>", "weight": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M19 8h-4.78a3 3 0 1 0-4.44 0H5L3 21h18Zm-9-2a2 2 0 1 1 2 2 2 2 0 0 1-2-2ZM5.86 9h12.28l1.69 11H4.17Z\"/></svg>", "wifi": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 4a12.19 12.19 0 0 0-9 4l.75.68a11.13 11.13 0 0 1 16.5 0L21 8a12.19 12.19 0 0 0-9-4Z\"/><path d=\"m5 11.1.78.67a8.39 8.39 0 0 1 12.44 0l.78-.67a9.45 9.45 0 0 0-14 0ZM7 14l.83.65A5.37 5.37 0 0 1 12 13a5.37 5.37 0 0 1 4.17 1.65L17 14a6.47 6.47 0 0 0-5-2 6.47 6.47 0 0 0-5 2Z\"/><circle cx=\"12\" cy=\"18\" r=\"2\"/></svg>", "work": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M10 16h4v1h-4z\"/><path d=\"M3 8v12h18V8Zm17 11H4v-7.14C5.26 13.07 7.74 14 12 14s6.74-.93 8-2.14Zm-8-6c-6.61 0-8-2.08-8-3.67V9h16v.33c0 1.59-1.39 3.67-8 3.67ZM8.35 6.3C9 5.4 10.29 5 12 5s3 .4 3.66 1.31A4 4 0 0 1 16 7h1c0-.12-.07-.25-.12-.37C16.25 5.06 14.83 4 12 4S7.76 5 7.13 6.62c0 .12-.09.25-.13.38h1a3.52 3.52 0 0 1 .35-.7Z\"/></svg>", "wrench": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M15.91 4a2 2 0 0 1 .84.2l.22.12-2.48 2.46A1.41 1.41 0 0 0 14 8.2a2.31 2.31 0 0 0 .72 1.06 1.83 1.83 0 0 0 1.31.74 1.58 1.58 0 0 0 1.11-.55L19.64 7c.05.09.1.17.14.26.65 1.31-.27 2.38-1.35 3.46A3.22 3.22 0 0 1 16 12a2.68 2.68 0 0 1-1.51-.38l-.67-.4-.55.55-7.92 7.92a.89.89 0 0 1-.52.31.86.86 0 0 1-.52-.31c-.12-.12-.32-.35-.31-.54a.94.94 0 0 1 .31-.5l7.92-7.91.53-.53-.36-.66c-.86-1.7-.32-2.75.91-4C13.94 5 14.89 4 15.91 4m0-1c-1.44 0-2.6 1.16-3.31 1.87C11.5 6 10.25 7.53 11.52 10L3.6 17.94a1.56 1.56 0 0 0 0 2.46 1.78 1.78 0 0 0 1.23.6 1.8 1.8 0 0 0 1.23-.6L14 12.48a3.69 3.69 0 0 0 2 .52 4.19 4.19 0 0 0 3.14-1.59c.92-.92 2.56-2.55 1.54-4.62a5 5 0 0 0-1-1.29l-3.22 3.24c-.17.17-.28.26-.4.26s-.31-.14-.61-.44c-.53-.54-.6-.73-.25-1.08l3.26-3.23a4.85 4.85 0 0 0-1.28-1A2.91 2.91 0 0 0 15.91 3Z\"/></svg>", "wrenches": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M15.75 11.53a3.94 3.94 0 0 0 1.79.48 4.06 4.06 0 0 0 2.83-1.44c.82-.81 2.29-2.27 1.41-4.09a4.66 4.66 0 0 0-.85-1.14L18 8.25a.52.52 0 0 1-.34.2c-.17 0-.34-.14-.62-.42-.48-.48-.52-.56-.17-.9l2.91-2.9a4.38 4.38 0 0 0-1.16-.86 2.73 2.73 0 0 0-1.19-.29 4.51 4.51 0 0 0-3 1.66A3.72 3.72 0 0 0 13 7.54a3.28 3.28 0 0 0 .46 1.8L12 10.84l-1.48-1.52c1.13-2.23 0-3.63-1-4.61A4.49 4.49 0 0 0 6.62 3a2.56 2.56 0 0 0-1.13.27 4.26 4.26 0 0 0-1.14.84L7.25 7c.32.31.25.48-.22 1-.27.26-.41.39-.55.39s-.2-.08-.35-.23l-2.89-2.9a4.61 4.61 0 0 0-.86 1.16c-.9 1.84.55 3.3 1.37 4.13A3.74 3.74 0 0 0 6.54 12a3.3 3.3 0 0 0 1.8-.46L9.84 13l-5.3 5.3A1.56 1.56 0 0 0 4 19.39a1.53 1.53 0 0 0 .55 1.09 1.57 1.57 0 0 0 1.08.52 1.55 1.55 0 0 0 1.1-.54L12 15.22l5.24 5.27a1.59 1.59 0 0 0 1.09.54 1.57 1.57 0 0 0 1.09-.54 1.4 1.4 0 0 0 0-2.2L14.22 13l1.52-1.51Zm-.57-.53-1.52 1.51-.57.57.56.56 5.23 5.26c.4.41.4.66 0 1.06a.89.89 0 0 1-.52.31.9.9 0 0 1-.53-.31l-5.23-5.3-.6-.57-.56.56-5.3 5.27a.93.93 0 0 1-.54.3.9.9 0 0 1-.53-.3.92.92 0 0 1-.31-.53 1 1 0 0 1 .31-.53l5.31-5.27L11 13l-.56-.56-1.54-1.5-.44-.44-.53.32a2.5 2.5 0 0 1-1.39.35A3 3 0 0 1 4.32 10C3.33 9 2.5 8 3.1 6.77c.06-.11.12-.22.19-.33l2.28 2.29a1.3 1.3 0 0 0 .91.46 1.6 1.6 0 0 0 1.11-.63c.35-.35 1.15-1.16.23-2.09L5.54 4.19l.3-.19a1.72 1.72 0 0 1 .78-.19A3.86 3.86 0 0 1 9 5.26c1.1 1.1 1.62 2.1.83 3.67l-.28.52.42.42 1.52 1.52.51.61.57-.56 1.51-1.5.44-.44-.32-.54a2.5 2.5 0 0 1-.35-1.39 3 3 0 0 1 1.19-2.23 3.88 3.88 0 0 1 2.39-1.43 1.82 1.82 0 0 1 .83.21c.11 0 .22.12.34.19l-2.3 2.28a1.3 1.3 0 0 0-.46.92 1.6 1.6 0 0 0 .63 1.11 1.72 1.72 0 0 0 1.19.66 1.28 1.28 0 0 0 .9-.43l2.29-2.29a2.38 2.38 0 0 1 .18.3C21.64 8 20.8 9 19.81 10a3.29 3.29 0 0 1-2.27 1.21 3.21 3.21 0 0 1-1.41-.38l-.52-.29Z\"/></svg>", "zoomIn": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M10 10H3v1h8V3h-1v7zm4 3h-1v8h1v-7h7v-1h-7z\"/></svg>", "zoomOut": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M5 5v8h1V6h7V5H5zm13 6v7h-7v1h8v-8h-1z\"/></svg>" };
|
|
2
|
+
|
|
3
|
+
export { ICONS_MAP };
|
package/ssr/hooks.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { MutableRefObject } from 'react';
|
|
2
|
+
import { useEffect } from 'react';
|
|
3
|
+
import type { ToastMessage } from './lib/types';
|
|
4
|
+
/**
|
|
5
|
+
* sets a flag that skips the need for `PorscheDesignSystemProvider` during testing
|
|
6
|
+
* when `process.env.NODE_ENV === 'test'`
|
|
7
|
+
*/
|
|
8
|
+
export declare const skipCheckForPorscheDesignSystemProviderDuringTests: () => void;
|
|
9
|
+
export declare const usePrefix: (tagName: string) => string;
|
|
10
|
+
export declare const useEventCallback: (ref: MutableRefObject<HTMLElement>, eventName: string, eventHandler: (e: Event) => void) => void;
|
|
11
|
+
export declare const useMergedClass: (ref: MutableRefObject<HTMLElement>, className: string) => string;
|
|
12
|
+
export declare const useBrowserLayoutEffect: typeof useEffect;
|
|
13
|
+
export declare const useToastManager: () => {
|
|
14
|
+
addMessage: (msg: ToastMessage) => void;
|
|
15
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
const ICONS_MAP = { "360": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M6.39 11.88a1.71 1.71 0 0 0 1-1.63C7.34 8.87 6.67 8 5 8s-2.44 1-2.5 2.57h1.2c.06-1.09.41-1.41 1.23-1.41s1.2.32 1.2 1.16-.36 1.11-1.19 1.11h-.63v1.12H5c1 0 1.29.38 1.29 1.24S5.87 15 5 15s-1.27-.38-1.33-1.47H2.5C2.57 15.28 3.26 16 5 16s2.48-.83 2.48-2.25a1.76 1.76 0 0 0-1.09-1.87Zm4.76-1.08a1.57 1.57 0 0 0-.65.13L12.3 8h-1.36l-1.7 2.81a4.41 4.41 0 0 0-.75 2.57c0 1.91.87 2.62 2.51 2.62s2.52-.71 2.52-2.62-.83-2.58-2.37-2.58ZM11 15c-1 0-1.28-.41-1.28-1.55s.32-1.51 1.28-1.51 1.27.42 1.27 1.51S12 15 11 15Zm6-7c-2 0-2.53 1.09-2.53 4 0 3.12.63 4.05 2.51 4.05S19.5 15 19.5 12c0-2.93-.5-4-2.5-4Zm0 7c-1.06 0-1.24-.54-1.24-3 0-2.28.25-2.79 1.24-2.79s1.25.51 1.25 2.79c-.02 2.43-.2 3-1.25 3Zm4-7a1 1 0 1 0 1 1 1 1 0 0 0-1-1Zm0 1.47a.47.47 0 0 1 0-.94.47.47 0 0 1 0 .94Z\"/></svg>", "accessibility": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 3c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 17c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8z\"/><path d=\"M11 10H7v1h4v2.5l-2.4 3.2.8.6 2.6-3.5 2.6 3.5.8-.6-2.4-3.2V11h4v-1h-4zm1-1c.7 0 1-.3 1-1V7c0-.7-.3-1-1-1s-1 .3-1 1v1c0 .7.3 1 1 1z\"/></svg>", "activeCabinVentilation": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M5 19h14v1H5zM7 6a7.84 7.84 0 0 0 .53 2.66A7 7 0 0 1 8 11a7 7 0 0 1-.47 2.34A7.84 7.84 0 0 0 7 16v1h1v-1a7 7 0 0 1 .47-2.34A7.84 7.84 0 0 0 9 11a7.84 7.84 0 0 0-.53-2.66A7 7 0 0 1 8 6V5h1L7.5 3 6 5h1Zm4.9 3.17c-.37.13-1.93 1-1.15 2.39A2.61 2.61 0 0 0 13 12.73v.68c-1.24.22-2.13-.29-2.64-.1s-.32 1.42-.19 1.79 1 1.93 2.39 1.15A2.61 2.61 0 0 0 13.73 14h.68c.22 1.24-.29 2.13-.1 2.64s1.42.32 1.79.19 1.93-1 1.15-2.39A2.61 2.61 0 0 0 15 13.27v-.68c1.24-.22 2.13.29 2.64.1s.32-1.42.19-1.79-1-1.93-2.39-1.15A2.61 2.61 0 0 0 14.27 12h-.68c-.22-1.24.29-2.13.1-2.64S12.27 9 11.9 9.17ZM15 6a6.54 6.54 0 0 0 .32 2h1l-.05-.15A6 6 0 0 1 16 6V5h1l-1.5-2L14 5h1Zm-4 0a6.6 6.6 0 0 0 .32 2h1A6.42 6.42 0 0 1 12 6V5h1l-1.5-2L10 5h1Z\"/></svg>", "add": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M11.5 3a8.5 8.5 0 1 0 8.5 8.5A8.51 8.51 0 0 0 11.5 3Zm0 16a7.5 7.5 0 1 1 7.5-7.5 7.51 7.51 0 0 1-7.5 7.5Z\"/><path d=\"M12 7h-1v4H7v1h4v4h1v-4h4v-1h-4V7z\"/></svg>", "adjust": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M8.5 15a2.5 2.5 0 0 0-2.45 2H3v1h3.05A2.5 2.5 0 0 0 11 18h10v-1H11a2.5 2.5 0 0 0-2.5-2Zm0 4a1.5 1.5 0 1 1 1.5-1.5A1.5 1.5 0 0 1 8.5 19ZM11 5a2.5 2.5 0 0 0-4.9 0H3v1h3.05A2.5 2.5 0 0 0 11 6h10V5ZM8.5 7A1.5 1.5 0 1 1 10 5.5 1.5 1.5 0 0 1 8.5 7Zm5.95 2A2.5 2.5 0 0 0 12 11H3v1h9a2.5 2.5 0 0 0 4.9 0H21v-1h-4.1a2.5 2.5 0 0 0-2.45-2Zm0 4A1.5 1.5 0 1 1 16 11.5a1.5 1.5 0 0 1-1.55 1.5Z\"/></svg>", "arrowDoubleDown": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m20 10.75-8 6-8-6v1.26L12 18l8-5.99v-1.26z\"/><path d=\"m20 6.75-8 6-8-6v1.26L12 14l8-5.99V6.75z\"/></svg>", "arrowDoubleLeft": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M13.25 4h-1.26L6 12l5.99 8h1.26l-6-8 6-8z\"/><path d=\"M17.25 4h-1.26L10 12l5.99 8h1.26l-6-8 6-8z\"/></svg>", "arrowDoubleRight": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m16.75 12-6 8h1.26L18 12l-5.99-8h-1.26l6 8z\"/><path d=\"m12.75 12-6 8h1.26L14 12 8.01 4H6.75l6 8z\"/></svg>", "arrowDoubleUp": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M20 11.99 12 6l-8 5.99v1.26l8-6 8 6v-1.26z\"/><path d=\"M20 15.99 12 10l-8 5.99v1.26l8-6 8 6v-1.26z\"/></svg>", "arrowDown": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M18 14.81 11.5 20 5 14.81v-1.25l6 4.81V4h1v14.37l6-4.81v1.25z\"/></svg>", "arrowFirst": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><defs><clipPath id=\"a\"><path d=\"m16 4-6 8 6 8h-1.26l-6-8 6-8ZM7 4v16H6V4Z\" clip-rule=\"evenodd\"/></clipPath></defs><path fill-rule=\"evenodd\" d=\"m16 4-6 8 6 8h-1.26l-6-8 6-8ZM7 4v16H6V4Z\"/><path d=\"M1-1h20v26H1z\" clip-path=\"url(#a)\"/></svg>", "arrowHeadDown": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m20 8.75-8 6-8-6v1.26L12 16l8-5.99V8.75z\"/></svg>", "arrowHeadLeft": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M15.25 4h-1.26L8 12l5.99 8h1.26l-6-8 6-8z\"/></svg>", "arrowHeadRight": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m14.75 12-6 8h1.26L16 12l-5.99-8H8.75l6 8z\"/></svg>", "arrowHeadUp": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m12 8-8 5.99v1.26l8-6 8 6v-1.26L12 8z\"/></svg>", "arrowLast": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><defs><clipPath id=\"a\"><path d=\"m8.26 4 6 8-6 8H7l6-8-6-8ZM17 4v16h-1V4Z\" clip-rule=\"evenodd\"/></clipPath></defs><path fill-rule=\"evenodd\" d=\"m8.26 4 6 8-6 8H7l6-8-6-8ZM17 4v16h-1V4Z\"/><path d=\"M2-1h20v26H2z\" clip-path=\"url(#a)\"/></svg>", "arrowLeft": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M9.19 18 4 11.5 9.19 5h1.25l-4.81 6H20v1H5.63l4.81 6H9.19z\"/></svg>", "arrowRight": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M14.81 18 20 11.5 14.81 5h-1.25l4.81 6H4v1h14.37l-4.81 6h1.25z\"/></svg>", "arrowUp": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M18 9.19 11.5 4 5 9.19v1.25l6-4.81V20h1V5.63l6 4.81V9.19z\"/></svg>", "augmentedReality": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m18 7-6.5-3L5 7v7l6.5 4 6.5-4Zm-7 9.5-5-3V8.25l5 2.25ZM6.21 7.33 11.5 5l5.39 2.33-5.39 2.29ZM17 13.5l-5 3v-6l5-2.31ZM4 4h2V3H3v3h1V4zm15 15h-2v1h3v-3h-1v2zM4 17H3v3h3v-1H4v-2zM17 3v1h2v2h1V3h-3z\"/></svg>", "batteryEmpty": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M14 4V2h-4v2H8v18h8V4Zm-1-1v1h-2V3Zm2 18H9V5h6Z\"/></svg>", "batteryFull": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M14 4V2h-4v2H8v18h8V4Zm-1-1v1h-2V3Zm2 18H9V5h6Z\"/><path d=\"M10 6h4v14h-4z\"/></svg>", "bell": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M18 13V8.42C18 3.32 13.31 3 12.16 3h-.32C10.69 3 6 3.32 6 8.42V13l-2 4h16Zm-11.11.45.11-.21V8.42a3.85 3.85 0 0 1 2-3.74A6.3 6.3 0 0 1 11.84 4h.32C13.61 4 17 4.43 17 8.42v4.82l.11.21L18.38 16H5.62ZM12 20a2 2 0 0 1-2-2H9a3 3 0 0 0 6 0h-1a2 2 0 0 1-2 2Z\"/></svg>", "bookmark": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M7 4v16l5-3 5 3V4Zm9 14.23-3.49-2.09-.51-.31-.51.31L8 18.23V5h8Z\"/></svg>", "broadcast": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M14 8a2 2 0 1 0-2.69 1.87L8 20l1 1 3-3 3 3 1-1-3.31-10.13A2 2 0 0 0 14 8Zm-3 0a1 1 0 1 1 1 1 1 1 0 0 1-1-1Zm1.71 9.29-.71-.7-.71.7-2 2L12 11l2.71 8.31ZM8 7.62a4 4 0 0 1 .66-2.12L7.85 5A4.62 4.62 0 0 0 7 7.62 3.94 3.94 0 0 0 7.85 10l.8-.5A3.15 3.15 0 0 1 8 7.62ZM5.54 3A7.22 7.22 0 0 0 4 7.58 7.26 7.26 0 0 0 5.4 12l.8-.56A6.38 6.38 0 0 1 5 7.58a6.27 6.27 0 0 1 1.34-4Zm9.8 2.5A4 4 0 0 1 16 7.62a3.15 3.15 0 0 1-.65 1.88l.8.5A3.94 3.94 0 0 0 17 7.62 4.62 4.62 0 0 0 16.15 5ZM18.46 3l-.8.56a6.27 6.27 0 0 1 1.34 4 6.38 6.38 0 0 1-1.2 3.86l.8.56a7.26 7.26 0 0 0 1.4-4.4A7.22 7.22 0 0 0 18.46 3Z\"/></svg>", "calculator": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M16 5H7v4h9Zm-1 3H8V6h7Zm-4 2H7v4h4Zm-1 3H8v-2h2Zm2 1h4v-4h-4Zm1-3h2v2h-2Z\"/><path d=\"M5 3v18h13V3Zm12 17H6V4h11Z\"/><path d=\"M11 15H7v4h4Zm-1 3H8v-2h2Zm2 1h4v-4h-4Zm1-3h2v2h-2Z\"/></svg>", "calendar": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M17 4V3h-1v1H8V3H7v1H3v17h13l5-5V4h-4ZM8 5h8v2H8ZM4 5h3v2H4Zm16 10.33L15.44 20H15v-5h5ZM20 14h-6v6H4V8h3v1h1V8h8v1h1V8h3Zm0-7h-3V5h3Z\"/></svg>", "camera": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 16a4 4 0 1 0-4-4 4 4 0 0 0 4 4Zm0-7a3 3 0 1 1-3 3 3 3 0 0 1 3-3Z\"/><path d=\"M9 6V5H5v1H3v12h18V6Zm11 11H4V7h16Z\"/></svg>", "car": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m19.42 9.25.25-.38h.93a.48.48 0 0 0 .4-.43.49.49 0 0 0-.49-.44h-1.08a.42.42 0 0 0-.38.24l-.52.76H18a3.43 3.43 0 0 0-3.75-3H9.81C7.69 6 6.28 7.17 6.06 9h-.58L5 8.24A.42.42 0 0 0 4.57 8H3.49a.49.49 0 0 0-.49.43.48.48 0 0 0 .4.43h.93l.25.38C3.54 9.76 3 11 3 13v3.23a.78.78 0 0 0 .8.77h1.82C6.16 17 7 17 7 16h10c0 1 .85 1 1.4 1h1.82a.78.78 0 0 0 .78-.77V13c0-2-.53-3.25-1.58-3.75ZM9.81 7h4.4A2.46 2.46 0 0 1 17 9H7.05c.21-1.26 1.2-2 2.76-2ZM20 16h-1.6a2.94 2.94 0 0 1-.4 0v-.5a.5.5 0 0 0-.5-.5H16a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1H6.51a.5.5 0 0 0-.5.5v.5a2.87 2.87 0 0 1-.39 0H4v-3c0-2.64.91-3 1.79-3h12.42c.88 0 1.79.36 1.79 3Z\"/><path d=\"M18.56 11h-1.13A1.43 1.43 0 0 0 16 12.43a.07.07 0 0 0 .07.07h2.74a.2.2 0 0 0 .19-.2v-.64c0-.56-.08-.66-.44-.66ZM6.58 11H5.45c-.36 0-.43.1-.43.66v.64a.2.2 0 0 0 .2.2h2.72a.07.07 0 0 0 .06-.07A1.43 1.43 0 0 0 6.58 11Z\"/></svg>", "carBattery": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M17 6h-2V5h-3v1H8V5H5v1H3v9h14Zm-1 8H4V7h12Z\"/><path d=\"M19 16V8h-1v8H5v1h14v-1z\"/><path d=\"M20 10v8H7v1h14v-9h-1zm-7 1h1v-1h1V9h-1V8h-1v1h-1v1h1v1zM5 9h3v1H5z\"/></svg>", "card": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M19.8 5H4.2A1.2 1.2 0 0 0 3 6.2v11.6A1.2 1.2 0 0 0 4.2 19h15.6a1.2 1.2 0 0 0 1.2-1.2V6.2A1.2 1.2 0 0 0 19.8 5Zm.2 12.8a.2.2 0 0 1-.2.2H4.2a.2.2 0 0 1-.2-.2V11h16ZM20 9H4V6.2a.2.2 0 0 1 .2-.2h15.6a.2.2 0 0 1 .2.2Z\"/></svg>", "chargingActive": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m11 18 3-6h-1V7l-3 6h1v5z\"/><path d=\"M14 4V2h-4v2H8v18h8V4Zm-1-1v1h-2V3Zm2 18H9V5h6Z\"/></svg>", "chargingState": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M14 2h-4v2H8v18h8V4h-2Zm-1 1v1h-2V3Zm2 2v16H9V5Z\"/><path d=\"M10 9h4v11h-4zm7 0 3 3V6l-3 3z\"/></svg>", "chargingStation": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><defs><clipPath id=\"a\"><path d=\"M9 8v4h1l-3 5v-4H6ZM8 4c-2.82 0-3 .71-3 1v15h6V5.11C11 4.81 11 4 8 4Zm0-1c3.2 0 4 .94 4 2.11V11h1.05a2.37 2.37 0 0 1 .95.19 1.89 1.89 0 0 1 1 1.93v5.63c0 1.15.5 1.25 1 1.25s1-.1 1-1.25V11c-1-.12-2-1-2-3h1V6h1v2h1V6h1v2h1c0 2-1 2.9-2 3v7.75C18 20 17.52 21 16 21s-2-1-2-2.25V13c0-.73-.26-1-.92-1H12v9H4V5.11C4 3.94 4.82 3 8 3Z\" clip-rule=\"evenodd\"/></clipPath></defs><path d=\"M-.98-2h26v28h-26z\" clip-path=\"url(#a)\"/></svg>", "chart": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M20 20h-5v-7h-1v7H9v-4H8v4H4v-9H3v10h18V11h-1v9z\"/><path d=\"M16 3v1h3.36L9 12 4.89 7H3v1h1.47l4.46 5.35L20 4.77V8h1V3h-5z\"/></svg>", "chat": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M7 8h10v1H7zm0 3h7v1H7z\"/><path d=\"M12 3C5.25 3 3 6.07 3 9.86a6.19 6.19 0 0 0 2 4.86c.22.19 8 6.28 8 6.28v-4c6-.29 8-3.55 8-7.14C21 6.07 18.75 3 12 3Zm0 13v2.85l-6-4.62a5.08 5.08 0 0 1-2-4.37C4 6 6.69 4 12 4s8 2 8 5.86S17.31 16 12 16Z\"/></svg>", "check": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m9 19-6-7h1.5l4.49 5.36L19.5 5H21L9 19z\"/></svg>", "city": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M16 10V7h-2V4h-2V2h-1v2H9v3H7v3H5v10h1v-9h11v9h1V10Zm-6-5h3v2h-3Zm5 5H8V8h7Z\"/><path d=\"M8 13h1v7H8zm3 0h1v7h-1zm3 0h1v7h-1z\"/></svg>", "climate": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M16 7V6h-2V5a2 2 0 0 0-4 0v10.78a3 3 0 1 0 4 0V13h2v-1h-2v-2h2V9h-2V7Zm-3 4h-2V5a1 1 0 0 1 2 0Z\"/></svg>", "climateControl": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M5 19h14v1H5zM6 6a7.84 7.84 0 0 0 .53 2.66A7 7 0 0 1 7 11a7 7 0 0 1-.47 2.34A7.84 7.84 0 0 0 6 16v1h1v-1a7 7 0 0 1 .47-2.34A7.84 7.84 0 0 0 8 11a7.84 7.84 0 0 0-.53-2.66A7 7 0 0 1 7 6V5h1L6.5 3 5 5h1Zm4 0a7.84 7.84 0 0 0 .53 2.66A7 7 0 0 1 11 11a7 7 0 0 1-.47 2.34A7.84 7.84 0 0 0 10 16v1h1v-1a7 7 0 0 1 .47-2.34A7.84 7.84 0 0 0 12 11a7.84 7.84 0 0 0-.53-2.66A7 7 0 0 1 11 6V5h1l-1.5-2L9 5h1Zm9.18 7.09-.12-.7-1.05.18V9.43l1.05.18.12-.7-.56-.1.88-.5-.35-.62-.89.51.2-.53-.66-.24-.34.93-2.7-1.58.63-.74-.54-.46-.37.44V5h-.71v1.02l-.36-.44-.54.46.62.74-.49.29v1.16l1.13-.66 2.88 1.68v3.38l-2.88 1.68-1.13-.66v1.16l.56.33-.69.82.54.46.36-.44V17h.71v-1.02l.37.44.54-.46-.69-.82 2.72-1.59.38 1.02.66-.24-.2-.53.89.51.35-.62-.88-.5.56-.1z\"/></svg>", "clock": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 4a8 8 0 1 1-8 8 8 8 0 0 1 8-8m0-1a9 9 0 1 0 9 9 9 9 0 0 0-9-9Z\"/><path d=\"m8.35 8.5-.7.7L12 14l4.01-3.56-.71-.71-3.21 2.89L8.35 8.5z\"/></svg>", "close": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M4.91 19h1.5L12 12.83 17.59 19h1.5l-6.34-7 6.34-7h-1.5L12 11.17 6.41 5h-1.5l6.34 7-6.34 7z\"/></svg>", "closedCaption": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M3 6v12h18V6Zm17 11H4V7h16Z\"/><path d=\"M9.21 15c1.44 0 1.92-.68 2-2.25h-.92c-.06 1.08-.26 1.48-1.07 1.48C8.2 14.23 8 13.91 8 12c0-1.73.2-2.1 1.21-2.1.81 0 1 .32 1.06 1.4h.93C11.13 9.71 10.83 9 9.21 9S7 9.68 7 12s.46 3 2.21 3ZM15 15c1.44 0 1.92-.68 2-2.25h-.92c-.06 1.08-.25 1.48-1.07 1.48-1 0-1.21-.32-1.21-2.26 0-1.73.2-2.1 1.21-2.1.82 0 1 .32 1.06 1.4H17C16.93 9.71 16.63 9 15 9s-2.21.68-2.21 3 .48 3 2.21 3Z\"/></svg>", "co2Emission": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M6.68 7.45C8 7.45 8.37 8 8.45 9.78H10C9.89 7.18 9.39 6 6.68 6S3 7.13 3 11s.77 5 3.68 5c2.41 0 3.21-1.06 3.32-3.68H8.46c-.09 1.81-.42 2.39-1.78 2.39-1.68 0-2-.53-2-3.76-.01-2.89.32-3.5 2-3.5Zm8-1.45C11.87 6 11 7.13 11 11s.77 5 3.68 5 3.67-1.26 3.67-5-.87-5-3.67-5Zm0 8.71c-1.68 0-2-.53-2-3.76 0-2.89.33-3.5 2-3.5s2 .61 2 3.5c0 3.23-.33 3.76-2 3.76Zm4.93 3.82.51-.32A1.55 1.55 0 0 0 21 16.8c0-.86-.39-1.39-1.49-1.39S18 16 18 16.91h.84c0-.57.19-.71.66-.71s.63.15.63.6-.27.71-.65.95l-.52.32a1.56 1.56 0 0 0-.89 1.43v.5h2.87v-.7h-2c-.01-.3.23-.49.67-.77Z\"/></svg>", "compare": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M21 8h-8l2-2V4.5l-4 4 4 4V11l-2-2h8V8zM9 13l2 2H3v1h8l-2 2v1.5l4-4-4-4V13z\"/></svg>", "configurate": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 8a4 4 0 1 0 4 4 4 4 0 0 0-4-4Zm0 7a3 3 0 1 1 3-3 3 3 0 0 1-3 3Z\"/><path d=\"M18.84 13a5.81 5.81 0 0 0 .08-1 6.19 6.19 0 0 0-.08-1.07l1.78-1.5a7.24 7.24 0 0 0-.53-1.36 9.09 9.09 0 0 0-.65-1.14 8.56 8.56 0 0 0-.93-1.14l-2.2.8a6.71 6.71 0 0 0-1.8-1l-.41-2.3A8.63 8.63 0 0 0 12.66 3h-1.32a8.63 8.63 0 0 0-1.44.22l-.41 2.3a6.71 6.71 0 0 0-1.8 1l-2.2-.8a8.56 8.56 0 0 0-.93 1.14A9.09 9.09 0 0 0 3.91 8a7.24 7.24 0 0 0-.53 1.36l1.78 1.5A6.19 6.19 0 0 0 5.08 12a5.81 5.81 0 0 0 .08 1l-1.79 1.5a8.62 8.62 0 0 0 .52 1.37A9.09 9.09 0 0 0 4.54 17a11.18 11.18 0 0 0 .92 1.14l2.19-.79a6.74 6.74 0 0 0 1.84 1.06l.41 2.3a7.81 7.81 0 0 0 1.45.22h1.3a7.81 7.81 0 0 0 1.45-.22l.41-2.3a6.74 6.74 0 0 0 1.84-1.06l2.19.79a11.18 11.18 0 0 0 .92-1.14 9.09 9.09 0 0 0 .65-1.14 8.62 8.62 0 0 0 .52-1.37Zm.36 2.45a6.64 6.64 0 0 1-.57 1c-.12.19-.26.36-.39.53l-1.55-.55-.53-.2-.44.36a5.9 5.9 0 0 1-1.57.91l-.53.2-.1.56-.29 1.63-.68.07L12 20h-.59c-.22 0-.43 0-.64-.06l-.29-1.63-.1-.56-.53-.2a5.9 5.9 0 0 1-1.57-.91l-.44-.36-.53.2-1.55.52-.39-.52a7.41 7.41 0 0 1-.58-1c-.09-.19-.18-.39-.26-.6L5.8 13.8l.44-.37-.09-.56a4.94 4.94 0 0 1-.07-.87 5.62 5.62 0 0 1 .07-.92l.09-.55-.44-.37L4.54 9.1c.08-.2.17-.39.26-.59a9.31 9.31 0 0 1 .58-1L5.79 7l1.56.57.52.19.44-.35a5.62 5.62 0 0 1 1.53-.88l.53-.2.1-.56.29-1.63c.22 0 .45-.06.68-.08L12 4h.59c.21 0 .43 0 .65.07l.29 1.63.1.56.53.2a5.62 5.62 0 0 1 1.53.88l.44.35.52-.19 1.56-.5c.14.17.28.35.4.53a8.84 8.84 0 0 1 .59 1c.09.2.18.39.26.59l-1.26 1.04-.44.37.09.55a5.62 5.62 0 0 1 .07.92 4.94 4.94 0 0 1-.07.87l-.09.56.44.37 1.27 1.06c-.08.21-.17.42-.27.62Z\"/></svg>", "countryRoad": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M13.46 21h1.83a10.28 10.28 0 0 1 4.78-1H21v-1h-.93a10.51 10.51 0 0 0-6.61 2ZM19 11.16 15 3l-3.55 7.1L9 6l-4.19 7.31h-.06A4.86 4.86 0 0 0 3 13v1a3.85 3.85 0 0 1 1.37.2 5 5 0 0 1 1.29.8 3.51 3.51 0 0 1 1.18 2.15 25.72 25.72 0 0 0-2.75 3.63A2.06 2.06 0 0 0 4 21h1.13c3.94-6 8.69-8.7 15.87-9v-1c-.71 0-1.39.09-2 .16ZM7.67 16.31a4.5 4.5 0 0 0-1.36-2.07 5.79 5.79 0 0 0-.62-.45L9 8l1.91 3.18-2 4.05c-.46.34-.86.71-1.24 1.08Zm3-2.38L15 5.24l2.91 6.06a18.66 18.66 0 0 0-7.26 2.63Zm4.95 1.94a14.94 14.94 0 0 0-3.88 1.87l.56.83a14.19 14.19 0 0 1 3.7-1.78ZM8.23 21h1.3a13.9 13.9 0 0 1 1.74-1.69l-.63-.78A14.83 14.83 0 0 0 8.23 21Zm8.52-5.56.25 1a13.52 13.52 0 0 1 4-.44v-1a14.89 14.89 0 0 0-4.25.44Z\"/></svg>", "cubicCapacity": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m17.11 5.01-.72.71 3.46 3.68.72-.71-3.46-3.68zm-2.3 6.41L16.25 13l2.88-2.84-3.46-3.73-2.89 2.83 1.34 1.42-2.15 2-2.14-2 1.33-1.42-2.88-2.83-3.47 3.68L7.7 13l1.43-1.53 2.09 1.89-3.12 2.77a1.5 1.5 0 1 0 .46 2.43 1.48 1.48 0 0 0 .27-1.72L12 14l3.15 2.85a1.49 1.49 0 0 0 2.39 1.72 1.5 1.5 0 0 0-1.67-2.43l-3.11-2.82Zm.83-3.56 2.09 2.22-1.46 1.44-2.09-2.23Zm-8 3.66-1.43-1.44 2.1-2.22 1.45 1.43Zm-.8-6.51L3.37 8.69l.72.71 3.47-3.68-.72-.71z\"/></svg>", "delete": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M17 20H7V8H6v13h12V8h-1v12zM6 5h12v1H6z\"/><path d=\"M10 9h1v9h-1zm0-6h4v1h-4zm3 6h1v9h-1z\"/></svg>", "disable": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 3a9 9 0 1 0 9 9 9 9 0 0 0-9-9Zm-8 9a8 8 0 0 1 8-8 7.92 7.92 0 0 1 5.28 2L6 17.28A7.92 7.92 0 0 1 4 12Zm8 8a7.92 7.92 0 0 1-5.28-2L18 6.72A7.92 7.92 0 0 1 20 12a8 8 0 0 1-8 8Z\"/></svg>", "document": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M14 3H6v18h12V7Zm0 1.41L16.59 7H14ZM17 20H7V4h6v4h4Z\"/></svg>", "download": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M15 9v1h4v8H4v-8h4V9H3v10h17V9h-5z\"/><path d=\"m11.5 16 4-4H14l-2 2V3h-1v11l-2-2H7.5l4 4z\"/></svg>", "duration": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m7.34 7.9-.71-.71a7.72 7.72 0 0 0-.82 1.35l.87.51a7.63 7.63 0 0 1 .66-1.15ZM10 5.68l-.34-.94a7.75 7.75 0 0 0-2 1.34l.71.71A6.94 6.94 0 0 1 10 5.68Zm-3.81 4.81L5.27 10a9 9 0 0 0-.22 1.38h1a7.93 7.93 0 0 1 .14-.89ZM13 4a8 8 0 0 0-1.91.24l.35 1A6.66 6.66 0 0 1 13 5a7 7 0 1 1-6.53 9.42l1.63.84 1.57-.5-4.39-2.11L3 16.87l1.56-.5.88-1.73A8 8 0 1 0 13 4Z\"/></svg>", "edit": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M16.49 3.52A3.24 3.24 0 0 0 14.85 3a2.61 2.61 0 0 0-2.21 1.5L6 16v4.28a.72.72 0 0 0 .34.62.7.7 0 0 0 .36.1.73.73 0 0 0 .35-.09l3.73-2.2 6.7-11.35a2.5 2.5 0 0 0-.99-3.84ZM10.05 18 7 19.78v-3.51l5.28-9.15 3.15 1.74Zm6.57-11.15L15.94 8l-3.16-1.74L13.5 5c.6-1 1.17-1 1.35-1a2.35 2.35 0 0 1 1.15.38 2 2 0 0 1 1 1.07 1.93 1.93 0 0 1-.38 1.4Z\"/></svg>", "email": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M3 6v12h18V6Zm16.43 1L12 11.75 4.57 7ZM20 17H4V7.9l8 5.1 8-5.1Z\"/></svg>", "exclamation": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M11.49 13h1.01l.5-6h-2l.49 6zM11 15h2v2h-2z\"/><path d=\"M12 3a9 9 0 1 0 9 9 9 9 0 0 0-9-9Zm0 17a8 8 0 1 1 8-8 8 8 0 0 1-8 8Z\"/></svg>", "external": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M15 4v1h3.08L10 13.2l.8.8L19 5.92V9h1V4h-5z\"/><path d=\"M19 19H5V5h7V4H4v16h16v-8h-1v7z\"/></svg>", "filter": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M5 4v3l5 6.43V17l1 1v-5L6.34 7h11.32L13 13v7l1 1v-7.57L19 7V4Zm1 2V5h12v1Z\"/></svg>", "flash": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 5.7V11h3.26L11 18.3V13H7.74L12 5.7M13 2 6 14h4v8l7-12h-4V2Z\"/></svg>", "fuelStation": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M15.17 3H14l2 2v3l2 2.05v8.7c0 1.15-.47 1.25-1 1.25s-1-.1-1-1.25v-5.63a1.89 1.89 0 0 0-1-1.93 2.6 2.6 0 0 0-.95-.19H13V5.11C13 4 12.2 3 9 3S5 4 5 5.11V21h8v-9h1.07c.66 0 .9.27.93 1v5.75C15 20 15.5 21 17 21s2-1 2-2.25V6.5ZM12 11.44V20H6V5.11C6 4.81 6 4 9 4s3 .81 3 1.11Z\"/><path d=\"M7 8h4v1H7z\"/></svg>", "garage": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M20 4H3v16h1V9h16v11h1V4Zm0 4H4V5h16Z\"/><path d=\"M18.63 13.68h.07a.36.36 0 0 0 .3-.33.38.38 0 0 0-.37-.34h-.84a.35.35 0 0 0-.3.19l-.27.41h-.27A3.15 3.15 0 0 0 13.71 11h-3.42a3.15 3.15 0 0 0-3.24 2.55h-.27l-.27-.41a.35.35 0 0 0-.3-.19h-.84a.38.38 0 0 0-.37.34.36.36 0 0 0 .3.33H6l.09.13C5 14.44 5 16.05 5 16.76v2.51a.73.73 0 0 0 .72.73H7c.39 0 1.19 0 1.19-.95l7.59-.05v.05c0 .95.8.95 1.19.95h1.28a.76.76 0 0 0 .75-.73v-2.51c0-.71 0-2.32-1.12-3l.09-.13ZM10.29 12h3.42a2.15 2.15 0 0 1 2.21 1.53H8.08A2.15 2.15 0 0 1 10.29 12ZM18 16.76V19h-1.22v-.5a.5.5 0 0 0-.5-.5h-1.45a.5.5 0 0 0-.5-.5H9.67a.5.5 0 0 0-.5.5H7.72a.5.5 0 0 0-.5.5v.5H6v-2.24c0-1.86.43-2.23 1.17-2.23h9.66c.74 0 1.17.37 1.17 2.23Z\"/><path d=\"M17.1 15.2h-.88a1.12 1.12 0 0 0-1.11 1.12.05.05 0 0 0 .05.05h2.13a.15.15 0 0 0 .15-.16v-.5c0-.43-.06-.51-.34-.51Zm-9.32 0H6.9c-.28 0-.34.08-.34.51v.5a.15.15 0 0 0 .15.16h2.13a.05.05 0 0 0 .05-.05 1.12 1.12 0 0 0-1.11-1.12Z\"/></svg>", "gift": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M5 9v11h13V9Zm1 10v-9h5v9Zm11 0h-5v-9h5ZM6 7h11v1H6z\"/><path d=\"M10.7 7.9 8 4.64 8.77 4l2.85 3.45-.92.45z\"/><path d=\"M12.3 7.9 15 4.64 14.23 4l-2.85 3.45.92.45z\"/></svg>", "globe": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 3a9 9 0 1 0 9 9 9 9 0 0 0-9-9Zm7.41 6H15.8a14.34 14.34 0 0 0-1.34-4.61A8 8 0 0 1 19.41 9ZM15 12c0 .7 0 1.37-.09 2H9.09C9 13.37 9 12.7 9 12s0-1.37.09-2h5.82c.09.63.09 1.3.09 2Zm-3 8a8 8 0 0 1-1.11-.09A11.14 11.14 0 0 1 9.21 15h5.58a11.14 11.14 0 0 1-1.68 4.91A8 8 0 0 1 12 20ZM9.21 9a11.14 11.14 0 0 1 1.68-4.91A8 8 0 0 1 12 4a8 8 0 0 1 1.11.09A11.14 11.14 0 0 1 14.79 9Zm.34-4.61A14.08 14.08 0 0 0 8.2 9H4.59a8 8 0 0 1 4.96-4.61ZM4.26 10H8.1c-.1.65-.1 1.31-.1 2s0 1.35.1 2H4.26a7.82 7.82 0 0 1 0-4Zm.33 5H8.2a14.08 14.08 0 0 0 1.35 4.61A8 8 0 0 1 4.59 15Zm9.87 4.61A14.34 14.34 0 0 0 15.8 15h3.61a8 8 0 0 1-4.95 4.61ZM19.74 14H15.9c.06-.65.1-1.31.1-2s0-1.35-.1-2h3.84a7.82 7.82 0 0 1 0 4Z\"/></svg>", "grid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M20 10V4H4v16h16V10Zm-1-5v4h-4V5Zm-5 0v4h-4V5Zm0 5v4h-4v-4ZM5 5h4v4H5Zm0 5h4v4H5Zm0 9v-4h4v4Zm5 0v-4h4v4Zm9 0h-4v-4h4Zm0-5h-4v-4h4Z\"/></svg>", "highway": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M11 5h1v3h-1zM3 9v3h2v-1H4v-1h15v1h-1v1h2V9H3z\"/><path d=\"M10.36 4h2.28L14 8h1.19l-1.86-5H9.67L7.82 8H9l1.36-4zm4.88 7 3.32 8.99H12V11h-1v8.99H4.44L7.82 11H6.7L3 21h17l-3.7-10h-1.06z\"/></svg>", "home": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 2 4 9v12h6v-7h4v7h6V9Zm7 18h-4v-7H9v7H5V9.48l7-6.3 7 6.3Z\"/></svg>", "horn": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m20 9-1 1H8s-2 0-2-4H3v12h3c0-4 2-4 2-4h1v1c0 1 0 2 2 2h4c2 0 2-1 2-2v-1h2l1 1h1V9Zm-4 6c0 .92 0 1-1 1h-4c-.92 0-1 0-1-1v-1h6Zm4-1.44-.25-.26-.3-.3H8c-.11 0-2.6.05-3 4H4V7h1c.4 4 2.89 4 3 4h11.45l.3-.3.25-.26Z\"/></svg>", "image": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M21 16V5H6v3H3v11h15v-3ZM7 6h13v9h-2V8H7ZM6 18l2-2.5 2.2 2L13 13l3.2 5Zm7-7-3 5-2-2-3.2 4H4V9h13v8.39Z\"/><circle cx=\"6\" cy=\"11\" r=\"1\"/></svg>", "increase": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M3 21h4v-7H3Zm1-6h2v5H4Zm6 6h4V9h-4Zm1-11h2v10h-2Zm6-7v18h4V3Zm3 17h-2V4h2Z\"/></svg>", "information": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M11 7h2v2h-2zm0 4h2v6h-2z\"/><path d=\"M12 3a9 9 0 1 0 9 9 9 9 0 0 0-9-9Zm0 17a8 8 0 1 1 8-8 8 8 0 0 1-8 8Z\"/></svg>", "key": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M18.07 7a7.9 7.9 0 0 0-2.71.71c-1.47.64-2.18 1.39-2.18 2.29H5l-.29.29-1 1L3 12l.69.71 1 1 .69.7.69-.7.67-.71h.17l.69.71.69.7.69-.7.69-.71h.17l.69.71.69.7.7-.7.69-.71h.57c0 .9.71 1.65 2.18 2.29a7.9 7.9 0 0 0 2.71.71C19 16 21 16 21 14V9c0-2-2-2-2.93-2Zm-4.89 5h-1l-1 1-1-1h-1l-1 1-1-1h-1l-1 1-1-1 1-1H13ZM20 14c0 1-1 1-1.95 1s-3.91-1-3.91-2v-3c0-1 2.93-2 3.91-2S20 8 20 9Z\"/><path d=\"M18.56 9a.49.49 0 0 0-.49.5v4a.5.5 0 0 0 .49.5.49.49 0 0 0 .48-.5v-4a.48.48 0 0 0-.48-.5Z\"/></svg>", "leaf": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path fill-rule=\"evenodd\" d=\"M20.58 3.72a1.13 1.13 0 0 0-.17-.23 1.74 1.74 0 0 0-.26-.19A16.2 16.2 0 0 0 17 3a15 15 0 0 0-6.38 1.37 11 11 0 0 0-2 1.22 9.16 9.16 0 0 0-1.23 1.07 5.92 5.92 0 0 0-.39.45 3.42 3.42 0 0 0-.22.28c-.1.12-.19.25-.29.38-1.94 2.54-2.1 5.32.61 8.32l.06.06L3 20.29l.71.71 4.13-4.13.22.21c.19.16.39.32.58.46a6.78 6.78 0 0 0 4 1.42 6.76 6.76 0 0 0 4.54-1.9l.18-.16.39-.39.21-.23a11.33 11.33 0 0 0 .74-.94 12 12 0 0 0 1.19-2.2 15.83 15.83 0 0 0 .69-9.42Zm-1.59 9a11.08 11.08 0 0 1-1.08 2 8.52 8.52 0 0 1-.68.86 1.54 1.54 0 0 1-.17.19l-.33.33-.12.11-.07.06A5.79 5.79 0 0 1 12.67 18a5.8 5.8 0 0 1-3.44-1.23l-.5-.39-.18-.18L12 12.71l-.71-.71-3.44 3.44c-2.2-2.43-2.37-4.66-.56-7l.12-.17.12-.27.17-.22.36-.39a9.93 9.93 0 0 1 1.14-1 10.74 10.74 0 0 1 1.83-1.11A13.91 13.91 0 0 1 17 4a15.63 15.63 0 0 1 2.65.23 14.8 14.8 0 0 1-.65 8.53Z\"/></svg>", "leather": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M13.26 4a5 5 0 0 0 2 2.34 8.57 8.57 0 0 0 3.2.66l.26.42a7.64 7.64 0 0 0-2 4.8 7 7 0 0 0 2.07 5l-.34.67a12.62 12.62 0 0 0-2-.3A6.19 6.19 0 0 0 12 19.4a6.15 6.15 0 0 0-4.38-1.84 14.32 14.32 0 0 0-2.07.3l-.34-.67a6.76 6.76 0 0 0 2.07-5 7.64 7.64 0 0 0-2-4.78L5.54 7a8.57 8.57 0 0 0 3.19-.68 4.85 4.85 0 0 0 2-2.34h2.54M14 3h-4a4 4 0 0 1-1.78 2.49 8.65 8.65 0 0 1-2.9.51A1.17 1.17 0 0 1 5 6L4 7.6a6.56 6.56 0 0 1 2.28 4.67C6.38 14.2 5.35 15.68 4 17l1 2a20.82 20.82 0 0 1 2.62-.44A5.22 5.22 0 0 1 12 21a5.24 5.24 0 0 1 4.42-2.44A19.89 19.89 0 0 1 19 19l1-2a6.31 6.31 0 0 1-2.28-4.73A6.56 6.56 0 0 1 20 7.6L19 6a1.17 1.17 0 0 1-.32 0 8.65 8.65 0 0 1-2.9-.54A4.14 4.14 0 0 1 14 3Z\"/></svg>", "light": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M10 17h5a1.08 1.08 0 0 1 .13-.47C16 15.1 18 11.23 18 9c0-4-2-6-6-6S6 5 6 9c0 2.23 2 6.1 2.91 7.58A1.87 1.87 0 0 1 9 17Zm3-1h-2v-6h2Zm1.31 0H14V9h-4v7h-.28C8.77 14.49 7 10.9 7 9c0-3.46 1.54-5 5-5s5 1.54 5 5c0 1.9-1.77 5.49-2.69 7ZM9 18h6v1H9zm1 2h4v1h-4z\"/></svg>", "list": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M8 16h13v1H8z\"/><circle cx=\"4.5\" cy=\"16.5\" r=\"1.5\"/><path d=\"M8 11h13v1H8z\"/><circle cx=\"4.5\" cy=\"11.5\" r=\"1.5\"/><path d=\"M8 6h13v1H8z\"/><circle cx=\"4.5\" cy=\"6.5\" r=\"1.5\"/></svg>", "locate": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M11.5 8.47a3 3 0 1 0 3 3 3 3 0 0 0-3-3Zm0 5.06a2 2 0 1 1 2-2 2 2 0 0 1-2 2Z\"/><path d=\"M20 11h-2a6.48 6.48 0 0 0-6-6V3h-1v2a6.48 6.48 0 0 0-6 6H3v1h2a6.48 6.48 0 0 0 6 6v2h1v-2a6.48 6.48 0 0 0 6-6h2Zm-8.5 6a5.5 5.5 0 1 1 5.5-5.5 5.51 5.51 0 0 1-5.5 5.5Z\"/></svg>", "lock": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M16 11v3.38c0 3.15-1.43 4.62-4.5 4.62S7 17.53 7 14.38V11h9m1-1H6v4.38C6 17.48 7.37 20 11.5 20s5.5-2.52 5.5-5.62V10Z\"/><path d=\"M11.5 5c1.16 0 2.5.34 2.5 3v2H9V8c0-2.66 1.34-3 2.5-3m0-1C8.88 4 8 5.79 8 8v3h7V8c0-2.21-.88-4-3.5-4Zm-.5 9h1v3h-1z\"/></svg>", "lockOpen": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M16 11v3.38c0 3.15-1.43 4.62-4.5 4.62S7 17.53 7 14.38V11h9m1-1H6v4.38C6 17.48 7.37 20 11.5 20s5.5-2.52 5.5-5.62V10Z\"/><path d=\"M11.5 4a3.15 3.15 0 0 0-3.42 3h1a2.14 2.14 0 0 1 2.42-2c1.16 0 2.5.34 2.5 3v2h-2v1h3V8c0-2.21-.88-4-3.5-4Zm-.5 9h1v3h-1z\"/></svg>", "logoBaidu": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M9 15.86h1.12v2.5H9.11a1.11 1.11 0 0 1-.95-.86 1.64 1.64 0 0 1 .08-.95 1.2 1.2 0 0 1 .76-.69Zm-2.88-3.37c-2 .42-2.74-1.85-2.52-2.9 0 0 .24-2.29 1.85-2.43a2.45 2.45 0 0 1 2.33 2.05c.06.51.34 2.86-1.66 3.28Zm12.08 3.12a3.12 3.12 0 0 1 .61 3.84c-1.09 2.52-5.08 1.21-5.08 1.21a6.78 6.78 0 0 0-3.19-.09 11.57 11.57 0 0 1-3.18.23 2.74 2.74 0 0 1-2.57-2.43c-.57-2.48 2-3.83 2.18-4.06a11.86 11.86 0 0 0 2.38-2.53c.86-1.4 3.42-2.52 5.23.24a20.16 20.16 0 0 0 3.62 3.59Zm-6.84 3.76v-6.15h-1.18v1.67H8.8a2.27 2.27 0 0 0-1.87 1.64 2.9 2.9 0 0 0 .2 1.76 2.3 2.3 0 0 0 1.63 1.1Zm4.84 0V15h-1.29v3.25h-1.23s-.4-.05-.47-.3v-2.89L12 15v3.23s.06.81 1.22 1.1Zm4.23-8.64c0 .56.24 2.94-1.95 3s-2.28-1.45-2.28-2.52.23-2.72 2-2.72a2.28 2.28 0 0 1 2.23 2.22Zm-5.85-2c-1.47-.19-1.81-1.5-1.66-2.81.12-1.07 1.42-2.71 2.47-2.47a2.64 2.64 0 0 1 1.81 2.77c-.2 1.17-1.14 2.72-2.62 2.53Zm-4.75-.17c-1.11 0-2-1.24-2-2.78S8.72 3 9.83 3s2 1.24 2 2.78-.9 2.78-2 2.78Z\"/></svg>", "logoDelicious": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M3 3v18h18V3Zm17.25 17.25H12V12H3.75V3.75H12V12h8.25Z\"/></svg>", "logoDigg": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M5.69 9.25V7h1.93v7.87H3V9.25Zm0 4.15-.05-2.63h-.76v2.63Zm2.68-4.15h1.93v5.62H8.37Zm0-2.25h1.93v1.52H8.37Zm2.69 7.87V9.26h4.61v7.86h-4.61v-1.51h2.68v-.74Zm1.88-4.1v2.63h.76v-2.63Zm3.49-1.52H21v7.86h-4.62v-1.5h2.69v-.74h-2.64Zm2.64 4.15v-2.63h-.76v2.63Z\"/></svg>", "logoFacebook": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M7.5 12.44h2.42V21h3.27v-8.56H16l.51-3.21h-3.32V7a.71.71 0 0 1 .38-.68 1.6 1.6 0 0 1 .77-.21h2.12V3H14a5.38 5.38 0 0 0-2 .36 2.84 2.84 0 0 0-1.3 1 4.16 4.16 0 0 0-.59 1.2 4.51 4.51 0 0 0-.17 1.23v2.44H7.5v3.21Z\"/></svg>", "logoFoursquare": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M16.53 3H7.6A1.54 1.54 0 0 0 6 4.62v15.26a1 1 0 0 0 .55 1.05 1 1 0 0 0 1.08-.25s4.21-5.25 4.29-5.33.11-.12.22-.12h2.73c1.14 0 1.33-.88 1.45-1.4s1.21-6.58 1.59-8.54C18.19 3.8 17.84 3 16.53 3Zm-.21 10.83c.09-.43 1.21-6.58 1.59-8.54ZM16 5.6l-.38 2.1a.62.62 0 0 1-.55.46h-3.48a.66.66 0 0 0-.67.71v.46a.67.67 0 0 0 .67.72h2.95s.55.32.49.64-.34 1.89-.37 2.06a.6.6 0 0 1-.55.48H11.7a.85.85 0 0 0-.87.45c-.29.39-2.93 3.8-2.93 3.8h-.05V5.56A.58.58 0 0 1 8.39 5h7.17a.49.49 0 0 1 .44.6Z\"/></svg>", "logoGmail": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M21 18.75V5.25H3v13.5ZM18.42 16v2.63H5.78v-2.51h.06l4.74-3.83 1.44 1.22 1.27-1.13L18.42 16Zm0-.46-4.83-3.4 4.83-4.2Zm-.8-10.13L12 10.8 6.54 5.37ZM10.34 12l-4.56 3.68V8.15L10.34 12Z\"/></svg>", "logoGoogle": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path fill-rule=\"evenodd\" d=\"M19.53 10.55H12v3.09h4.31a3.67 3.67 0 0 1-1.6 2.41A4.82 4.82 0 1 1 12 7.18a4.35 4.35 0 0 1 3.06 1.2l2.29-2.3A7.67 7.67 0 0 0 12 4a8 8 0 1 0 0 16 7.63 7.63 0 0 0 5.29-1.94 7.77 7.77 0 0 0 2.39-5.88 8.59 8.59 0 0 0-.15-1.63Z\"/></svg>", "logoHatena": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M14.63 14.8a4.28 4.28 0 0 1-.42 1.93 3.86 3.86 0 0 1-1.14 1.42 5.19 5.19 0 0 1-1.84.94 9.48 9.48 0 0 1-2.54.28H3V4.5h5a18.69 18.69 0 0 1 2.51.12 5 5 0 0 1 1.57.53 2.77 2.77 0 0 1 1.21 1.1 3.48 3.48 0 0 1 .39 1.66 3.42 3.42 0 0 1-.54 1.91 3.61 3.61 0 0 1-1.53 1.29v.08a4 4 0 0 1 2.2 1.2 3.5 3.5 0 0 1 .82 2.41ZM9.94 8.69a1.43 1.43 0 0 0-.17-.64 1.12 1.12 0 0 0-.63-.5 3.33 3.33 0 0 0-1-.17H6.58v2.74h1.6a2.62 2.62 0 0 0 1-.17 1.13 1.13 0 0 0 .65-.51 1.67 1.67 0 0 0 .15-.73Zm.89 6.06a1.86 1.86 0 0 0-.26-1.06 1.63 1.63 0 0 0-.89-.55A4.79 4.79 0 0 0 8.5 13H6.57v3.58h2a3.29 3.29 0 0 0 1.23-.25 1.46 1.46 0 0 0 .78-.64 1.84 1.84 0 0 0 .22-.92ZM21 4.5 20.56 15h-3.1L17 4.5Zm-.3 13.37a1.69 1.69 0 1 1-1.7-1.63 1.66 1.66 0 0 1 1.7 1.63Z\"/></svg>", "logoInstagram": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 4.62c-2.4 0-2.69 0-3.64.06A4.8 4.8 0 0 0 6.7 5a2.81 2.81 0 0 0-1 .68 2.74 2.74 0 0 0-.67 1 5 5 0 0 0-.31 1.67v7.27A5.06 5.06 0 0 0 5 17.3a2.74 2.74 0 0 0 .67 1 2.81 2.81 0 0 0 1 .68 5.05 5.05 0 0 0 1.66.3c1 .05 1.24.06 3.64.06s2.69 0 3.64-.06a4.92 4.92 0 0 0 1.67-.3A3 3 0 0 0 19 17.3a5 5 0 0 0 .31-1.67c0-1 .05-1.23.05-3.64s0-2.68-.05-3.63A5.06 5.06 0 0 0 19 6.69 3 3 0 0 0 17.31 5a5.13 5.13 0 0 0-1.67-.3c-.95-.07-1.24-.08-3.64-.08ZM12 3c2.45 0 2.75 0 3.71.06a6.61 6.61 0 0 1 2.19.41 4.64 4.64 0 0 1 2.63 2.63 6.66 6.66 0 0 1 .41 2.19c0 1 .06 1.26.06 3.71s0 2.75-.06 3.71a6.61 6.61 0 0 1-.41 2.19 4.64 4.64 0 0 1-2.63 2.63 6.61 6.61 0 0 1-2.19.41c-1 0-1.26.06-3.71.06s-2.75 0-3.71-.06a6.66 6.66 0 0 1-2.19-.41 4.64 4.64 0 0 1-2.63-2.63 6.61 6.61 0 0 1-.41-2.19C3 14.75 3 14.45 3 12s0-2.75.06-3.71a6.54 6.54 0 0 1 .41-2.18 4.37 4.37 0 0 1 1-1.6 4.42 4.42 0 0 1 1.59-1 6.93 6.93 0 0 1 2.19-.41C9.25 3 9.55 3 12 3Zm0 4.38A4.62 4.62 0 1 1 7.38 12 4.62 4.62 0 0 1 12 7.38ZM12 15a3 3 0 1 0-3-3 3 3 0 0 0 3 3Zm5.89-7.81a1.08 1.08 0 1 1-1.08-1.08 1.08 1.08 0 0 1 1.08 1.08Z\"/></svg>", "logoKaixin": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M13.78 10.09v.13c-.18.56-.63 1-1 .9s-.53-.57-.35-1.13.63-1 1-.9a.39.39 0 0 1 .24.12 1.29 1.29 0 0 0-.85-1 1.43 1.43 0 0 0-1.41.79c0-.86-.33-1.53-.87-1.7-.8-.3-1.79.7-2.21 2.07-.42 1.4-.11 2.73.69 3a1.59 1.59 0 0 0 1.58-.81c0 1 .37 1.76 1 1.9.81.19 1.75-.79 2.08-2.22a4 4 0 0 0 .11-1.13Zm-.28-.66c-.35-.15-.69.14-.44.37.35.15.69-.13.44-.37Zm-3.43.67c-.35-.1-.46-.6-.24-1.1s.69-.93 1-.85.45.59.23 1.15-.64.88-.99.8Zm.63-1.73a.25.25 0 1 0 0 .48c.17 0 .32-.11.32-.24s-.14-.24-.32-.24ZM21 10.61c.24.72-.4 2-1.39 3a9.3 9.3 0 0 1-3.31 1.74l.3 3c.13 1.18.27 2.36-.84 2.59s-2.64-.49-4-1.49l-2-1.53s-1.31 1-2.35 1.68-1.63.9-2.41-.06-.83-3.45-.64-4.71a18.35 18.35 0 0 1 .55-2.4A9.58 9.58 0 0 1 3 7.16c.08-2.68 1.43-2.08 2.14-1.64a6.55 6.55 0 0 0 3 1S11 3 13.33 3c1.26 0 1.41 1.57 1.67 2.81S15.51 9 15.51 9a21.34 21.34 0 0 0 2.49.53c1.71.31 2.75.36 3 1.08Zm-7.36 3.24.38.31a1.84 1.84 0 0 1-.19-.44c-.07-.24-.16-.62-.16-.62l-.08.61s-2.9 2-4.56 1.38-2-3.52-2-3.52l.38-.44a2.28 2.28 0 0 1-.52.27 2.87 2.87 0 0 1-.48.17h.48s.08 3.34 2 3.95 4.71-1.67 4.72-1.67Z\"/></svg>", "logoKakaotalk": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m10 9.72-.67 1.91h1.36L10 9.72Z\"/><path d=\"M12 3C6.48 3 2 6.54 2 10.91c0 2.84 1.9 5.33 4.74 6.72-.21.78-.75 2.83-.86 3.27s.2.54.42.39l3.84-2.62a12.62 12.62 0 0 0 1.86.14c5.52 0 10-3.54 10-7.9S17.52 3 12 3ZM7.08 13.07a.48.48 0 0 1-.49.49h-.1a.46.46 0 0 1-.34-.14.47.47 0 0 1-.15-.35v-3.5H5a.5.5 0 1 1 0-1h3a.5.5 0 0 1 0 1h-.9Zm4.79.46a.48.48 0 0 1-.62-.29l-.25-.71H9l-.25.71a.49.49 0 0 1-.62.29.47.47 0 0 1-.29-.61l1.44-3.85v-.06a.69.69 0 0 1 .71-.5.7.7 0 0 1 .68.42l1.46 4a.47.47 0 0 1-.26.6Zm3.13 0h-2a.45.45 0 0 1-.45-.45v-4a.54.54 0 1 1 1.07 0v3.57H15a.47.47 0 0 1 .46.46.46.46 0 0 1-.46.42Zm4.25-.06a.48.48 0 0 1-.67-.1l-1.44-1.88-.3.31V13a.54.54 0 0 1-.54.54.54.54 0 0 1-.54-.54V9a.54.54 0 0 1 .54-.54.54.54 0 0 1 .54.54v1.4l1.69-1.69a.47.47 0 1 1 .67.67l-1.37 1.42 1.52 2a.48.48 0 0 1-.1.67Z\"/></svg>", "logoLinkedin": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M3.3 8H7v12H3.3V8zm1.9-6c1.2 0 2.2 1 2.2 2.2 0 1.2-1 2.2-2.2 2.2C4 6.3 3 5.4 3 4.2 3 3 4 2 5.2 2zm4.2 6H13v1.6c.7-1.3 2.1-2 3.5-1.9 3.8 0 4.5 2.5 4.5 5.7V20h-3.7v-5.8c0-1.4 0-3.2-1.9-3.2s-2.2 1.5-2.2 3.1V20H9.4V8z\"/></svg>", "logoNaver": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M14.85 12.56 8.92 4H4v16h5.15v-8.56L15.08 20H20V4h-5.15v8.56z\"/></svg>", "logoPinterest": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M5.25 9.47a5.47 5.47 0 0 0 .52 2.44 3 3 0 0 0 1.54 1.5.32.32 0 0 0 .5-.24 2.44 2.44 0 0 1 .08-.44 2 2 0 0 1 .12-.4.56.56 0 0 0-.16-.56 3.13 3.13 0 0 1-.66-2 4.88 4.88 0 0 1 1.38-3.5 4.67 4.67 0 0 1 3.55-1.45 4.19 4.19 0 0 1 3.08 1.1 3.9 3.9 0 0 1 1.11 2.88 7.76 7.76 0 0 1-.9 3.88 2.6 2.6 0 0 1-2.28 1.59 1.61 1.61 0 0 1-1.3-.58 1.52 1.52 0 0 1-.3-1.39c.08-.32.2-.75.35-1.27s.29-1 .39-1.39a4 4 0 0 0 .16-1 1.74 1.74 0 0 0-.35-1.09 1.23 1.23 0 0 0-1-.44 1.69 1.69 0 0 0-1.38.77 3.14 3.14 0 0 0-.56 1.89 4.91 4.91 0 0 0 .08.86 1.43 1.43 0 0 0 .19.58l.08.2Q8.36 16.15 8.16 17a11.2 11.2 0 0 0 0 3.94.09.09 0 0 0 .08.1.16.16 0 0 0 .15 0 10.54 10.54 0 0 0 1.79-3.41c.49-1.75.74-2.69.74-2.82a2.19 2.19 0 0 0 .95.9 2.93 2.93 0 0 0 1.49.39 4.65 4.65 0 0 0 3.88-2 8.25 8.25 0 0 0 1.51-5.11A5.64 5.64 0 0 0 17 4.77 6.19 6.19 0 0 0 12.43 3a6.92 6.92 0 0 0-5.26 2 6.33 6.33 0 0 0-1.92 4.47Z\"/></svg>", "logoQq": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m3 10 4.3 4.22-.89 6.18 5.51-2.89 5.34 2.93-.64-5.1a21.49 21.49 0 0 1-4.18.4A29 29 0 0 1 9 15.58l-1.25-.2 5.59-4.06a18.65 18.65 0 0 0-2.52-.26c-1.13-.07-2.13-.12-3-.14H6.58q7.59-1 9.88-.13l-5.91 4.1 6 .16-.12-.88L21 10l-6.31-.76-2.85-5.68-2.93 5.63Zm13.58 5.1v.29l1.05-.25Z\"/></svg>", "logoQqShare": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M20.42 13.05a14.93 14.93 0 0 0-1.18-2 1.94 1.94 0 0 0 0-1.63 5.47 5.47 0 0 1-.37-.66c-.13-.37-.11-.8-.2-1.15a8.22 8.22 0 0 0-.31-1C17.54 4.45 15.79 3.26 13 3h-1.08a7.72 7.72 0 0 0-2.28.53A5.26 5.26 0 0 0 8 4.65a6 6 0 0 0-1.86 3.6v.36c0 .11-.14.18-.14.3a2.17 2.17 0 0 0-.12.69 1.64 1.64 0 0 0-.29 1.47 6.92 6.92 0 0 0-1.92 2.12A5 5 0 0 0 3 16c0 .31.08.77.34.83a.73.73 0 0 0 .41-.09 2.32 2.32 0 0 0 .84-.74c.09-.15.11-.34.26-.45A2.1 2.1 0 0 1 5 16a4.67 4.67 0 0 0 1.45 2c.1.08.26.16.29.27-.67.06-1.21.2-1.44.64a1.65 1.65 0 0 0-.14.82c.06.52.67.81 1.13 1a8.86 8.86 0 0 0 3.12.27 5 5 0 0 0 2.34-.67c.11-.06.19-.16.28-.17a3.94 3.94 0 0 1 .4 0h.38a6.6 6.6 0 0 1 .86.28c1.53.49 4.11.6 5.35-.18a1 1 0 0 0 .48-.63.87.87 0 0 0-.5-.83 9.06 9.06 0 0 0-1.22-.71 5 5 0 0 0 1.1-1.67 1.78 1.78 0 0 1 .3-.62 6.59 6.59 0 0 0 .42.71c.14.2.33.52.6.51a.56.56 0 0 0 .41-.27 2.22 2.22 0 0 0 .39-1.13 4.8 4.8 0 0 0-.57-2.56Z\"/></svg>", "logoReddit": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M22 12.03c0-1.21-.99-2.18-2.19-2.18-.59 0-1.13.23-1.52.61-1.51-1.07-3.57-1.77-5.86-1.86l1-4.68 3.26.7c.04.82.72 1.48 1.56 1.48.86 0 1.56-.7 1.56-1.55a1.56 1.56 0 0 0-2.96-.68l-3.64-.77c-.11-.02-.22 0-.29.05-.09.05-.14.14-.16.25l-1.11 5.21c-2.33.07-4.43.77-5.95 1.86-.38-.37-.92-.6-1.51-.6-1.22 0-2.19.98-2.19 2.18 0 .89.54 1.64 1.29 1.98-.04.21-.05.43-.05.66 0 3.36 3.92 6.09 8.76 6.09s8.76-2.71 8.76-6.09c0-.21-.02-.45-.05-.66.75-.34 1.29-1.11 1.29-2zM6.98 13.58c0-.86.7-1.55 1.56-1.55.86 0 1.56.7 1.56 1.55s-.7 1.55-1.56 1.55c-.86.03-1.56-.69-1.56-1.55zm8.73 4.13c-1.08 1.07-3.12 1.14-3.71 1.14-.61 0-2.65-.09-3.71-1.14a.398.398 0 0 1 0-.57c.16-.16.41-.16.57 0 .68.68 2.11.91 3.14.91s2.47-.23 3.14-.91c.16-.16.41-.16.57 0 .14.16.14.41 0 .57zm-.29-2.55c-.86 0-1.56-.7-1.56-1.55 0-.86.7-1.55 1.56-1.55.86 0 1.56.7 1.56 1.55 0 .83-.7 1.55-1.56 1.55z\"/></svg>", "logoSkyrock": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12.55 13.79a3.09 3.09 0 0 1 .25 1.72 3.26 3.26 0 0 1-.6 1.58 3.14 3.14 0 0 1-1.67 1.11 6 6 0 0 1-1.75.28 7.68 7.68 0 0 1-2.08-.19 3.43 3.43 0 0 1-2.27-1.68A3.75 3.75 0 0 1 4 15v-.09h2.22v.14a2 2 0 0 0 .21.63 1.53 1.53 0 0 0 .81.69 3.73 3.73 0 0 0 2.51.09 1.15 1.15 0 0 0 .84-.82.88.88 0 0 0-.32-1 3.43 3.43 0 0 0-1-.53c-.46-.17-.94-.28-1.42-.41a16.22 16.22 0 0 1-2-.56 2.33 2.33 0 0 1-1.27-1 3.45 3.45 0 0 1-.1-3 2.87 2.87 0 0 1 1.7-1.45 5.67 5.67 0 0 1 1.69-.31 6.37 6.37 0 0 1 2.38.26 3.09 3.09 0 0 1 2.12 2.45 3.31 3.31 0 0 1 .07.55v.07h-2a1.67 1.67 0 0 0-.19-.55 1.7 1.7 0 0 0-1.33-.94 3.55 3.55 0 0 0-1.62 0 1.19 1.19 0 0 0-.91 1.17.77.77 0 0 0 .3.61 2.64 2.64 0 0 0 1 .48l2.27.6a8 8 0 0 1 1.43.48 2.42 2.42 0 0 1 1.16 1.23Zm3.46.33L18.3 21l-.65-.46-4.44-3.15v-.07a4 4 0 0 0 .55-1.32l1.68 1.19-.13-.4-1.07-3.2 3.15-2.23h-3.91v-.16a9.43 9.43 0 0 0-.07-1.06 4.18 4.18 0 0 0-1.05-2.28 3.79 3.79 0 0 0-1.27-.94h-.08L12.3 3l2.28 6.87H22l-6 4.25Z\"/></svg>", "logoSohu": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m6.18 12.46-1 .34v2.61c0 .89-.34 1.06-1.68 1a3.84 3.84 0 0 0-.25-.87h.94c.13 0 .17-.05.17-.18v-2.29c-.34.12-.65.21-.9.29a.2.2 0 0 1-.15.16L3 12.5c.36-.09.81-.2 1.31-.34v-1.9h-1.2v-.83h1.2V7.51h1c0 .09-.07.14-.22.16v1.76h1v.83h-1V12l1-.27.1.78Zm4.58.3.56.27a.29.29 0 0 1-.11.11 4.7 4.7 0 0 1-1.6 1.95 9.31 9.31 0 0 0 2.17.59 3.38 3.38 0 0 0-.55.79 8.84 8.84 0 0 1-2.49-.87 10.28 10.28 0 0 1-2.8.85 3.19 3.19 0 0 0-.4-.75A10 10 0 0 0 8 15.09a5.45 5.45 0 0 1-1.24-1.3l.55-.23H6.16v-.77h4.6Zm-2.38-.16V12h-2V8.3l.42.15a4.65 4.65 0 0 0 1-.62l.56.54V7.5l1 .07c0 .07-.07.12-.21.14v3.52h1.32v-.8h-1v-.67h1V9h-1v-.74h1.76V12H9.16v.65Zm-1.22-1.37h1.22V8.5H8.3a7.18 7.18 0 0 1-1.14.5v.72H8v.67h-.84Zm.37 2.33a4.14 4.14 0 0 0 1.26 1.11 3.87 3.87 0 0 0 1.26-1.11Zm5.39-6a6.09 6.09 0 0 1 .9 1 7.91 7.91 0 0 0 .64-1l.88.45c0 .05-.09.09-.2.08a8.77 8.77 0 0 1-.88 1.3 8 8 0 0 1 .55 3.34 7 7 0 0 1-.48 3.27c-.19.25-.43.41-1.23.41h-.38a2 2 0 0 0-.23-.87h.59c.34 0 .48 0 .62-.17a8.62 8.62 0 0 0 .3-2.77 7.76 7.76 0 0 1-1.29 1.45 3 3 0 0 0-.57-.67 6.28 6.28 0 0 0 1.79-2.07 5.45 5.45 0 0 0-.27-1.21c-.29.29-.58.57-.88.82a3.67 3.67 0 0 0-.6-.58 8.45 8.45 0 0 0 1.11-1.06 5.6 5.6 0 0 0-1-1.24l.61-.47Zm3.31.86a17.93 17.93 0 0 0 3.42-.93l.82.66a.3.3 0 0 1-.22.05l-.62.2c.16 3 .47 5.93 1.37 7.4a3 3 0 0 0-.65.67c-1-1.69-1.25-4.63-1.43-7.87-.77.2-1.65.38-2.47.52v2.35a12.74 12.74 0 0 1-.4 3.39l1.27-.08V9l.93.06c0 .07-.06.12-.19.14v5.51h.68c-.1-.42-.22-.83-.34-1.19l.58-.16a17.63 17.63 0 0 1 .68 2.64l-.62.18c0-.22-.07-.48-.13-.75-1 .12-1.91.22-2.54.28a.17.17 0 0 1-.14.13L16 15a5.62 5.62 0 0 1-.69 1.49 2.08 2.08 0 0 0-.62-.56 8.13 8.13 0 0 0 1-4.47V8.25l.57.18Z\"/></svg>", "logoTecent": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 3a7.32 7.32 0 1 1-1.95 14.37c-.46-.2-.22-.74-.22-.74.2-.58.61-.41.61-.41a6.12 6.12 0 1 0-3.72-2.85c.18.6-.24.74-.24.74a.56.56 0 0 1-.76 0A7.32 7.32 0 0 1 12 3Zm0 4.88a2.44 2.44 0 0 1 0 4.88 2.41 2.41 0 0 1-1.42-.46 16.23 16.23 0 0 0-3.47 6.45 14.59 14.59 0 0 0-.4 1.88.89.89 0 0 1-.86.35.7.7 0 0 1-.39-.29 17.86 17.86 0 0 1 4.33-9.34A2.44 2.44 0 0 1 12 7.88Z\"/></svg>", "logoTelegram": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M7.73 13.29 3.64 12c-.88-.27-.89-.87.2-1.31L19.78 4.6c.73-.33 1.44.17 1.16 1.28l-2.72 12.71c-.18.91-.73 1.12-1.49.71l-4.14-3-2 1.92a1 1 0 0 1-.83.41c-.54 0-.44-.2-.63-.7Z\"/></svg>", "logoTiktok": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M17.6 6.65a4.349 4.349 0 0 1-1.93-2.86 4.07 4.07 0 0 1-.08-.79h-3.17l.06 12.34c-.05 1.41-1.22 2.53-2.66 2.53-1.7 0-2.66-1.42-2.66-2.63 0-1.45 1.19-2.63 2.66-2.63.27 0 .54.04.79.12v-3.2c-.26-.03-.52-.06-.79-.06C6.61 9.47 4 12.06 4 15.24c0 1.95.99 3.68 2.49 4.72.94.65 2.1 1.04 3.34 1.04 3.21 0 5.83-2.59 5.83-5.76l-.06-6.15a7.59 7.59 0 0 0 4.41 1.4V7.35c-.89.01-1.72-.25-2.41-.7\"/></svg>", "logoTumblr": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M8.93 14.38V10.8c0-.23-.07-.28-.28-.28H7.01c-.2 0-.28 0-.27-.28V8.41A.34.34 0 0 1 7 8.06 6.2 6.2 0 0 0 9.42 5.9a5 5 0 0 0 .81-2.62c0-.23.08-.28.28-.28h1.67c.21 0 .27.07.27.29v4.09c0 .25.06.32.3.32h3.78c.25 0 .3.08.3.32v2.26c0 .22-.07.26-.25.26h-3.83c-.23 0-.31 0-.31.31v5.2a4 4 0 0 0 .05.6 1.83 1.83 0 0 0 1.81 1.65 6.35 6.35 0 0 0 2.63-.63c.31-.13.31-.13.31.21v2.26c0 .13 0 .22-.15.26a12.78 12.78 0 0 1-5.17.54 4 4 0 0 1-1.73-.63 2.83 2.83 0 0 1-1.26-2.42V14.4Z\"/></svg>", "logoTwitter": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M3 17.82a10.88 10.88 0 0 0 5.81 1.68 9.9 9.9 0 0 0 7.55-3.27 10.45 10.45 0 0 0 2.86-7.84v-.14a6.26 6.26 0 0 0 1.78-2 5.31 5.31 0 0 1-2.06.62 3.35 3.35 0 0 0 .91-.87 3.36 3.36 0 0 0 .64-1.2 5.91 5.91 0 0 1-1.15.55 3.52 3.52 0 0 1-1.15.26 3.7 3.7 0 0 0-2.72-1.11 3.53 3.53 0 0 0-2.6 1.11 3.63 3.63 0 0 0-1.1 2.69 4.12 4.12 0 0 0 .09.86 10.4 10.4 0 0 1-4.33-1.1A9.6 9.6 0 0 1 4 5.22a4.17 4.17 0 0 0-.31 2.93 3.52 3.52 0 0 0 1.43 2.07 1.9 1.9 0 0 1-1.59-.43 3.86 3.86 0 0 0 .63 2.26 3.72 3.72 0 0 0 2.23 1.49 2.38 2.38 0 0 1-1.55.09 2.72 2.72 0 0 0 1.1 1.76 3.41 3.41 0 0 0 2.23.84 5.31 5.31 0 0 1-2 1.3 5.71 5.71 0 0 1-3.17.29Z\"/></svg>", "logoViber": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M19.61 16c.75.6 1.72 1.1 1.26 2.36A4.24 4.24 0 0 1 17.38 21a5.47 5.47 0 0 1-.93-.26A23.4 23.4 0 0 1 3.32 7.81c-.85-2 0-3.76 2.18-4.47a1.69 1.69 0 0 1 1.13 0c.91.33 3.23 3.45 3.28 4.38A1.62 1.62 0 0 1 9 9.15a1.62 1.62 0 0 0-.53 2.29 8.44 8.44 0 0 0 4.42 4.22 1.39 1.39 0 0 0 1.9-.45c.87-1.3 2-1.23 3.13-.42.59.4 1.19.8 1.74 1.24ZM12.73 4c-.37 0-.93 0-.91-.46 0-.71.72-.44 1-.49a8.44 8.44 0 0 1 8 8.18c0 .41.15 1-.48 1s-.44-.63-.49-1c-.57-4.43-2.64-6.52-7.13-7.2Zm.88 1.22a5.6 5.6 0 0 1 5 5.27c-.05.3.13.83-.37.91-.68.09-.55-.52-.62-.91-.46-2.69-1.42-3.69-4.19-4.29-.41-.09-1 0-.94-.65s.69-.43 1.12-.37Zm.26 2.11A3 3 0 0 1 16.51 10c0 .34 0 .7-.44.75s-.49-.21-.52-.51a2 2 0 0 0-1.85-2c-.34-.05-.67-.16-.51-.61.11-.3.39-.33.68-.34Z\"/></svg>", "logoVk": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M11.81 17.08h1.07a.91.91 0 0 0 .5-.21.77.77 0 0 0 .14-.47s0-1.42.65-1.63 1.51 1.38 2.41 2a1.74 1.74 0 0 0 1.2.36h2.4s1.26-.07.66-1a8.07 8.07 0 0 0-1.79-2c-1.51-1.38-1.3-1.15.51-3.54C20.67 9 21.11 8.11 21 7.73s-1-.27-1-.27h-2.71a.6.6 0 0 0-.35.06.74.74 0 0 0-.24.29 15.81 15.81 0 0 1-1 2.08c-1.2 2-1.69 2.12-1.88 2-.46-.29-.35-1.18-.35-1.8 0-2 .3-2.77-.58-3A4.73 4.73 0 0 0 11.66 7a5.77 5.77 0 0 0-2.25.23c-.31.15-.55.48-.4.5a1.24 1.24 0 0 1 .8.39 2.55 2.55 0 0 1 .27 1.21s.16 2.3-.38 2.59c-.36.2-.86-.2-1.94-2a15.92 15.92 0 0 1-1-2 .81.81 0 0 0-.23-.3 1.15 1.15 0 0 0-.41-.16H3.59s-.39 0-.53.18 0 .45 0 .45 2 4.65 4.29 7a6.24 6.24 0 0 0 4.47 2Z\"/></svg>", "logoWechat": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M9.37 4.69c3.13 0 5.88 1.9 6.43 4.46h-.61a5.22 5.22 0 0 0-5.42 5 4.51 4.51 0 0 0 .2 1.33h-.6a10.81 10.81 0 0 1-2.23-.32l-2.23 1.13.64-1.91A5.19 5.19 0 0 1 3 10.09c0-3.02 2.87-5.4 6.37-5.4ZM7.3 9a.76.76 0 0 0 .8-.8.75.75 0 0 0-.8-.79.89.89 0 0 0-1 .79.9.9 0 0 0 1 .8Zm4.46 0a.76.76 0 0 0 .8-.8.75.75 0 0 0-.8-.79.89.89 0 0 0-1 .79.9.9 0 0 0 1 .8ZM21 14.07a4.79 4.79 0 0 1-2.23 3.65l.48 1.59-1.75-.95a8 8 0 0 1-1.91.32c-3 0-5.42-2.07-5.42-4.61s2.39-4.61 5.42-4.61c2.86 0 5.41 2.07 5.41 4.61Zm-7.17-.8a.73.73 0 0 0 .8-.64.73.73 0 0 0-.8-.63.64.64 0 1 0 0 1.27Zm3.51 0a.72.72 0 0 0 .79-.64.73.73 0 0 0-.79-.63.64.64 0 1 0 0 1.27Z\"/></svg>", "logoWeibo": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M3 14.51A4 4 0 0 0 5.3 18a10.34 10.34 0 0 0 5.25 1.32 9.87 9.87 0 0 0 5.8-1.64c1.57-1.1 2.35-2.26 2.35-3.48a2.07 2.07 0 0 0-.64-1.57 3.8 3.8 0 0 0-1.55-.9q-.41-.13-.27-.45a1.86 1.86 0 0 0 0-1.79 1.78 1.78 0 0 0-1.55-.64 6.2 6.2 0 0 0-2.45.6c-.31.12-.46.09-.46-.09v-.1a2.09 2.09 0 0 0-.18-2.15c-.48-.49-1.3-.5-2.46-.05a10.67 10.67 0 0 0-3.45 2.38Q3 12.14 3 14.51Zm1.84.71a3 3 0 0 1 1.32-2.67 6.83 6.83 0 0 1 3.71-1.42 6.76 6.76 0 0 1 3.91.66 3 3 0 0 1 1.82 2.36 3 3 0 0 1-1.34 2.67 6.65 6.65 0 0 1-3.71 1.42 6.94 6.94 0 0 1-3.89-.67 3 3 0 0 1-1.82-2.35Zm2.35.91a2.16 2.16 0 0 0 1.45 1.26 3.07 3.07 0 0 0 2.25-.11 2.84 2.84 0 0 0 1.57-1.53 2.07 2.07 0 0 0 0-1.92 2.3 2.3 0 0 0-1.57-1.19 3.22 3.22 0 0 0-2.11.18 2.88 2.88 0 0 0-1.53 1.42 2.19 2.19 0 0 0 0 1.9Zm.81-.27a.82.82 0 0 1 .11-.69 1.17 1.17 0 0 1 .59-.48 1 1 0 0 1 .75 0 .74.74 0 0 1 .46.5.84.84 0 0 1-.14.69 1.32 1.32 0 0 1-.61.48.92.92 0 0 1-.73 0 .7.7 0 0 1-.43-.5Zm2.09-1.44a.36.36 0 0 1 .5-.18c.21.09.26.24.14.46a.36.36 0 0 1-.5.18c-.23-.09-.23-.25-.13-.46Zm4.63-8.82A.69.69 0 0 0 15 6a.64.64 0 0 0 .5.12 3.16 3.16 0 0 1 3.23 1 3.22 3.22 0 0 1 .73 3.34.67.67 0 0 0 0 .5.55.55 0 0 0 .39.34.87.87 0 0 0 .55 0 .51.51 0 0 0 .32-.39 4.75 4.75 0 0 0-1-4.69 4.65 4.65 0 0 0-2.1-1.35 5 5 0 0 0-2.43-.13.77.77 0 0 0-.43.32.56.56 0 0 0-.09.5Zm.59 2.31c.07.38.31.52.7.43a1 1 0 0 1 1.07.37 1.09 1.09 0 0 1 .25 1.09.55.55 0 0 0 .37.78c.36.12.6 0 .72-.41A2.16 2.16 0 0 0 18 7.91a2.17 2.17 0 0 0-2.21-.71.53.53 0 0 0-.43.71Z\"/></svg>", "logoWhatsapp": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M18.38 5.62A8.88 8.88 0 0 0 12.06 3a9 9 0 0 0-9 8.92 8.78 8.78 0 0 0 1.24 4.5L3 21l4.75-1.24A8.91 8.91 0 0 0 12 20.84a9 9 0 0 0 9-8.91 8.79 8.79 0 0 0-2.62-6.28ZM12 19.34a7.53 7.53 0 0 1-3.83-1.05L8 18.15l-2.82.73.76-2.73-.18-.28a7.28 7.28 0 0 1-1.14-3.94 7.45 7.45 0 0 1 14.9 0A7.45 7.45 0 0 1 12 19.34Zm4.09-5.55c-.23-.12-1.33-.65-1.53-.73s-.36-.11-.51.11-.58.73-.71.87-.26.17-.48.06a6.1 6.1 0 0 1-1.77-1.1 6.85 6.85 0 0 1-1.24-1.54A.32.32 0 0 1 10 11a4.77 4.77 0 0 0 .33-.39 1.76 1.76 0 0 0 .23-.37.44.44 0 0 0 0-.39c-.06-.11-.51-1.21-.69-1.66s-.37-.37-.51-.38h-.49a.85.85 0 0 0-.6.28 2.49 2.49 0 0 0-.79 1.86 4.35 4.35 0 0 0 .92 2.31 10 10 0 0 0 3.82 3.36 12 12 0 0 0 1.19.45 3.23 3.23 0 0 0 1 .16 3.1 3.1 0 0 0 .54-.05 2.29 2.29 0 0 0 1.49-1.06 1.78 1.78 0 0 0 .11-1.12c-.05-.09-.2-.14-.42-.26Z\"/></svg>", "logoXing": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m9.11 7 1.75 3.11c-.07.13-1 1.78-2.74 5a.8.8 0 0 1-.69.5H4.86a.37.37 0 0 1-.31-.18.42.42 0 0 1 0-.2.38.38 0 0 1 0-.19l2.7-4.88-1.72-3a.38.38 0 0 1 0-.41.36.36 0 0 1 .34-.16h2.54a.8.8 0 0 1 .7.41Zm10.33-3.43-5.62 10.16 3.58 6.69a.4.4 0 0 1 0 .41.38.38 0 0 1-.34.16h-2.54a.77.77 0 0 1-.7-.49l-3.61-6.77 5.65-10.24a.78.78 0 0 1 .68-.49h2.57a.34.34 0 0 1 .33.16.38.38 0 0 1 0 .41Z\"/></svg>", "logoYahoo": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M11.86 8.28h3.23c.8 0 2.54 0 3 .05l-.42.67a12.82 12.82 0 0 0-1.73.34c-.42.14-4 3-4.22 3.71a5.37 5.37 0 0 0-.09 1l-.05.58a12.42 12.42 0 0 0 .14 1.37c.23.05 1.92 0 2.25.05l-.05.73h-3.7c-.66 0-2.67.05-3.28.05l.06-.65c.33 0 1.74.05 2.06-.29.14-.15.1-.34.1-1.32v-.44a8.07 8.07 0 0 0 0-1 36.64 36.64 0 0 0-4.1-5.2c-.23 0-1.69-.19-2.06-.29V7c.19-.1 1.83 0 3.42 0h3.71l-.1.53c-.28.1-1.83.15-2.2.25 1 1.56 2.62 3.61 3.14 4.39.28-.44 2.81-2.24 2.9-2.88A16.67 16.67 0 0 0 12 9l-.14-.73Zm8-.25c.79.1.94.1 1.17.15l-.36 1.12c-.33.93-1.17 5-1.26 5.27l-1.13-.1c.1-.58 0-5.17 0-5.66l-.05-1a12.26 12.26 0 0 0 1.6.19ZM18 15.55l.8.1h.65l-.18 1.37h-.61l-.61-.09Z\"/></svg>", "logoYouku": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M5.11 8s.68-1.53.78-1.73.35-.61.83-.37.2.82.2.82l-2 4.45s-.33.52-.77.28-.22-.8-.22-.8l.61-1.32s-1.05-1.8-1.42-2.5A.69.69 0 0 1 3.18 6c.42-.27.71-.11.94.25S5.11 8 5.11 8Zm3.53-2.16A2 2 0 0 1 10.52 8a2 2 0 0 1-1.88 2 2 2 0 0 1-1.86-2.1 2 2 0 0 1 1.86-2.06Zm0 3.2c.49 0 .86-.45.86-1.1s-.35-1.08-.85-1.08-.87.43-.87 1.08S8.16 9 8.65 9Zm2-2.51c0-.25.09-.62.52-.62s.48.35.48.6v1.84c0 .37.15.84.71.84s.68-.52.68-.85V6.52c0-.26.09-.6.49-.6a.51.51 0 0 1 .48.58v2c0 .83-.44 1.53-1.69 1.53a1.47 1.47 0 0 1-1.67-1.54v-2Zm7 0c0-.25.09-.62.52-.62s.47.35.47.6v1.84c0 .37.15.84.71.84s.69-.52.69-.85V6.52c0-.26.08-.6.48-.6a.51.51 0 0 1 .49.58v2c0 .83-.44 1.53-1.68 1.53a1.47 1.47 0 0 1-1.67-1.54v-2Zm-3.5 2.89V6.6a.55.55 0 1 1 1.09 0v1s1.18-1.25 1.42-1.47a.53.53 0 0 1 .72 0 .48.48 0 0 1 0 .71c-.22.25-1 1.07-1 1.07l1.15 1.19a.5.5 0 0 1 0 .73.63.63 0 0 1-.83 0l-1.45-1.38v1a.55.55 0 1 1-1.09 0Zm-6.3 3.06A8.4 8.4 0 0 1 7.25 14v4.15h-.72v-2.9a4.84 4.84 0 0 1-.38.58l-.64-.48a13.26 13.26 0 0 0 1.58-3.25l.75.38Zm-.07 5.71-.64-.56a4.19 4.19 0 0 0 1.58-3.19H7.49v-.64h1.29v-1.64h.7v1.64h2.28v.64h-1.37v2.93c0 .08 0 .12.11.12h.5c.08 0 .14-.05.18-.16a8.23 8.23 0 0 0 .07-1.08l.76.23v.61a1 1 0 0 1-.79 1.1h-.94a.68.68 0 0 1-.6-.63v-3.1H9.5a5.21 5.21 0 0 1-1.73 3.75Zm3.87-5-.48.53-1.16-1 .49-.52 1.15 1Zm5.88 1.39h1.19v.6h-3.07v-.6h1.24v-.86h-.59a5.24 5.24 0 0 1-.16.69l-.61-.1a12.18 12.18 0 0 0 .26-1.8h.67a2.86 2.86 0 0 1-.05.61h.47v-.84h.66v.84h.94v.61h-.95v.86Zm-1.75 3v-2.07h2.69v2.17s-.07.51-.54.51h-1.67c-.25 0-.48-.19-.48-.61Zm.69-1.47v1.31s0 .15.2.15h1a.14.14 0 0 0 .16-.15v-1.31Zm-1.27-2.55c.2 0 .22.1.22.32v3.72s-.27.59-.49.59H13c-.37 0-.65-.16-.65-.56v-3.84a.21.21 0 0 1 .23-.23h.73V13h-1v-.61h3.09V13h-.82v.6Zm-.61.73v.89c0 .08 0 .12.08.12h.16v-1ZM13.86 13v.6H14V13ZM13 14.29v1.19a1.33 1.33 0 0 0 .25-.75v-.44Zm0 1.46v.48h1.78v-.36h-.37a.47.47 0 0 1-.45-.5v-1.08h-.13v.4a1.62 1.62 0 0 1-.46 1.31Zm1.66 1.82c.16 0 .12-.11.12-.11v-.62H13v.62a.12.12 0 0 0 .13.11Z\"/></svg>", "logoYoutube": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M20.82 8.59a3.56 3.56 0 0 0-.72-1.69 2.66 2.66 0 0 0-1.8-.73C15.78 6 12 6 12 6s-3.78 0-6.3.17a2.69 2.69 0 0 0-1.81.73 3.51 3.51 0 0 0-.71 1.69A24.46 24.46 0 0 0 3 11.35v1.29a24.75 24.75 0 0 0 .18 2.77 3.6 3.6 0 0 0 .72 1.69 3.13 3.13 0 0 0 2 .73C7.32 18 12 18 12 18s3.78 0 6.3-.18a2.63 2.63 0 0 0 1.8-.72 3.6 3.6 0 0 0 .72-1.69 24.52 24.52 0 0 0 .18-2.77v-1.29a24.46 24.46 0 0 0-.18-2.76Zm-10.68 5.62V9.42l4.86 2.4Z\"/></svg>", "logout": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M11.5 18.94A7.44 7.44 0 1 1 16.55 6l.72-.77a8.5 8.5 0 1 0 0 12.46l-.72-.69a7.42 7.42 0 0 1-5.05 1.94Z\"/><path d=\"m17 15.5 4-4-4-4V9l2 2h-9v1h9l-2 2v1.5z\"/></svg>", "map": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M11.05 13.73 12 15l1-1.27s.74-1 1.47-2.15C15.84 9.31 16 8.34 16 7.81A3.91 3.91 0 0 0 12 4a3.91 3.91 0 0 0-4 3.81c0 .53.16 1.5 1.58 3.77.73 1.16 1.42 2.11 1.47 2.15ZM12 5a2.92 2.92 0 0 1 3 2.81 7.78 7.78 0 0 1-1.43 3.24c-.68 1.09-1.35 2-1.42 2.09l-.15.19-.15-.2s-.7-.94-1.42-2.08A7.78 7.78 0 0 1 9 7.81 2.92 2.92 0 0 1 12 5Z\"/><path d=\"M18 12h-2.24l-.55 1h2.22l1.8 3H4.77l1.8-3h2.22l-.55-1H6l-3 5h18l-3-5z\"/></svg>", "menuDotsHorizontal": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><circle cx=\"5\" cy=\"12\" r=\"2\"/><circle cx=\"12\" cy=\"12\" r=\"2\"/><circle cx=\"19\" cy=\"12\" r=\"2\"/></svg>", "menuDotsVertical": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><circle cx=\"12\" cy=\"19\" r=\"2\"/><circle cx=\"12\" cy=\"12\" r=\"2\"/><circle cx=\"12\" cy=\"5\" r=\"2\"/></svg>", "menuLines": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M3 6h18v1H3zm0 10h18v1H3zm0-5h18v1H3z\"/></svg>", "minus": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M3 11h18v1H3z\"/></svg>", "mobile": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M16 3H7v18h10V3Zm0 17H8v-3h8Zm0-4H8V6h8Zm0-11H8V4h8Z\"/><path d=\"M11.56 19h.88a.5.5 0 1 0 0-1h-.88a.5.5 0 1 0 0 1Z\"/></svg>", "moon": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M16.87 19.63A8.16 8.16 0 0 1 14.55 18a8.41 8.41 0 0 1-.14-11.88 8.54 8.54 0 0 1 2.47-1.74.63.63 0 0 0 .36-.65.65.65 0 0 0-.51-.56A9.26 9.26 0 0 0 14.92 3a8.88 8.88 0 0 0-6.36 2.67A9 9 0 0 0 15 21a8.79 8.79 0 0 0 1.69-.16.64.64 0 0 0 .51-.55.65.65 0 0 0-.33-.66ZM15 20A8 8 0 0 1 9.27 6.37 7.86 7.86 0 0 1 14.92 4h.55a9.39 9.39 0 0 0-1.62 14.7 8.67 8.67 0 0 0 1.6 1.3Z\"/></svg>", "oilCan": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M21 14c-.4.75-1 1.45-1 2a1 1 0 0 0 2 0c0-.55-.6-1.25-1-2Zm-2-4-5.62 1.27L12 9H8V8h2V7H5v1h2v1H3v8h12.32L19 11.33l1.62 1.21.56-.78Zm-4.16 6H4v-6h7.5l1.39 2.45L18 11.19Z\"/></svg>", "parkingBrake": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12.27 9h-2v6h.75v-2.43h1.2c1.14 0 1.8-.4 1.8-1.75S13.52 9 12.27 9Zm0 3h-1.2V9.65h1.22c.76 0 1.05.25 1.05 1.17S13 12 12.25 12Z\"/><path d=\"M12 6a6 6 0 1 0 6 6 6 6 0 0 0-6-6Zm0 11a5 5 0 1 1 5-5 5 5 0 0 1-5 5Z\"/><path d=\"m18.3 7.07-.82.59a7 7 0 0 1 0 8.68l.82.59a8 8 0 0 0 0-9.86Zm-11.78.59-.82-.59a8 8 0 0 0 0 9.86l.82-.59a7 7 0 0 1 0-8.68Z\"/></svg>", "parkingLight": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M8.67 8H5v11h1.36v-4.37h2.28c2.13 0 3.36-.74 3.36-3.26S11 8 8.67 8Zm0 5.56H6.36V9.18h2.31c1.43 0 2 .46 2 2.19s-.57 2.19-2.03 2.19ZM14 11h6v1h-6zm-.697-3.006 5.196-3 .5.866-5.196 3zm.001 7.008.5-.866 5.196 3-.5.866z\"/></svg>", "pause": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M7 6h3v12H7zm7 0h3v12h-3z\"/></svg>", "phone": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m5.08 4.28 3.68 4.55-1 1-.58.58.45.68.36.54A15.52 15.52 0 0 0 12.36 16l.52.35.68.45.58-.58 1-1 4.56 3.69A7.59 7.59 0 0 1 16.17 20H16a8.56 8.56 0 0 1-3.11-.92 17.31 17.31 0 0 1-5.66-4.44A15.39 15.39 0 0 1 4.46 10 6.66 6.66 0 0 1 4 7.46a2.84 2.84 0 0 0 .06-.31 7.76 7.76 0 0 1 1-2.87M5 3a.6.6 0 0 0-.46.25A8.76 8.76 0 0 0 3.08 7c0 .08-.05.24-.05.25v.09a7.52 7.52 0 0 0 .51 3 16.82 16.82 0 0 0 2.93 4.92 18.34 18.34 0 0 0 6 4.7A9.58 9.58 0 0 0 16 21h.27a8.61 8.61 0 0 0 4.51-1.55A.6.6 0 0 0 21 19a.61.61 0 0 0-.22-.49l-5.27-4.26a.59.59 0 0 0-.37-.14.56.56 0 0 0-.42.18l-1.29 1.28-.52-.34A14.62 14.62 0 0 1 8.8 11.1l-.36-.54 1.29-1.28a.61.61 0 0 0 0-.8L5.51 3.22A.6.6 0 0 0 5 3Z\"/></svg>", "pin": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 5a4 4 0 1 0 4 4 4 4 0 0 0-4-4Zm0 7a3 3 0 1 1 3-3 3 3 0 0 1-3 3Z\"/><path d=\"M12 2C8.14 2 5 4.48 5 8.49c0 1.69.29 2.65 2.77 7 1.27 2.21 2.52 4 2.57 4.11L12 22l1.66-2.42c.05-.07 1.3-1.9 2.57-4.11 2.48-4.33 2.77-5.31 2.77-7C19 4.48 15.86 2 12 2Zm3.36 13c-1.21 2.12-2.4 3.86-2.53 4L12 20.23 11.16 19s-1.25-1.8-2.52-4C6.13 10.59 6 9.89 6 8.49 6 5.26 8.47 3 12 3s6 2.26 6 5.49c0 1.42-.2 2.24-2.64 6.51Z\"/></svg>", "play": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M8 18V6l10 6-10 6z\"/></svg>", "plug": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M14 11V6h-2V3h-1v3H6V3H5v3H3v5c.15 2.8 1.59 5 5.48 5s5.35-2.2 5.52-5Zm-5.5 4c-2.68 0-4.14-1.15-4.44-3.52L4 7h9l-.05 4.48C12.64 13.85 11.18 15 8.5 15Z\"/><path d=\"M17.91 13C16 13 14 13.28 14 16.6v.92A2.22 2.22 0 0 1 11.48 20 2.19 2.19 0 0 1 9 17.52V16H8v1.52A3.16 3.16 0 0 0 11.48 21 3.18 3.18 0 0 0 15 17.51v-.91c0-2.24.86-2.6 2.91-2.6H21v-1Z\"/></svg>", "plus": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M20 11h-8V3h-1v8H3v1h8v8h1v-8h8v-1z\"/></svg>", "preheating": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M5 19h14v1H5zM15 6a7.84 7.84 0 0 0 .53 2.66A7 7 0 0 1 16 11a7 7 0 0 1-.47 2.34A7.84 7.84 0 0 0 15 16v1h1v-1a7 7 0 0 1 .47-2.34A7.84 7.84 0 0 0 17 11a7.84 7.84 0 0 0-.53-2.66A7 7 0 0 1 16 6V5h1l-1.5-2L14 5h1ZM7 6a7.84 7.84 0 0 0 .53 2.66A7 7 0 0 1 8 11a7 7 0 0 1-.47 2.34A7.84 7.84 0 0 0 7 16v1h1v-1a7 7 0 0 1 .47-2.34A7.84 7.84 0 0 0 9 11a7.84 7.84 0 0 0-.53-2.66A7 7 0 0 1 8 6V5h1L7.5 3 6 5h1Zm4 0a7.84 7.84 0 0 0 .53 2.66A7 7 0 0 1 12 11a7 7 0 0 1-.47 2.34A7.84 7.84 0 0 0 11 16v1h1v-1a7 7 0 0 1 .47-2.34A7.84 7.84 0 0 0 13 11a7.84 7.84 0 0 0-.53-2.66A7 7 0 0 1 12 6V5h1l-1.5-2L10 5h1Z\"/></svg>", "printer": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M7 4h10v2a8.43 8.43 0 0 1 1 .3V3H6v3.3A8.43 8.43 0 0 1 7 6Zm5 3c-6.93 0-9 1.82-9 4.15V17h3v4h12v-4h3v-5.85C21 8.82 18.93 7 12 7Zm5 13H7v-6h10Zm3-4h-2v-3H6v3H4v-4.85C4 8.6 8.4 8 12 8s8 .6 8 3.15Z\"/><path d=\"M16 10h2v2h-2z\"/></svg>", "purchase": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M20.13 8.35A11.07 11.07 0 0 0 18.24 7 6.05 6.05 0 0 0 15 6a4.69 4.69 0 0 0-1.12.18l1.12.91a4.76 4.76 0 0 1 2.73.78 10.48 10.48 0 0 1 1.72 1.22 2.25 2.25 0 0 1 .55 1.29v6.12l-2.87 2.18-6.23-6.49a.78.78 0 0 1-.29-.49.82.82 0 0 1 .29-.48.82.82 0 0 1 .48-.3.84.84 0 0 1 .49.3l1.57 1.57.71.71.1.1 2.83-2.83L9.3 3 3 9.11 10.83 17l.71-.71-.76-.83-6.37-6.35 4.89-4.7 6.36 6.36-1.41 1.42-.1-.11-1.57-1.57a1.77 1.77 0 0 0-1.2-.59 1.71 1.71 0 0 0-1.19.59 1.52 1.52 0 0 0 0 2.39L17 20l4-3v-6.73a3.06 3.06 0 0 0-.87-1.92Z\"/></svg>", "question": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 3a9 9 0 1 0 9 9 9 9 0 0 0-9-9Zm0 17a8 8 0 1 1 8-8 8 8 0 0 1-8 8Z\"/><path d=\"M12.26 6a3.82 3.82 0 0 0-2.81 1.19 3.55 3.55 0 0 0-.72 1.19l-.26.71 1.49.5.26-.71a2 2 0 0 1 .42-.69 2.22 2.22 0 0 1 1.62-.7 2.12 2.12 0 0 1 2.15 2.07 2 2 0 0 1-.63 1.44 2.61 2.61 0 0 1-.39.26 3.25 3.25 0 0 0-1.93 3V15h1.59v-.76c0-1 .54-1.32 1.17-1.69a4.3 4.3 0 0 0 .68-.47A3.51 3.51 0 0 0 16 9.56 3.66 3.66 0 0 0 12.26 6Zm.75 10h-2v2h2v-2z\"/></svg>", "racingFlag": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M18.1 9.5A4.4 4.4 0 0 1 15.74 7a6.81 6.81 0 0 0-3.87-3.49A6.57 6.57 0 0 0 9.43 3 3 3 0 0 0 9 3L5.45 13.18 3 19.7l.83.3 2.69-7.06a8.39 8.39 0 0 1 1.85.5A4.63 4.63 0 0 1 11 16a6.09 6.09 0 0 0 3.27 3.4A12 12 0 0 0 17 20l4-10a14.54 14.54 0 0 1-2.9-.5Zm-1.74 9.42a8.6 8.6 0 0 1-1.73-.41 5.07 5.07 0 0 1-2.73-2.86 5.65 5.65 0 0 0-3.12-3.12A9.41 9.41 0 0 0 6.92 12l2.79-8a5.76 5.76 0 0 1 1.78.47 5.74 5.74 0 0 1 3.33 3 5.36 5.36 0 0 0 2.89 3 8.78 8.78 0 0 0 1.87.43Z\"/></svg>", "refresh": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m18.06 11.75-1.75 1.75H15l3.5-3.5 3.5 3.5h-1.31l-1.75-1.75h-.88zm-13 0L3.31 10H2l3.5 3.5L9 10H7.69l-1.75 1.75h-.88z\"/><path d=\"M6 12.36V12a6 6 0 0 1 10.07-4.4l1-.46A7 7 0 0 0 5 12a7.37 7.37 0 0 0 0 .82Zm12-.99V12a6 6 0 0 1-6 6 5.92 5.92 0 0 1-4.26-1.79l-1 .45A7 7 0 0 0 19 12a7.61 7.61 0 0 0-.09-1.08Z\"/></svg>", "replay": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 5h-.39L13 3.64V2L9.66 5.45 13 9V7.35L11.68 6H12a7 7 0 1 1-7 7H4a8 8 0 1 0 8-8Z\"/></svg>", "reset": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M19 13a7 7 0 1 1-7-7h.32L11 7.35V9l3.34-3.55L11 2v1.64L12.39 5H12a8 8 0 1 0 8 8Z\"/></svg>", "route": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M18 12a3.07 3.07 0 0 0-3 3.12 6.47 6.47 0 0 0 1.19 3.08c.54.95 1.08 1.73 1.1 1.76L18 21l.71-1s.56-.81 1.1-1.76A6.47 6.47 0 0 0 21 15.12 3.07 3.07 0 0 0 18 12Zm1 5.7c-.39.67-.77 1.25-.95 1.53-.18-.27-.56-.85-.95-1.53a7.21 7.21 0 0 1-1.1-2.58A2.07 2.07 0 0 1 18 13a2.07 2.07 0 0 1 2 2.12 7.21 7.21 0 0 1-1 2.58ZM5.29 12 6 13l.71-1s.56-.81 1.1-1.76A6.47 6.47 0 0 0 9 7.12 3.07 3.07 0 0 0 6 4a3.07 3.07 0 0 0-3 3.12 6.47 6.47 0 0 0 1.19 3.08c.54.95 1.08 1.73 1.1 1.8ZM6 5a2.07 2.07 0 0 1 2 2.12A7.21 7.21 0 0 1 7 9.7c-.39.67-.77 1.25-1 1.53-.18-.27-.56-.85-1-1.53a7.21 7.21 0 0 1-1-2.58A2.07 2.07 0 0 1 6 5Z\"/><path d=\"M5 16h2.92c1.08 0 1.86-.4 1.94-1.71 0-.21.24-.29.5-.29h2.28A2.52 2.52 0 0 0 15 11.46 2.45 2.45 0 0 0 12.64 9H10v1h2.64A1.44 1.44 0 0 1 14 11.46 1.54 1.54 0 0 1 12.64 13h-2.28a1.59 1.59 0 0 0-1.18.42 1.11 1.11 0 0 0-.32.8A.83.83 0 0 1 8 15H5a2 2 0 0 0 0 4h9v-1H5a1 1 0 0 1 0-2Z\"/></svg>", "rss": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M5.4 16.2A2.39 2.39 0 1 1 3 18.59a2.39 2.39 0 0 1 2.4-2.39ZM3 3a18 18 0 0 1 18 18h-3.46A14.56 14.56 0 0 0 3 6.45V3Zm0 6.12A11.89 11.89 0 0 1 14.88 21h-3.46A8.42 8.42 0 0 0 3 12.57Z\"/></svg>", "save": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M19.99 6H11.7l-1.15-2H4v15.99h6V19H5V5h4.89l1.15 2h7.95l.01 7h1l-.01-8z\"/><path d=\"M16 18.2V11h-1v7.2L12.5 16H11l4.5 4 4.5-4h-1.5L16 18.2z\"/></svg>", "screen": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M21 16V3H3v13h8.47v4H8v1h8v-1h-3.47v-4ZM4 15V4h16v11Z\"/></svg>", "search": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M8.6 14.06 3 19.64 4.35 21 10 15.41a6.49 6.49 0 0 1-1.4-1.35ZM15 3a6 6 0 1 0 6 6 6 6 0 0 0-6-6Zm0 11a5 5 0 1 1 5-5 5 5 0 0 1-5 5Z\"/></svg>", "send": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m3 12 6 3 3 6 8-17Zm13.58-5.28L9.27 14l-4-2ZM12 18.71l-2-4 7.3-7.31Z\"/></svg>", "share": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M16.5 16a2.49 2.49 0 0 0-1.35.4l-2.46-1.86A4 4 0 0 0 13 13a3.86 3.86 0 0 0-.57-2l3.16-3.16a2.53 2.53 0 1 0-1.41-1.41L11 9.57A3.86 3.86 0 0 0 9 9a4 4 0 0 0 0 8 4 4 0 0 0 2.47-.88L14 18.07a3 3 0 0 0 0 .43 2.5 2.5 0 1 0 2.5-2.5Z\"/></svg>", "shoppingBag": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M15 8V6a2.65 2.65 0 0 0-3-3 2.65 2.65 0 0 0-3 3v2H6v13h12V8Zm-5-2c0-1.44.56-2 2-2s2 .56 2 2v2h-4Zm7 14H7V9h2v3h1V9h4v3h1V9h2Z\"/></svg>", "shoppingCart": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m5.8 5-.4-2H3v1h1.32L7 17h11v-1H8l-.64-3h5.88C18.94 13 21 9.8 21 6.6V5ZM20 6.58c0 1.1-.38 5.42-6.62 5.42H7.21L6 6.09 20 6Z\"/><circle cx=\"9.5\" cy=\"19.5\" r=\"1.5\"/><circle cx=\"16.5\" cy=\"19.5\" r=\"1.5\"/></svg>", "sidelights": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M19 11h3v1h-3zm-1-3.58 2.486-1.435.5.866L18.5 8.286zm-.003 8.12.5-.867 2.486 1.435-.5.866zM2 11h3v1H2zm1.02-4.148.5-.866 2.485 1.435-.5.866zm-.006 9.259 2.485-1.435.5.866-2.485 1.435zM16.31 8a3.51 3.51 0 0 0 0 7c.14 0 .24 0 .27-.06A8.71 8.71 0 0 0 17 11.5a8.84 8.84 0 0 0-.43-3.44S16.45 8 16.31 8Zm-.46 5.91A2.39 2.39 0 0 1 14 11.5a2.39 2.39 0 0 1 1.84-2.4 16.11 16.11 0 0 1 .16 2.4 17.3 17.3 0 0 1-.15 2.41ZM7.69 8c-.14 0-.23 0-.26.06A8.84 8.84 0 0 0 7 11.5a8.71 8.71 0 0 0 .43 3.44s.13.06.27.06a3.51 3.51 0 0 0 0-7Zm.46 5.9A17.13 17.13 0 0 1 8 11.5a16.11 16.11 0 0 1 .16-2.4A2.39 2.39 0 0 1 10 11.5a2.37 2.37 0 0 1-1.85 2.4Z\"/></svg>", "snowflake": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m19.73 14.24-.24-1.01-2.69.77-4.3-2.48L16.87 9l2.61.75.24-1.02-2.31-.66.58-2.33-1-.3-.67 2.72-4.34 2.5V5.63l1.99-1.91-.76-.72-1.73 1.67L9.75 3 9 3.72l1.98 1.91v5.01l-4.32-2.5-.67-2.67-.99.29.58 2.34-2.31.66.24 1.01 2.65-.76 4.34 2.51-4.33 2.5-2.65-.77-.24 1.02 2.31.66-.58 2.33 1 .3.66-2.68 4.31-2.49v5.01l-1.95 1.88.76.72 1.73-1.67L13.25 20l.75-.72-2.02-1.94v-4.96l4.37 2.52.66 2.63.99-.3-.58-2.33 2.31-.66z\"/></svg>", "sort": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M3.5 7H5l2-2v16h1V5l2 2h1.5l-4-4-4 4zM19 17l-2 2V3h-1v16l-2-2h-1.5l4 4 4-4H19z\"/></svg>", "stack": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m21 8-9-5-9 5 9 5Zm-9-3.86L18.94 8 12 11.8 5.06 8Z\"/><path d=\"M12.01 15.8H12L5.06 12l-1.04-.57L3 12l9 5 8.99-5-1.01-.56-7.97 4.36z\"/><path d=\"M12.01 19.8H12L5.06 16l-1.04-.57L3 16l9 5 8.99-5-1.01-.56-7.97 4.36z\"/></svg>", "star": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M21 10.36a.5.5 0 0 0-.5-.36h-5.65l-2.38-6.67a.52.52 0 0 0-.94 0L9.15 10H3.5a.5.5 0 0 0-.48.36.5.5 0 0 0 .21.56L7.9 14 6 19.34a.5.5 0 0 0 .71.6L12 17l5.26 3a.5.5 0 0 0 .24.06.49.49 0 0 0 .32-.12.49.49 0 0 0 .15-.54L16.1 14l4.67-3a.5.5 0 0 0 .23-.64Zm-5.75 3a.48.48 0 0 0-.2.58l1.57 4.51L12.24 16a.51.51 0 0 0-.48 0L7.4 18.42 9 13.91a.48.48 0 0 0-.2-.58L5.19 11H9.5a.5.5 0 0 0 .47-.33L12 5l2 5.68a.5.5 0 0 0 .47.33h4.31Z\"/></svg>", "steeringWheel": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 3a9 9 0 1 0 9 9 9 9 0 0 0-9-9Zm4 9.48a4 4 0 0 0-.56-1.48h4.49a8.26 8.26 0 0 1 .07 1v.05ZM12 16a3 3 0 1 1 3-3 3 3 0 0 1-3 3Zm0-12a8 8 0 0 1 7.74 6h-5.12a3.93 3.93 0 0 0-5.24 0H4.26A8 8 0 0 1 12 4Zm-7.93 7h4.49a4 4 0 0 0-.51 1.48L4 12.05V12a8.26 8.26 0 0 1 .07-1Zm0 2.06 4 .42a4 4 0 0 0 2 3l.37 3.37a8 8 0 0 1-6.36-6.79ZM11.44 20l-.34-3.08a3.74 3.74 0 0 0 1.8 0L12.56 20h-1.12Zm2.14-.13.42-3.4a4 4 0 0 0 2-3l4-.42a8 8 0 0 1-6.42 6.79Z\"/></svg>", "stopwatch": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m18.004 3.818.768-.815L21 5.103l-.769.814zM14.63 9.61l-1.71 1.62A2.05 2.05 0 0 0 12 11a2 2 0 1 0 1.74 1l1.68-1.59ZM12 14a1 1 0 1 1 1-1 1 1 0 0 1-1 1Z\"/><path d=\"M12.58 4V3H14V2h-4v1h1.38v1a9 9 0 1 0 1.2 0ZM12 21a8 8 0 1 1 8-8 8 8 0 0 1-8 8Z\"/></svg>", "subtract": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M7 11h9v1H7z\"/><path d=\"M11.5 3a8.5 8.5 0 1 0 8.5 8.5A8.51 8.51 0 0 0 11.5 3Zm0 16a7.5 7.5 0 1 1 7.5-7.5 7.5 7.5 0 0 1-7.5 7.5Z\"/></svg>", "success": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m15.548 9-4.558 5.36L9 11.984V12H7.571L11 16l6-7h-1.452zM23 2z\"/><path d=\"M12 3a9 9 0 0 0-9 9 9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9zm0 17.003A8 8 0 0 1 3.998 12 8 8 0 0 1 12 3.997c2.122 0 4.158.843 5.659 2.344a8 8 0 0 1 0 11.317A8.002 8.002 0 0 1 12 20.002z\"/></svg>", "sun": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M11.5 8a3.5 3.5 0 1 0 3.5 3.5A3.5 3.5 0 0 0 11.5 8Zm0 6a2.5 2.5 0 1 1 2.5-2.5 2.5 2.5 0 0 1-2.5 2.5ZM11 3h1v3h-1zm0 14h1v3h-1zM5.139 5.843l.707-.707 2.121 2.121-.707.707zm9.901 9.9.707-.707 2.121 2.121-.707.707zM3 11h3v1H3zm14 0h3v1h-3zM5.14 17.157l2.12-2.12.708.706-2.122 2.122zm9.9-9.9 2.12-2.122.708.708-2.122 2.12z\"/></svg>", "switch": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M7 14v-1.5l-4 4 4 4V19l-2-2h16v-1H5l2-2zm10-4v1.5l4-4-4-4V5l2 2H3v1h16l-2 2z\"/></svg>", "tablet": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M5 3v18h14V3Zm13 17H6v-3h12Zm0-4H6V4h12Z\"/><path d=\"M11.56 19h.88a.5.5 0 1 0 0-1h-.88a.5.5 0 1 0 0 1Z\"/></svg>", "tachometer": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m14.85 9.26-2 2A1.92 1.92 0 0 0 12 11a2 2 0 1 0 1.75 1.05l1.95-2ZM12 14a1 1 0 1 1 1-1 1 1 0 0 1-1 1Z\"/><path d=\"M12 4a9 9 0 0 0-6 15.71l2.11-2.11-.71-.71L6 18.28a8 8 0 0 1-1.59-2.73L6.33 15l-.25-1-1.91.51A7.5 7.5 0 0 1 4 13a8.22 8.22 0 0 1 .16-1.58l1.92.51.25-1-1.91-.51A8 8 0 0 1 6 7.72l1.4 1.39.71-.71L6.72 7a8 8 0 0 1 2.73-1.58L10 7.33l1-.25-.51-1.92a7.88 7.88 0 0 1 3.16 0l-.51 1.92 1 .25.51-1.91A8 8 0 0 1 17.28 7l-1.39 1.4.71.71L18 7.72a8 8 0 0 1 1.59 2.73l-1.92.55c.06.16.25 1 .25 1l1.92-.51A8.22 8.22 0 0 1 20 13a7.5 7.5 0 0 1-.17 1.58l-1.91-.51-.25 1 1.91.51a8 8 0 0 1-1.58 2.7l-1.4-1.39c-.11.13-.71.71-.71.71L18 19.71A9 9 0 0 0 12 4Z\"/></svg>", "truck": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M6 10h5v1H6z\"/><path d=\"M21.81 12.45 20.43 9a2.24 2.24 0 0 0-2.1-1H17V6H3.93v2H2v1h1.93v7h2.16a1.49 1.49 0 0 0 2.82 0h8.18a1.49 1.49 0 0 0 2.82 0H21a1 1 0 0 0 1-1v-1.84a1.38 1.38 0 0 0-.19-.71ZM16 15H8.91a1.49 1.49 0 0 0-2.82 0H5V9h4V8H5V7h11v8Zm5 0h-1.09a1.49 1.49 0 0 0-2.82 0H17V9h1.33c1 0 1.16.37 1.23.49l1.38 3.47a.43.43 0 0 1 .06.22Z\"/></svg>", "upload": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M11 5v11h1V5l2 2h1.5l-4-4-4 4H9l2-2z\"/><path d=\"M15 9v1h4v8H4v-8h4V9H3v10h17V9h-5z\"/></svg>", "user": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 14c3 0 4-1.84 4-4.12V7.12C16 4.84 15 3 12 3S8 4.84 8 7.12v2.76C8 12.16 9 14 12 14ZM9 7.12C9 4.32 10.71 4 12 4s3 .32 3 3.12v2.76c0 2.8-1.71 3.12-3 3.12s-3-.32-3-3.12Z\"/><path d=\"M21 18.45A5.48 5.48 0 0 0 17.49 13a4.54 4.54 0 0 1-.42.89A4.51 4.51 0 0 1 20 18.45V20H4v-1.55a4.5 4.5 0 0 1 2.93-4.55 5.33 5.33 0 0 1-.43-.9A5.47 5.47 0 0 0 3 18.45V21h18v-2.55Z\"/></svg>", "userGroup": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M10 16a2.69 2.69 0 0 0 3-3v-2a2.69 2.69 0 0 0-3-3 2.69 2.69 0 0 0-3 3v2a2.69 2.69 0 0 0 3 3Zm-2-5c0-1.4.6-2 2-2s2 .6 2 2v2c0 1.4-.6 2-2 2s-2-.6-2-2Zm8.5-1c1.86 0 2.5-1 2.5-2.25v-1.5C19 5 18.37 4 16.5 4S14 5 14 6.25v1.5C14 9 14.63 10 16.5 10ZM15 6.25C15 5.5 15.26 5 16.5 5s1.5.5 1.5 1.25v1.5C18 8.5 17.74 9 16.5 9S15 8.5 15 7.75Z\"/><path d=\"M14 14a4.78 4.78 0 0 1-.22 1A4 4 0 0 1 16 18.87V19H4v-.13A3.89 3.89 0 0 1 6.19 15 4.54 4.54 0 0 1 6 14a4.9 4.9 0 0 0-3 4.87V20h14v-1.13A5.07 5.07 0 0 0 14 14Zm7-1.75a3.32 3.32 0 0 0-1.61-3.09 2.56 2.56 0 0 1-.5.86A2.16 2.16 0 0 1 20 12h-5v1h6v-.75Z\"/></svg>", "userManual": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><defs><clipPath id=\"a\"><path d=\"M14 7v2h-2V7Zm0 4v6h-2v-6ZM7 4a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1Zm11 0H8v16h10Zm1-1v18H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2Z\" clip-rule=\"evenodd\"/></clipPath></defs><path d=\"M0-2h24v28H0z\" clip-path=\"url(#a)\"/></svg>", "video": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M20 6v12H4V6h16m1-1H3v14h18V5Z\"/><path d=\"M9 16V8l6 4-6 4z\"/></svg>", "view": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><defs><clipPath id=\"a\"><path d=\"M12 18a11.49 11.49 0 0 1-9.74-5.5L2 12l.27-.5A11.49 11.49 0 0 1 12 6a11.5 11.5 0 0 1 9.75 5.5l.25.5-.27.5A11.69 11.69 0 0 1 12 18Zm-8.87-6A10.64 10.64 0 0 0 12 17a10.62 10.62 0 0 0 8.86-5A10.63 10.63 0 0 0 12 7a10.63 10.63 0 0 0-8.85 5Z\"/></clipPath></defs><path d=\"M12 18a11.49 11.49 0 0 1-9.74-5.5L2 12l.27-.5A11.49 11.49 0 0 1 12 6a11.5 11.5 0 0 1 9.75 5.5l.25.5-.27.5A11.69 11.69 0 0 1 12 18Zm-8.87-6A10.64 10.64 0 0 0 12 17a10.62 10.62 0 0 0 8.86-5A10.63 10.63 0 0 0 12 7a10.63 10.63 0 0 0-8.85 5Z\"/><path d=\"M27.22 23.73H-3.22V.27h30.44Zm-29.44-1h28.44V1.27H-2.22Zm28.41-.07H-2.19V1.34h28.38Zm-27.38-1h26.38V2.34H-1.19Z\" clip-path=\"url(#a)\"/><path d=\"M12 10a2 2 0 1 1-2 2 2 2 0 0 1 2-2m0-1a3 3 0 1 0 3 3 3 3 0 0 0-3-3Z\"/></svg>", "viewOff": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M19.5 20H21L5 4H3.5l16 16z\"/><path d=\"M21.74 12.5 22 12l-.27-.5A11.5 11.5 0 0 0 12 6a11 11 0 0 0-5.23 1.27l.76.73A10 10 0 0 1 12 7a10.63 10.63 0 0 1 8.87 5 10.94 10.94 0 0 1-5.08 4.26l.76.76a12.17 12.17 0 0 0 5.19-4.52Zm-19.48 0A11.49 11.49 0 0 0 12 18a11.26 11.26 0 0 0 3.46-.54l-.81-.81A10.42 10.42 0 0 1 12 17a10.64 10.64 0 0 1-8.86-5 11 11 0 0 1 3.42-3.44l-.73-.73a11.81 11.81 0 0 0-3.57 3.67L2 12Z\"/><path d=\"M10.36 10.86a2 2 0 1 1 2.78 2.78l.71.71a3 3 0 1 0-4.2-4.2ZM12 14a2 2 0 0 1-2-2l-.86-.86A3 3 0 0 0 9 12a3 3 0 0 0 3 3 3 3 0 0 0 .86-.14Z\"/></svg>", "volumeOff": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M11 7.31v9.38l-2.59-2.42-.29-.27H4v-4h4.12l.29-.27L11 7.31M12 5 7.73 9H3v6h4.73L12 19V5Zm8.25 4L15 14.25l.75.75L21 9.75 20.25 9z\"/><path d=\"m15.75 9-.75.75L20.25 15l.75-.75L15.75 9z\"/></svg>", "volumeUp": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"m18.74 7-.74.78A5.48 5.48 0 0 1 20 12a5.8 5.8 0 0 1-1.88 4.23l.72.74a6.78 6.78 0 0 0-.12-10Zm-2 2-.74.77A3.1 3.1 0 0 1 17 12a3.61 3.61 0 0 1-.89 2.25l.76.78A4.5 4.5 0 0 0 18 12a4.23 4.23 0 0 0-1.24-3ZM11 7.31v9.38l-2.59-2.42-.29-.27H4v-4h4.12l.29-.27L11 7.31M12 5 7.73 9H3v6h4.73L12 19V5Z\"/></svg>", "warning": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 3 3 21h18Zm0 2.24L19.38 20H4.62Z\"/><path d=\"m12.5 15 .5-5h-2l.49 5h1.01zM11 16h2v2h-2z\"/></svg>", "weight": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M19 8h-4.78a3 3 0 1 0-4.44 0H5L3 21h18Zm-9-2a2 2 0 1 1 2 2 2 2 0 0 1-2-2ZM5.86 9h12.28l1.69 11H4.17Z\"/></svg>", "wifi": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M12 4a12.19 12.19 0 0 0-9 4l.75.68a11.13 11.13 0 0 1 16.5 0L21 8a12.19 12.19 0 0 0-9-4Z\"/><path d=\"m5 11.1.78.67a8.39 8.39 0 0 1 12.44 0l.78-.67a9.45 9.45 0 0 0-14 0ZM7 14l.83.65A5.37 5.37 0 0 1 12 13a5.37 5.37 0 0 1 4.17 1.65L17 14a6.47 6.47 0 0 0-5-2 6.47 6.47 0 0 0-5 2Z\"/><circle cx=\"12\" cy=\"18\" r=\"2\"/></svg>", "work": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M10 16h4v1h-4z\"/><path d=\"M3 8v12h18V8Zm17 11H4v-7.14C5.26 13.07 7.74 14 12 14s6.74-.93 8-2.14Zm-8-6c-6.61 0-8-2.08-8-3.67V9h16v.33c0 1.59-1.39 3.67-8 3.67ZM8.35 6.3C9 5.4 10.29 5 12 5s3 .4 3.66 1.31A4 4 0 0 1 16 7h1c0-.12-.07-.25-.12-.37C16.25 5.06 14.83 4 12 4S7.76 5 7.13 6.62c0 .12-.09.25-.13.38h1a3.52 3.52 0 0 1 .35-.7Z\"/></svg>", "wrench": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M15.91 4a2 2 0 0 1 .84.2l.22.12-2.48 2.46A1.41 1.41 0 0 0 14 8.2a2.31 2.31 0 0 0 .72 1.06 1.83 1.83 0 0 0 1.31.74 1.58 1.58 0 0 0 1.11-.55L19.64 7c.05.09.1.17.14.26.65 1.31-.27 2.38-1.35 3.46A3.22 3.22 0 0 1 16 12a2.68 2.68 0 0 1-1.51-.38l-.67-.4-.55.55-7.92 7.92a.89.89 0 0 1-.52.31.86.86 0 0 1-.52-.31c-.12-.12-.32-.35-.31-.54a.94.94 0 0 1 .31-.5l7.92-7.91.53-.53-.36-.66c-.86-1.7-.32-2.75.91-4C13.94 5 14.89 4 15.91 4m0-1c-1.44 0-2.6 1.16-3.31 1.87C11.5 6 10.25 7.53 11.52 10L3.6 17.94a1.56 1.56 0 0 0 0 2.46 1.78 1.78 0 0 0 1.23.6 1.8 1.8 0 0 0 1.23-.6L14 12.48a3.69 3.69 0 0 0 2 .52 4.19 4.19 0 0 0 3.14-1.59c.92-.92 2.56-2.55 1.54-4.62a5 5 0 0 0-1-1.29l-3.22 3.24c-.17.17-.28.26-.4.26s-.31-.14-.61-.44c-.53-.54-.6-.73-.25-1.08l3.26-3.23a4.85 4.85 0 0 0-1.28-1A2.91 2.91 0 0 0 15.91 3Z\"/></svg>", "wrenches": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M15.75 11.53a3.94 3.94 0 0 0 1.79.48 4.06 4.06 0 0 0 2.83-1.44c.82-.81 2.29-2.27 1.41-4.09a4.66 4.66 0 0 0-.85-1.14L18 8.25a.52.52 0 0 1-.34.2c-.17 0-.34-.14-.62-.42-.48-.48-.52-.56-.17-.9l2.91-2.9a4.38 4.38 0 0 0-1.16-.86 2.73 2.73 0 0 0-1.19-.29 4.51 4.51 0 0 0-3 1.66A3.72 3.72 0 0 0 13 7.54a3.28 3.28 0 0 0 .46 1.8L12 10.84l-1.48-1.52c1.13-2.23 0-3.63-1-4.61A4.49 4.49 0 0 0 6.62 3a2.56 2.56 0 0 0-1.13.27 4.26 4.26 0 0 0-1.14.84L7.25 7c.32.31.25.48-.22 1-.27.26-.41.39-.55.39s-.2-.08-.35-.23l-2.89-2.9a4.61 4.61 0 0 0-.86 1.16c-.9 1.84.55 3.3 1.37 4.13A3.74 3.74 0 0 0 6.54 12a3.3 3.3 0 0 0 1.8-.46L9.84 13l-5.3 5.3A1.56 1.56 0 0 0 4 19.39a1.53 1.53 0 0 0 .55 1.09 1.57 1.57 0 0 0 1.08.52 1.55 1.55 0 0 0 1.1-.54L12 15.22l5.24 5.27a1.59 1.59 0 0 0 1.09.54 1.57 1.57 0 0 0 1.09-.54 1.4 1.4 0 0 0 0-2.2L14.22 13l1.52-1.51Zm-.57-.53-1.52 1.51-.57.57.56.56 5.23 5.26c.4.41.4.66 0 1.06a.89.89 0 0 1-.52.31.9.9 0 0 1-.53-.31l-5.23-5.3-.6-.57-.56.56-5.3 5.27a.93.93 0 0 1-.54.3.9.9 0 0 1-.53-.3.92.92 0 0 1-.31-.53 1 1 0 0 1 .31-.53l5.31-5.27L11 13l-.56-.56-1.54-1.5-.44-.44-.53.32a2.5 2.5 0 0 1-1.39.35A3 3 0 0 1 4.32 10C3.33 9 2.5 8 3.1 6.77c.06-.11.12-.22.19-.33l2.28 2.29a1.3 1.3 0 0 0 .91.46 1.6 1.6 0 0 0 1.11-.63c.35-.35 1.15-1.16.23-2.09L5.54 4.19l.3-.19a1.72 1.72 0 0 1 .78-.19A3.86 3.86 0 0 1 9 5.26c1.1 1.1 1.62 2.1.83 3.67l-.28.52.42.42 1.52 1.52.51.61.57-.56 1.51-1.5.44-.44-.32-.54a2.5 2.5 0 0 1-.35-1.39 3 3 0 0 1 1.19-2.23 3.88 3.88 0 0 1 2.39-1.43 1.82 1.82 0 0 1 .83.21c.11 0 .22.12.34.19l-2.3 2.28a1.3 1.3 0 0 0-.46.92 1.6 1.6 0 0 0 .63 1.11 1.72 1.72 0 0 0 1.19.66 1.28 1.28 0 0 0 .9-.43l2.29-2.29a2.38 2.38 0 0 1 .18.3C21.64 8 20.8 9 19.81 10a3.29 3.29 0 0 1-2.27 1.21 3.21 3.21 0 0 1-1.41-.38l-.52-.29Z\"/></svg>", "zoomIn": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M10 10H3v1h8V3h-1v7zm4 3h-1v8h1v-7h7v-1h-7z\"/></svg>", "zoomOut": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"100%\" height=\"100%\"><path d=\"M5 5v8h1V6h7V5H5zm13 6v7h-7v1h8v-8h-1z\"/></svg>" };
|
|
6
|
+
|
|
7
|
+
exports.ICONS_MAP = ICONS_MAP;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { HTMLAttributes } from 'react';
|
|
2
|
+
import type { AccordionChangeEvent, BreakpointCustomizable, AccordionSize, HeadlineTag, ThemeExtendedElectric } from '../types';
|
|
3
|
+
export declare type PAccordionProps = Omit<HTMLAttributes<{}>, 'color'> & {
|
|
4
|
+
/**
|
|
5
|
+
* Displays the Accordion as compact version with thinner border and smaller paddings.
|
|
6
|
+
*/
|
|
7
|
+
compact?: boolean;
|
|
8
|
+
/**
|
|
9
|
+
* Defines the heading used in accordion.
|
|
10
|
+
*/
|
|
11
|
+
heading?: string;
|
|
12
|
+
/**
|
|
13
|
+
* Emitted when accordion state is changed.
|
|
14
|
+
*/
|
|
15
|
+
onAccordionChange?: (event: CustomEvent<AccordionChangeEvent>) => void;
|
|
16
|
+
/**
|
|
17
|
+
* Defines if accordion is open.
|
|
18
|
+
*/
|
|
19
|
+
open?: boolean;
|
|
20
|
+
/**
|
|
21
|
+
* The text size.
|
|
22
|
+
*/
|
|
23
|
+
size?: BreakpointCustomizable<AccordionSize>;
|
|
24
|
+
/**
|
|
25
|
+
* Sets a headline tag, so it fits correctly within the outline of the page.
|
|
26
|
+
*/
|
|
27
|
+
tag?: HeadlineTag;
|
|
28
|
+
/**
|
|
29
|
+
* Adapts the color when used on dark background.
|
|
30
|
+
*/
|
|
31
|
+
theme?: ThemeExtendedElectric;
|
|
32
|
+
};
|
|
33
|
+
export declare const PAccordion: import("react").ForwardRefExoticComponent<Omit<HTMLAttributes<{}>, "color"> & {
|
|
34
|
+
/**
|
|
35
|
+
* Displays the Accordion as compact version with thinner border and smaller paddings.
|
|
36
|
+
*/
|
|
37
|
+
compact?: boolean;
|
|
38
|
+
/**
|
|
39
|
+
* Defines the heading used in accordion.
|
|
40
|
+
*/
|
|
41
|
+
heading?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Emitted when accordion state is changed.
|
|
44
|
+
*/
|
|
45
|
+
onAccordionChange?: (event: CustomEvent<AccordionChangeEvent>) => void;
|
|
46
|
+
/**
|
|
47
|
+
* Defines if accordion is open.
|
|
48
|
+
*/
|
|
49
|
+
open?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
* The text size.
|
|
52
|
+
*/
|
|
53
|
+
size?: BreakpointCustomizable<AccordionSize>;
|
|
54
|
+
/**
|
|
55
|
+
* Sets a headline tag, so it fits correctly within the outline of the page.
|
|
56
|
+
*/
|
|
57
|
+
tag?: HeadlineTag;
|
|
58
|
+
/**
|
|
59
|
+
* Adapts the color when used on dark background.
|
|
60
|
+
*/
|
|
61
|
+
theme?: ThemeExtendedElectric;
|
|
62
|
+
} & {
|
|
63
|
+
children?: import("react").ReactNode;
|
|
64
|
+
} & import("react").RefAttributes<HTMLElement>>;
|