infinity-forge 3.8.8 → 3.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/infinity-forge.css +0 -3
- package/dist/sites/fixed-components/header-link/versions/version-01/component.js +1 -1
- package/dist/sites/fixed-components/header-link/versions/version-01/component.js.map +1 -1
- package/dist/sites/hooks/use-social-links.js +4 -4
- package/dist/system/presentation/components/data/detail-card/component.js +1 -1
- package/dist/system/presentation/components/data/detail-card/component.js.map +1 -1
- package/dist/system/presentation/components/data/menu/components/menu-item/index.js +1 -1
- package/dist/system/presentation/components/data/menu/components/menu-item/index.js.map +1 -1
- package/dist/system/presentation/components/data/menu/modes/collapsed-menu/index.js +1 -1
- package/dist/system/presentation/components/data/menu/modes/collapsed-menu/index.js.map +1 -1
- package/dist/system/presentation/components/layout/header/components/search-modal/search-list/index.js +1 -1
- package/dist/system/presentation/hooks/ui/use-table/components/table/active-filters/index.js +3 -3
- package/dist/system/presentation/hooks/ui/use-table/components/table/filters/index.js +1 -1
- package/dist/system/presentation/hooks/ui/use-table/components/table/pagination/index.d.ts +1 -1
- package/dist/system/presentation/hooks/ui/use-table/components/table/pagination/index.js +7 -3
- package/dist/system/presentation/hooks/ui/use-table/components/table/pagination/index.js.map +1 -1
- package/dist/test/index.js +43 -4
- package/dist/test/index.js.map +1 -1
- package/dist/ui/components/breadcrumb/component.js +1 -1
- package/dist/ui/components/breadcrumb/component.js.map +1 -1
- package/dist/ui/components/form/date-picker/index.d.ts +5 -0
- package/dist/ui/components/form/date-picker/index.js +58 -0
- package/dist/ui/components/form/date-picker/index.js.map +1 -0
- package/dist/ui/components/form/date-picker/styles.d.ts +4 -0
- package/dist/ui/components/form/date-picker/styles.js +14 -0
- package/dist/ui/components/form/date-picker/styles.js.map +1 -0
- package/dist/ui/components/form/handler/form-handler/index.js +2 -3
- package/dist/ui/components/form/handler/form-handler/index.js.map +1 -1
- package/dist/ui/components/form/handler/interfaces.d.ts +2 -5
- package/dist/ui/components/form/index.d.ts +3 -0
- package/dist/ui/components/form/index.js +3 -0
- package/dist/ui/components/form/index.js.map +1 -1
- package/dist/ui/components/form/input-color/index.d.ts +2 -0
- package/dist/ui/components/form/input-color/index.js +35 -0
- package/dist/ui/components/form/input-color/index.js.map +1 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/Alpha/Alpha.d.ts +5 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/Alpha/Alpha.js +45 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/Alpha/Alpha.js.map +1 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/Alpha/Alpha.style.d.ts +6 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/Alpha/Alpha.style.js +52 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/Alpha/Alpha.style.js.map +1 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorList/ColorList.d.ts +10 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorList/ColorList.js +45 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorList/ColorList.js.map +1 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorList/ColorList.style.d.ts +8 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorList/ColorList.style.js +64 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorList/ColorList.style.js.map +1 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorPicker/ColorPicker.d.ts +13 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorPicker/ColorPicker.js +109 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorPicker/ColorPicker.js.map +1 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorPicker/ColorPicker.style.d.ts +9 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorPicker/ColorPicker.style.js +58 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorPicker/ColorPicker.style.js.map +1 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorPicker/helper.d.ts +3 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorPicker/helper.js +55 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/ColorPicker/helper.js.map +1 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/Hue/Hue.d.ts +7 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/Hue/Hue.js +45 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/Hue/Hue.js.map +1 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/Hue/Hue.style.d.ts +4 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/Hue/Hue.style.js +30 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/Hue/Hue.style.js.map +1 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/Input/Input.d.ts +16 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/Input/Input.js +53 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/Input/Input.js.map +1 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/Input/Input.style.d.ts +5 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/Input/Input.style.js +38 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/Input/Input.style.js.map +1 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/PresetList/PresetList.d.ts +8 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/PresetList/PresetList.js +57 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/PresetList/PresetList.js.map +1 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/Saturation/Saturation.d.ts +7 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/Saturation/Saturation.js +57 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/Saturation/Saturation.js.map +1 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/Saturation/Saturation.style.d.ts +5 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/Saturation/Saturation.style.js +35 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/components/Saturation/Saturation.style.js.map +1 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/hooks/usePosition.d.ts +13 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/hooks/usePosition.js +47 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/hooks/usePosition.js.map +1 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/index.d.ts +7 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/index.js +14 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/index.js.map +1 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/themes.d.ts +7 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/themes.js +24 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/themes.js.map +1 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/types.d.ts +39 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/types.js +3 -0
- package/dist/ui/components/form/input-color/react-input-color-lib/types.js.map +1 -0
- package/dist/ui/components/form/input-control/index.d.ts +1 -1
- package/dist/ui/components/form/input-control/index.js +1 -1
- package/dist/ui/components/form/input-control/index.js.map +1 -1
- package/dist/ui/components/form/input-date-picker/calendar/calendar-header/index.d.ts +1 -1
- package/dist/ui/components/form/input-date-picker/calendar/calendar-header/index.js +6 -4
- package/dist/ui/components/form/input-date-picker/calendar/calendar-header/index.js.map +1 -1
- package/dist/ui/components/form/input-file/hooks/use-file-elements.js +3 -3
- package/dist/ui/components/form/input-file/hooks/use-file-elements.js.map +1 -1
- package/dist/ui/components/form/input-file/hooks/use-rendered-file.js +2 -2
- package/dist/ui/components/form/input-file/hooks/use-rendered-file.js.map +1 -1
- package/dist/ui/components/form/input-password/index.js +1 -1
- package/dist/ui/components/form/input-password/index.js.map +1 -1
- package/dist/ui/components/form/input-seo/index.js +0 -3
- package/dist/ui/components/form/input-seo/index.js.map +1 -1
- package/dist/ui/components/form/input-seo/input-meta-image/index.js +1 -1
- package/dist/ui/components/form/input-seo/input-meta-image/index.js.map +1 -1
- package/dist/ui/components/form/input-svg/index.js +1 -1
- package/dist/ui/components/form/input-svg/index.js.map +1 -1
- package/dist/ui/components/form/range-date-picker/index.d.ts +5 -0
- package/dist/ui/components/form/range-date-picker/index.js +61 -0
- package/dist/ui/components/form/range-date-picker/index.js.map +1 -0
- package/dist/ui/components/form/range-date-picker/styles.d.ts +4 -0
- package/dist/ui/components/form/range-date-picker/styles.js +14 -0
- package/dist/ui/components/form/range-date-picker/styles.js.map +1 -0
- package/dist/ui/components/form/select-icon/index.js +1 -1
- package/dist/ui/components/form/select-icon/index.js.map +1 -1
- package/dist/ui/components/menu-mobile/components/nav-links/index.js +2 -2
- package/dist/ui/components/menu-mobile/components/nav-links/index.js.map +1 -1
- package/dist/ui/components/modal/index.js +1 -1
- package/dist/ui/components/modal/index.js.map +1 -1
- package/dist/ui/components/pagination/index.d.ts +1 -1
- package/dist/ui/components/pagination/index.js +7 -3
- package/dist/ui/components/pagination/index.js.map +1 -1
- package/dist/ui/components/warning/index.js +1 -1
- package/dist/ui/components/warning/index.js.map +1 -1
- package/dist/ui/contexts/dynamic-sections/use-dynamic-section/edit-section.js +1 -1
- package/dist/ui/contexts/dynamic-sections/use-dynamic-section/edit-section.js.map +1 -1
- package/dist/ui/contexts/toast/toast-item/index.js +1 -1
- package/dist/ui/contexts/toast/toast-item/index.js.map +1 -1
- package/dist/ui/hooks/permitions/camera/use-camera.js +1 -1
- package/dist/ui/hooks/permitions/camera/use-camera.js.map +1 -1
- package/dist/ui/icons/index.d.ts +102 -111
- package/dist/ui/icons/index.js +102 -111
- package/dist/ui/icons/index.js.map +1 -1
- package/dist/ui/icons/interfaces.d.ts +1 -2
- package/dist/ui/icons/render/component.d.ts +3 -4
- package/dist/ui/icons/render/component.js +2 -2
- package/dist/ui/icons/render/component.js.map +1 -1
- package/dist/ui/icons/render/icon-Instagram.d.ts +3 -0
- package/dist/ui/icons/render/icon-Instagram.js +15 -0
- package/dist/ui/icons/render/icon-Instagram.js.map +1 -0
- package/dist/ui/icons/render/icon-Linkedin.d.ts +3 -0
- package/dist/ui/icons/render/icon-Linkedin.js +15 -0
- package/dist/ui/icons/render/icon-Linkedin.js.map +1 -0
- package/dist/ui/icons/render/{Close.d.ts → icon-Lupa.d.ts} +1 -1
- package/dist/ui/icons/render/icon-Lupa.js +10 -0
- package/dist/ui/icons/render/icon-Lupa.js.map +1 -0
- package/dist/ui/icons/render/{Lupa.d.ts → icon-Map.d.ts} +1 -1
- package/dist/ui/icons/render/{Map.js → icon-Map.js} +3 -3
- package/dist/ui/icons/render/icon-Map.js.map +1 -0
- package/dist/ui/icons/render/{send-message.d.ts → icon-Microphone.d.ts} +1 -1
- package/dist/ui/icons/render/{Microphone.js → icon-Microphone.js} +3 -3
- package/dist/ui/icons/render/icon-Microphone.js.map +1 -0
- package/dist/ui/icons/render/{Folder.d.ts → icon-Minus.d.ts} +1 -1
- package/dist/ui/icons/render/{Minus.js → icon-Minus.js} +3 -3
- package/dist/ui/icons/render/icon-Minus.js.map +1 -0
- package/dist/ui/icons/render/icon-Phone.d.ts +3 -0
- package/dist/ui/icons/render/icon-Phone.js +15 -0
- package/dist/ui/icons/render/icon-Phone.js.map +1 -0
- package/dist/ui/icons/render/icon-Pin.d.ts +4 -0
- package/dist/ui/icons/render/{Pin.js → icon-Pin.js} +7 -7
- package/dist/ui/icons/render/icon-Pin.js.map +1 -0
- package/dist/ui/icons/render/{Codie.d.ts → icon-Play.d.ts} +1 -1
- package/dist/ui/icons/render/icon-Play.js +10 -0
- package/dist/ui/icons/render/icon-Play.js.map +1 -0
- package/dist/ui/icons/render/{Checked.d.ts → icon-Plus.d.ts} +1 -1
- package/dist/ui/icons/render/icon-Plus.js +10 -0
- package/dist/ui/icons/render/icon-Plus.js.map +1 -0
- package/dist/ui/icons/render/{TikTok.d.ts → icon-Share.d.ts} +1 -1
- package/dist/ui/icons/render/icon-Share.js +10 -0
- package/dist/ui/icons/render/icon-Share.js.map +1 -0
- package/dist/ui/icons/render/{loading.d.ts → icon-TikTok.d.ts} +1 -1
- package/dist/ui/icons/render/icon-TikTok.js +10 -0
- package/dist/ui/icons/render/icon-TikTok.js.map +1 -0
- package/dist/ui/icons/render/{calendar.d.ts → icon-YouTube.d.ts} +1 -1
- package/dist/ui/icons/render/icon-YouTube.js +10 -0
- package/dist/ui/icons/render/icon-YouTube.js.map +1 -0
- package/dist/ui/icons/render/{chalet.d.ts → icon-block.d.ts} +1 -1
- package/dist/ui/icons/render/{block.js → icon-block.js} +3 -3
- package/dist/ui/icons/render/icon-block.js.map +1 -0
- package/dist/ui/icons/render/icon-bottom-chevron.d.ts +1 -0
- package/dist/ui/icons/render/icon-bottom-chevron.js +9 -0
- package/dist/ui/icons/render/icon-bottom-chevron.js.map +1 -0
- package/dist/ui/icons/render/{basic-right-arrow.d.ts → icon-bottom-navigation.d.ts} +1 -1
- package/dist/ui/icons/render/icon-bottom-navigation.js +10 -0
- package/dist/ui/icons/render/icon-bottom-navigation.js.map +1 -0
- package/dist/ui/icons/render/{Edit.d.ts → icon-box.d.ts} +1 -1
- package/dist/ui/icons/render/{box.js → icon-box.js} +3 -3
- package/dist/ui/icons/render/icon-box.js.map +1 -0
- package/dist/ui/icons/render/{arrow-bottom.d.ts → icon-calculator.d.ts} +1 -1
- package/dist/ui/icons/render/{calculator.js → icon-calculator.js} +3 -3
- package/dist/ui/icons/render/icon-calculator.js.map +1 -0
- package/dist/ui/icons/render/{arrow-foward-left.d.ts → icon-calendar-browse.d.ts} +1 -1
- package/dist/ui/icons/render/{calendar-browse.js → icon-calendar-browse.js} +3 -3
- package/dist/ui/icons/render/icon-calendar-browse.js.map +1 -0
- package/dist/ui/icons/render/{fullfield-bell.d.ts → icon-calendar-time.d.ts} +1 -1
- package/dist/ui/icons/render/icon-calendar-time.js +10 -0
- package/dist/ui/icons/render/icon-calendar-time.js.map +1 -0
- package/dist/ui/icons/render/icon-calendar.d.ts +1 -0
- package/dist/ui/icons/render/icon-calendar.js +9 -0
- package/dist/ui/icons/render/icon-calendar.js.map +1 -0
- package/dist/ui/icons/render/{File.d.ts → icon-cam.d.ts} +1 -1
- package/dist/ui/icons/render/icon-cam.js +10 -0
- package/dist/ui/icons/render/icon-cam.js.map +1 -0
- package/dist/ui/icons/render/{NavLeft.d.ts → icon-chalet.d.ts} +1 -1
- package/dist/ui/icons/render/{chalet.js → icon-chalet.js} +3 -3
- package/dist/ui/icons/render/icon-chalet.js.map +1 -0
- package/dist/ui/icons/render/{Globe.d.ts → icon-chat.d.ts} +1 -1
- package/dist/ui/icons/render/{chat.js → icon-chat.js} +3 -3
- package/dist/ui/icons/render/icon-chat.js.map +1 -0
- package/dist/ui/icons/render/{Microphone.d.ts → icon-check.d.ts} +1 -1
- package/dist/ui/icons/render/{Check.js → icon-check.js} +3 -3
- package/dist/ui/icons/render/icon-check.js.map +1 -0
- package/dist/ui/icons/render/{Home.d.ts → icon-checked.d.ts} +1 -1
- package/dist/ui/icons/render/{Checked.js → icon-checked.js} +3 -3
- package/dist/ui/icons/render/icon-checked.js.map +1 -0
- package/dist/ui/icons/render/{keyboard-right-arrow.d.ts → icon-circular-left-arrow.d.ts} +1 -1
- package/dist/ui/icons/render/{arrow-foward-left.js → icon-circular-left-arrow.js} +5 -5
- package/dist/ui/icons/render/icon-circular-left-arrow.js.map +1 -0
- package/dist/ui/icons/render/{interrogation-circle.d.ts → icon-circular-right-arrow.d.ts} +1 -1
- package/dist/ui/icons/render/{arrow-foward-right.js → icon-circular-right-arrow.js} +5 -5
- package/dist/ui/icons/render/icon-circular-right-arrow.js.map +1 -0
- package/dist/ui/icons/render/icon-clip.d.ts +2 -0
- package/dist/ui/icons/render/{clip.js → icon-clip.js} +3 -3
- package/dist/ui/icons/render/icon-clip.js.map +1 -0
- package/dist/ui/icons/render/icon-clock.d.ts +3 -0
- package/dist/ui/icons/render/{Clock.js → icon-clock.js} +5 -5
- package/dist/ui/icons/render/icon-clock.js.map +1 -0
- package/dist/ui/icons/render/{danger.d.ts → icon-close.d.ts} +1 -1
- package/dist/ui/icons/render/icon-close.js +10 -0
- package/dist/ui/icons/render/icon-close.js.map +1 -0
- package/dist/ui/icons/render/icon-codie.d.ts +2 -0
- package/dist/ui/icons/render/icon-codie.js +10 -0
- package/dist/ui/icons/render/icon-codie.js.map +1 -0
- package/dist/ui/icons/render/{Carousel-left-icon.d.ts → icon-computer.d.ts} +1 -1
- package/dist/ui/icons/render/{computer.js → icon-computer.js} +3 -3
- package/dist/ui/icons/render/icon-computer.js.map +1 -0
- package/dist/ui/icons/render/{YouTube.d.ts → icon-danger.d.ts} +1 -1
- package/dist/ui/icons/render/{danger.js → icon-danger.js} +3 -3
- package/dist/ui/icons/render/icon-danger.js.map +1 -0
- package/dist/ui/icons/render/icon-death.d.ts +2 -0
- package/dist/ui/icons/render/icon-death.js +10 -0
- package/dist/ui/icons/render/icon-death.js.map +1 -0
- package/dist/ui/icons/render/{diabets.d.ts → icon-delete.d.ts} +1 -1
- package/dist/ui/icons/render/{delete.js → icon-delete.js} +3 -3
- package/dist/ui/icons/render/icon-delete.js.map +1 -0
- package/dist/ui/icons/render/{computer.d.ts → icon-diabets.d.ts} +1 -1
- package/dist/ui/icons/render/icon-diabets.js +10 -0
- package/dist/ui/icons/render/icon-diabets.js.map +1 -0
- package/dist/ui/icons/render/icon-door.d.ts +2 -0
- package/dist/ui/icons/render/{door.js → icon-door.js} +3 -3
- package/dist/ui/icons/render/icon-door.js.map +1 -0
- package/dist/ui/icons/render/{Check.d.ts → icon-drop-file.d.ts} +1 -1
- package/dist/ui/icons/render/{drop-file.js → icon-drop-file.js} +3 -3
- package/dist/ui/icons/render/icon-drop-file.js.map +1 -0
- package/dist/ui/icons/render/icon-edit-image.d.ts +1 -0
- package/dist/ui/icons/render/icon-edit-image.js +9 -0
- package/dist/ui/icons/render/icon-edit-image.js.map +1 -0
- package/dist/ui/icons/render/icon-edit.d.ts +2 -0
- package/dist/ui/icons/render/{Edit.js → icon-edit.js} +3 -3
- package/dist/ui/icons/render/icon-edit.js.map +1 -0
- package/dist/ui/icons/render/icon-email.d.ts +3 -0
- package/dist/ui/icons/render/icon-email.js +15 -0
- package/dist/ui/icons/render/icon-email.js.map +1 -0
- package/dist/ui/icons/render/{calculator.d.ts → icon-empty-chat.d.ts} +1 -1
- package/dist/ui/icons/render/icon-empty-chat.js +10 -0
- package/dist/ui/icons/render/icon-empty-chat.js.map +1 -0
- package/dist/ui/icons/render/icon-equalizer.d.ts +3 -0
- package/dist/ui/icons/render/icon-equalizer.js +15 -0
- package/dist/ui/icons/render/icon-equalizer.js.map +1 -0
- package/dist/ui/icons/render/icon-excel.d.ts +2 -0
- package/dist/ui/icons/render/icon-excel.js +10 -0
- package/dist/ui/icons/render/icon-excel.js.map +1 -0
- package/dist/ui/icons/render/{arrow-to-right.d.ts → icon-exclamation.d.ts} +1 -1
- package/dist/ui/icons/render/{exclamation.js → icon-exclamation.js} +3 -3
- package/dist/ui/icons/render/icon-exclamation.js.map +1 -0
- package/dist/ui/icons/render/{Exit.js → icon-exit.js} +1 -1
- package/dist/ui/icons/render/icon-exit.js.map +1 -0
- package/dist/ui/icons/render/{empty-chat.d.ts → icon-eye-slash.d.ts} +1 -1
- package/dist/ui/icons/render/icon-eye-slash.js +10 -0
- package/dist/ui/icons/render/icon-eye-slash.js.map +1 -0
- package/dist/ui/icons/render/icon-eye.d.ts +2 -0
- package/dist/ui/icons/render/{Eye.js → icon-eye.js} +3 -3
- package/dist/ui/icons/render/icon-eye.js.map +1 -0
- package/dist/ui/icons/render/icon-facebook.d.ts +3 -0
- package/dist/ui/icons/render/icon-facebook.js +15 -0
- package/dist/ui/icons/render/icon-facebook.js.map +1 -0
- package/dist/ui/icons/render/icon-file.d.ts +2 -0
- package/dist/ui/icons/render/{File.js → icon-file.js} +3 -3
- package/dist/ui/icons/render/icon-file.js.map +1 -0
- package/dist/ui/icons/render/icon-folder.d.ts +2 -0
- package/dist/ui/icons/render/{Folder.js → icon-folder.js} +3 -3
- package/dist/ui/icons/render/icon-folder.js.map +1 -0
- package/dist/ui/icons/render/{calendar-browse.d.ts → icon-fullfield-bell.d.ts} +1 -1
- package/dist/ui/icons/render/{fullfield-bell.js → icon-fullfield-bell.js} +3 -3
- package/dist/ui/icons/render/icon-fullfield-bell.js.map +1 -0
- package/dist/ui/icons/render/icon-fullfield-chat.d.ts +2 -0
- package/dist/ui/icons/render/{fullfield-chat.js → icon-fullfield-chat.js} +3 -3
- package/dist/ui/icons/render/icon-fullfield-chat.js.map +1 -0
- package/dist/ui/icons/render/{Gear.js → icon-gear.js} +1 -1
- package/dist/ui/icons/render/icon-gear.js.map +1 -0
- package/dist/ui/icons/render/icon-gender.d.ts +2 -0
- package/dist/ui/icons/render/{gender.js → icon-gender.js} +3 -3
- package/dist/ui/icons/render/icon-gender.js.map +1 -0
- package/dist/ui/icons/render/icon-globe.d.ts +2 -0
- package/dist/ui/icons/render/{Globe.js → icon-globe.js} +3 -3
- package/dist/ui/icons/render/icon-globe.js.map +1 -0
- package/dist/ui/icons/render/icon-heart.d.ts +2 -0
- package/dist/ui/icons/render/{heart.js → icon-heart.js} +3 -3
- package/dist/ui/icons/render/icon-heart.js.map +1 -0
- package/dist/ui/icons/render/icon-home.d.ts +2 -0
- package/dist/ui/icons/render/icon-home.js +10 -0
- package/dist/ui/icons/render/icon-home.js.map +1 -0
- package/dist/ui/icons/render/{arrow-foward-right.d.ts → icon-hospitalization.d.ts} +1 -1
- package/dist/ui/icons/render/{hospitalization.js → icon-hospitalization.js} +3 -3
- package/dist/ui/icons/render/icon-hospitalization.js.map +1 -0
- package/dist/ui/icons/render/{fullfield-chat.d.ts → icon-hypertension.d.ts} +1 -1
- package/dist/ui/icons/render/{hypertension.js → icon-hypertension.js} +3 -3
- package/dist/ui/icons/render/icon-hypertension.js.map +1 -0
- package/dist/ui/icons/render/icon-info.d.ts +2 -0
- package/dist/ui/icons/render/{info.js → icon-info.js} +2 -2
- package/dist/ui/icons/render/icon-info.js.map +1 -0
- package/dist/ui/icons/render/icon-interrogation-circle.d.ts +2 -0
- package/dist/ui/icons/render/{interrogation-circle.js → icon-interrogation-circle.js} +3 -3
- package/dist/ui/icons/render/icon-interrogation-circle.js.map +1 -0
- package/dist/ui/icons/render/{edit-image.d.ts → icon-language.d.ts} +1 -1
- package/dist/ui/icons/render/icon-language.js +10 -0
- package/dist/ui/icons/render/icon-language.js.map +1 -0
- package/dist/ui/icons/render/icon-left-chevron.d.ts +1 -0
- package/dist/ui/icons/render/icon-left-chevron.js +9 -0
- package/dist/ui/icons/render/icon-left-chevron.js.map +1 -0
- package/dist/ui/icons/render/{transparent-mail.d.ts → icon-left-navigation.d.ts} +1 -1
- package/dist/ui/icons/render/icon-left-navigation.js +10 -0
- package/dist/ui/icons/render/icon-left-navigation.js.map +1 -0
- package/dist/ui/icons/render/icon-like.d.ts +2 -0
- package/dist/ui/icons/render/{like.js → icon-like.js} +3 -3
- package/dist/ui/icons/render/icon-like.js.map +1 -0
- package/dist/ui/icons/render/{NavRight.d.ts → icon-loading.d.ts} +1 -1
- package/dist/ui/icons/render/{loading.js → icon-loading.js} +3 -3
- package/dist/ui/icons/render/icon-loading.js.map +1 -0
- package/dist/ui/icons/render/icon-map-floor.d.ts +2 -0
- package/dist/ui/icons/render/icon-map-floor.js +10 -0
- package/dist/ui/icons/render/icon-map-floor.js.map +1 -0
- package/dist/ui/icons/render/{message-balloon.js → icon-message-balloon.js} +1 -1
- package/dist/ui/icons/render/icon-message-balloon.js.map +1 -0
- package/dist/ui/icons/render/icon-mobile.d.ts +2 -0
- package/dist/ui/icons/render/icon-mobile.js +10 -0
- package/dist/ui/icons/render/icon-mobile.js.map +1 -0
- package/dist/ui/icons/render/{keyboard-left-arrow.d.ts → icon-money-value-symbol.d.ts} +1 -1
- package/dist/ui/icons/render/{money-value-symbol.js → icon-money-value-symbol.js} +3 -3
- package/dist/ui/icons/render/icon-money-value-symbol.js.map +1 -0
- package/dist/ui/icons/render/icon-not-found.d.ts +2 -0
- package/dist/ui/icons/render/icon-not-found.js +10 -0
- package/dist/ui/icons/render/icon-not-found.js.map +1 -0
- package/dist/ui/icons/render/{arrow-top.d.ts → icon-not-like.d.ts} +1 -1
- package/dist/ui/icons/render/{not-like.js → icon-not-like.js} +3 -3
- package/dist/ui/icons/render/icon-not-like.js.map +1 -0
- package/dist/ui/icons/render/icon-padlock.d.ts +2 -0
- package/dist/ui/icons/render/{padlock.js → icon-padlock.js} +3 -3
- package/dist/ui/icons/render/icon-padlock.js.map +1 -0
- package/dist/ui/icons/render/icon-pdf.d.ts +2 -0
- package/dist/ui/icons/render/icon-pdf.js +10 -0
- package/dist/ui/icons/render/icon-pdf.js.map +1 -0
- package/dist/ui/icons/render/icon-person.d.ts +3 -0
- package/dist/ui/icons/render/{person.js → icon-person.js} +5 -5
- package/dist/ui/icons/render/icon-person.js.map +1 -0
- package/dist/ui/icons/render/icon-pet.d.ts +2 -0
- package/dist/ui/icons/render/icon-pet.js +10 -0
- package/dist/ui/icons/render/icon-pet.js.map +1 -0
- package/dist/ui/icons/render/icon-phone-message.d.ts +2 -0
- package/dist/ui/icons/render/icon-phone-message.js +10 -0
- package/dist/ui/icons/render/icon-phone-message.js.map +1 -0
- package/dist/ui/icons/render/{calendar-time.d.ts → icon-play-rounded.d.ts} +1 -1
- package/dist/ui/icons/render/{play-rounded.js → icon-play-rounded.js} +3 -3
- package/dist/ui/icons/render/icon-play-rounded.js.map +1 -0
- package/dist/ui/icons/render/{Carousel-right-icon.d.ts → icon-plus-sharp.d.ts} +1 -1
- package/dist/ui/icons/render/{plus-sharp.js → icon-plus-sharp.js} +3 -3
- package/dist/ui/icons/render/icon-plus-sharp.js.map +1 -0
- package/dist/ui/icons/render/icon-prev.d.ts +2 -0
- package/dist/ui/icons/render/{prev.js → icon-prev.js} +3 -3
- package/dist/ui/icons/render/icon-prev.js.map +1 -0
- package/dist/ui/icons/render/{print.js → icon-print.js} +1 -1
- package/dist/ui/icons/render/icon-print.js.map +1 -0
- package/dist/ui/icons/render/icon-right-chevron.d.ts +1 -0
- package/dist/ui/icons/render/icon-right-chevron.js +9 -0
- package/dist/ui/icons/render/icon-right-chevron.js.map +1 -0
- package/dist/ui/icons/render/{basic-bottom-arrow.d.ts → icon-right-navigation.d.ts} +1 -1
- package/dist/ui/icons/render/icon-right-navigation.js +10 -0
- package/dist/ui/icons/render/icon-right-navigation.js.map +1 -0
- package/dist/ui/icons/render/{hypertension.d.ts → icon-send-message.d.ts} +1 -1
- package/dist/ui/icons/render/{send-message.js → icon-send-message.js} +3 -3
- package/dist/ui/icons/render/icon-send-message.js.map +1 -0
- package/dist/ui/icons/render/icon-send.d.ts +2 -0
- package/dist/ui/icons/render/{arrow-forward.js → icon-send.js} +6 -6
- package/dist/ui/icons/render/icon-send.js.map +1 -0
- package/dist/ui/icons/render/icon-seo.d.ts +2 -0
- package/dist/ui/icons/render/icon-seo.js +10 -0
- package/dist/ui/icons/render/icon-seo.js.map +1 -0
- package/dist/ui/icons/render/icon-share-v2.d.ts +2 -0
- package/dist/ui/icons/render/{share-v2.js → icon-share-v2.js} +3 -3
- package/dist/ui/icons/render/icon-share-v2.js.map +1 -0
- package/dist/ui/icons/render/icon-shopping.d.ts +3 -0
- package/dist/ui/icons/render/{shopping.js → icon-shopping.js} +5 -5
- package/dist/ui/icons/render/icon-shopping.js.map +1 -0
- package/dist/ui/icons/render/icon-star.d.ts +2 -0
- package/dist/ui/icons/render/{star.js → icon-star.js} +3 -3
- package/dist/ui/icons/render/icon-star.js.map +1 -0
- package/dist/ui/icons/render/icon-starBg.d.ts +2 -0
- package/dist/ui/icons/render/{starBg.js → icon-starBg.js} +3 -3
- package/dist/ui/icons/render/icon-starBg.js.map +1 -0
- package/dist/ui/icons/render/icon-three-dots.d.ts +2 -0
- package/dist/ui/icons/render/icon-three-dots.js +10 -0
- package/dist/ui/icons/render/icon-three-dots.js.map +1 -0
- package/dist/ui/icons/render/icon-top-chevron.d.ts +1 -0
- package/dist/ui/icons/render/icon-top-chevron.js +9 -0
- package/dist/ui/icons/render/icon-top-chevron.js.map +1 -0
- package/dist/ui/icons/render/icon-top-navigation.d.ts +2 -0
- package/dist/ui/icons/render/icon-top-navigation.js +10 -0
- package/dist/ui/icons/render/icon-top-navigation.js.map +1 -0
- package/dist/ui/icons/render/{basic-left-arrow.d.ts → icon-transparent-mail.d.ts} +1 -1
- package/dist/ui/icons/render/{transparent-mail.js → icon-transparent-mail.js} +3 -3
- package/dist/ui/icons/render/icon-transparent-mail.js.map +1 -0
- package/dist/ui/icons/render/icon-transparent-phone.d.ts +2 -0
- package/dist/ui/icons/render/icon-transparent-phone.js +10 -0
- package/dist/ui/icons/render/icon-transparent-phone.js.map +1 -0
- package/dist/ui/icons/render/icon-twitter.d.ts +3 -0
- package/dist/ui/icons/render/icon-twitter.js +15 -0
- package/dist/ui/icons/render/icon-twitter.js.map +1 -0
- package/dist/ui/icons/render/icon-upload.d.ts +2 -0
- package/dist/ui/icons/render/{upload.js → icon-upload.js} +3 -3
- package/dist/ui/icons/render/icon-upload.js.map +1 -0
- package/dist/ui/icons/render/icon-user.d.ts +3 -0
- package/dist/ui/icons/render/{user.js → icon-user.js} +5 -5
- package/dist/ui/icons/render/icon-user.js.map +1 -0
- package/dist/ui/icons/render/icon-weight.d.ts +2 -0
- package/dist/ui/icons/render/icon-weight.js +10 -0
- package/dist/ui/icons/render/icon-weight.js.map +1 -0
- package/dist/ui/icons/render/icon-whats.d.ts +3 -0
- package/dist/ui/icons/render/icon-whats.js +15 -0
- package/dist/ui/icons/render/icon-whats.js.map +1 -0
- package/dist/ui/icons/render/{word.js → icon-word.js} +1 -1
- package/dist/ui/icons/render/icon-word.js.map +1 -0
- package/dist/ui/icons/render/image.d.ts +1 -1
- package/dist/ui/icons/render/image.js +2 -2
- package/dist/ui/icons/render/image.js.map +1 -1
- package/dist/ui/integrations/message-provider/send-message.d.ts +5 -1
- package/dist/ui/integrations/message-provider/send-message.js +12 -6
- package/dist/ui/integrations/message-provider/send-message.js.map +1 -1
- package/package.json +81 -77
- package/dist/ui/icons/render/Carousel-left-icon.js +0 -10
- package/dist/ui/icons/render/Carousel-left-icon.js.map +0 -1
- package/dist/ui/icons/render/Carousel-right-icon.js +0 -10
- package/dist/ui/icons/render/Carousel-right-icon.js.map +0 -1
- package/dist/ui/icons/render/Check.js.map +0 -1
- package/dist/ui/icons/render/Checked.js.map +0 -1
- package/dist/ui/icons/render/Clock.d.ts +0 -3
- package/dist/ui/icons/render/Clock.js.map +0 -1
- package/dist/ui/icons/render/Close.js +0 -10
- package/dist/ui/icons/render/Close.js.map +0 -1
- package/dist/ui/icons/render/Codie.js +0 -10
- package/dist/ui/icons/render/Codie.js.map +0 -1
- package/dist/ui/icons/render/Edit.js.map +0 -1
- package/dist/ui/icons/render/Email.d.ts +0 -3
- package/dist/ui/icons/render/Email.js +0 -15
- package/dist/ui/icons/render/Email.js.map +0 -1
- package/dist/ui/icons/render/Exit.js.map +0 -1
- package/dist/ui/icons/render/Eye.d.ts +0 -2
- package/dist/ui/icons/render/Eye.js.map +0 -1
- package/dist/ui/icons/render/Facebook.d.ts +0 -3
- package/dist/ui/icons/render/Facebook.js +0 -15
- package/dist/ui/icons/render/Facebook.js.map +0 -1
- package/dist/ui/icons/render/File.js.map +0 -1
- package/dist/ui/icons/render/Folder.js.map +0 -1
- package/dist/ui/icons/render/Gear.js.map +0 -1
- package/dist/ui/icons/render/Globe.js.map +0 -1
- package/dist/ui/icons/render/Home.js +0 -10
- package/dist/ui/icons/render/Home.js.map +0 -1
- package/dist/ui/icons/render/Insagram.d.ts +0 -3
- package/dist/ui/icons/render/Insagram.js +0 -15
- package/dist/ui/icons/render/Insagram.js.map +0 -1
- package/dist/ui/icons/render/Linkedin.d.ts +0 -3
- package/dist/ui/icons/render/Linkedin.js +0 -15
- package/dist/ui/icons/render/Linkedin.js.map +0 -1
- package/dist/ui/icons/render/LongArrowRight.d.ts +0 -2
- package/dist/ui/icons/render/LongArrowRight.js +0 -11
- package/dist/ui/icons/render/LongArrowRight.js.map +0 -1
- package/dist/ui/icons/render/Lupa.js +0 -10
- package/dist/ui/icons/render/Lupa.js.map +0 -1
- package/dist/ui/icons/render/Map.d.ts +0 -2
- package/dist/ui/icons/render/Map.js.map +0 -1
- package/dist/ui/icons/render/Microphone.js.map +0 -1
- package/dist/ui/icons/render/Minus.d.ts +0 -2
- package/dist/ui/icons/render/Minus.js.map +0 -1
- package/dist/ui/icons/render/NavDown.d.ts +0 -3
- package/dist/ui/icons/render/NavDown.js +0 -15
- package/dist/ui/icons/render/NavDown.js.map +0 -1
- package/dist/ui/icons/render/NavLeft.js +0 -10
- package/dist/ui/icons/render/NavLeft.js.map +0 -1
- package/dist/ui/icons/render/NavRight.js +0 -10
- package/dist/ui/icons/render/NavRight.js.map +0 -1
- package/dist/ui/icons/render/NavUp.d.ts +0 -2
- package/dist/ui/icons/render/NavUp.js +0 -10
- package/dist/ui/icons/render/NavUp.js.map +0 -1
- package/dist/ui/icons/render/Phone.d.ts +0 -3
- package/dist/ui/icons/render/Phone.js +0 -15
- package/dist/ui/icons/render/Phone.js.map +0 -1
- package/dist/ui/icons/render/Pin.d.ts +0 -4
- package/dist/ui/icons/render/Pin.js.map +0 -1
- package/dist/ui/icons/render/Play.d.ts +0 -2
- package/dist/ui/icons/render/Play.js +0 -10
- package/dist/ui/icons/render/Play.js.map +0 -1
- package/dist/ui/icons/render/Plus.d.ts +0 -2
- package/dist/ui/icons/render/Plus.js +0 -10
- package/dist/ui/icons/render/Plus.js.map +0 -1
- package/dist/ui/icons/render/Share.d.ts +0 -2
- package/dist/ui/icons/render/Share.js +0 -10
- package/dist/ui/icons/render/Share.js.map +0 -1
- package/dist/ui/icons/render/TikTok.js +0 -10
- package/dist/ui/icons/render/TikTok.js.map +0 -1
- package/dist/ui/icons/render/Twitter.d.ts +0 -3
- package/dist/ui/icons/render/Twitter.js +0 -15
- package/dist/ui/icons/render/Twitter.js.map +0 -1
- package/dist/ui/icons/render/YouTube.js +0 -10
- package/dist/ui/icons/render/YouTube.js.map +0 -1
- package/dist/ui/icons/render/arrow-bottom.js +0 -10
- package/dist/ui/icons/render/arrow-bottom.js.map +0 -1
- package/dist/ui/icons/render/arrow-forward.d.ts +0 -2
- package/dist/ui/icons/render/arrow-forward.js.map +0 -1
- package/dist/ui/icons/render/arrow-foward-left.js.map +0 -1
- package/dist/ui/icons/render/arrow-foward-right.js.map +0 -1
- package/dist/ui/icons/render/arrow-to-right.js +0 -10
- package/dist/ui/icons/render/arrow-to-right.js.map +0 -1
- package/dist/ui/icons/render/arrow-top.js +0 -10
- package/dist/ui/icons/render/arrow-top.js.map +0 -1
- package/dist/ui/icons/render/basic-bottom-arrow.js +0 -10
- package/dist/ui/icons/render/basic-bottom-arrow.js.map +0 -1
- package/dist/ui/icons/render/basic-left-arrow.js +0 -10
- package/dist/ui/icons/render/basic-left-arrow.js.map +0 -1
- package/dist/ui/icons/render/basic-right-arrow.js +0 -10
- package/dist/ui/icons/render/basic-right-arrow.js.map +0 -1
- package/dist/ui/icons/render/block.d.ts +0 -2
- package/dist/ui/icons/render/block.js.map +0 -1
- package/dist/ui/icons/render/box.d.ts +0 -2
- package/dist/ui/icons/render/box.js.map +0 -1
- package/dist/ui/icons/render/calculator.js.map +0 -1
- package/dist/ui/icons/render/calendar-browse.js.map +0 -1
- package/dist/ui/icons/render/calendar-time.js +0 -10
- package/dist/ui/icons/render/calendar-time.js.map +0 -1
- package/dist/ui/icons/render/calendar.js +0 -10
- package/dist/ui/icons/render/calendar.js.map +0 -1
- package/dist/ui/icons/render/cam.d.ts +0 -2
- package/dist/ui/icons/render/cam.js +0 -10
- package/dist/ui/icons/render/cam.js.map +0 -1
- package/dist/ui/icons/render/chalet.js.map +0 -1
- package/dist/ui/icons/render/chat.d.ts +0 -2
- package/dist/ui/icons/render/chat.js.map +0 -1
- package/dist/ui/icons/render/clip.d.ts +0 -2
- package/dist/ui/icons/render/clip.js.map +0 -1
- package/dist/ui/icons/render/computer.js.map +0 -1
- package/dist/ui/icons/render/danger.js.map +0 -1
- package/dist/ui/icons/render/death.d.ts +0 -2
- package/dist/ui/icons/render/death.js +0 -10
- package/dist/ui/icons/render/death.js.map +0 -1
- package/dist/ui/icons/render/delete.d.ts +0 -2
- package/dist/ui/icons/render/delete.js.map +0 -1
- package/dist/ui/icons/render/diabets.js +0 -10
- package/dist/ui/icons/render/diabets.js.map +0 -1
- package/dist/ui/icons/render/door.d.ts +0 -2
- package/dist/ui/icons/render/door.js.map +0 -1
- package/dist/ui/icons/render/drop-file.d.ts +0 -2
- package/dist/ui/icons/render/drop-file.js.map +0 -1
- package/dist/ui/icons/render/edit-image.js +0 -10
- package/dist/ui/icons/render/edit-image.js.map +0 -1
- package/dist/ui/icons/render/empty-chat.js +0 -10
- package/dist/ui/icons/render/empty-chat.js.map +0 -1
- package/dist/ui/icons/render/equalizer.d.ts +0 -3
- package/dist/ui/icons/render/equalizer.js +0 -15
- package/dist/ui/icons/render/equalizer.js.map +0 -1
- package/dist/ui/icons/render/excel.d.ts +0 -1
- package/dist/ui/icons/render/excel.js +0 -9
- package/dist/ui/icons/render/excel.js.map +0 -1
- package/dist/ui/icons/render/exclamation.d.ts +0 -2
- package/dist/ui/icons/render/exclamation.js.map +0 -1
- package/dist/ui/icons/render/eye-off.d.ts +0 -2
- package/dist/ui/icons/render/eye-off.js +0 -10
- package/dist/ui/icons/render/eye-off.js.map +0 -1
- package/dist/ui/icons/render/fullfield-bell.js.map +0 -1
- package/dist/ui/icons/render/fullfield-chat.js.map +0 -1
- package/dist/ui/icons/render/gender.d.ts +0 -2
- package/dist/ui/icons/render/gender.js.map +0 -1
- package/dist/ui/icons/render/heart.d.ts +0 -2
- package/dist/ui/icons/render/heart.js.map +0 -1
- package/dist/ui/icons/render/hospitalization.d.ts +0 -2
- package/dist/ui/icons/render/hospitalization.js.map +0 -1
- package/dist/ui/icons/render/hut.d.ts +0 -2
- package/dist/ui/icons/render/hut.js +0 -10
- package/dist/ui/icons/render/hut.js.map +0 -1
- package/dist/ui/icons/render/hypertension.js.map +0 -1
- package/dist/ui/icons/render/info.d.ts +0 -2
- package/dist/ui/icons/render/info.js.map +0 -1
- package/dist/ui/icons/render/interrogation-circle.js.map +0 -1
- package/dist/ui/icons/render/keyboard-left-arrow.js +0 -10
- package/dist/ui/icons/render/keyboard-left-arrow.js.map +0 -1
- package/dist/ui/icons/render/keyboard-right-arrow.js +0 -10
- package/dist/ui/icons/render/keyboard-right-arrow.js.map +0 -1
- package/dist/ui/icons/render/language.d.ts +0 -2
- package/dist/ui/icons/render/language.js +0 -10
- package/dist/ui/icons/render/language.js.map +0 -1
- package/dist/ui/icons/render/like.d.ts +0 -2
- package/dist/ui/icons/render/like.js.map +0 -1
- package/dist/ui/icons/render/loading.js.map +0 -1
- package/dist/ui/icons/render/map-floor.d.ts +0 -2
- package/dist/ui/icons/render/map-floor.js +0 -10
- package/dist/ui/icons/render/map-floor.js.map +0 -1
- package/dist/ui/icons/render/message-balloon.js.map +0 -1
- package/dist/ui/icons/render/mobile.d.ts +0 -2
- package/dist/ui/icons/render/mobile.js +0 -10
- package/dist/ui/icons/render/mobile.js.map +0 -1
- package/dist/ui/icons/render/money-value-symbol.d.ts +0 -2
- package/dist/ui/icons/render/money-value-symbol.js.map +0 -1
- package/dist/ui/icons/render/next.d.ts +0 -2
- package/dist/ui/icons/render/next.js +0 -10
- package/dist/ui/icons/render/next.js.map +0 -1
- package/dist/ui/icons/render/not-found.d.ts +0 -2
- package/dist/ui/icons/render/not-found.js +0 -10
- package/dist/ui/icons/render/not-found.js.map +0 -1
- package/dist/ui/icons/render/not-like.d.ts +0 -2
- package/dist/ui/icons/render/not-like.js.map +0 -1
- package/dist/ui/icons/render/padlock.d.ts +0 -2
- package/dist/ui/icons/render/padlock.js.map +0 -1
- package/dist/ui/icons/render/pdf.d.ts +0 -2
- package/dist/ui/icons/render/pdf.js +0 -10
- package/dist/ui/icons/render/pdf.js.map +0 -1
- package/dist/ui/icons/render/person.d.ts +0 -3
- package/dist/ui/icons/render/person.js.map +0 -1
- package/dist/ui/icons/render/pet.d.ts +0 -2
- package/dist/ui/icons/render/pet.js +0 -10
- package/dist/ui/icons/render/pet.js.map +0 -1
- package/dist/ui/icons/render/phone-message.d.ts +0 -2
- package/dist/ui/icons/render/phone-message.js +0 -10
- package/dist/ui/icons/render/phone-message.js.map +0 -1
- package/dist/ui/icons/render/play-rounded.d.ts +0 -2
- package/dist/ui/icons/render/play-rounded.js.map +0 -1
- package/dist/ui/icons/render/plus-sharp.d.ts +0 -2
- package/dist/ui/icons/render/plus-sharp.js.map +0 -1
- package/dist/ui/icons/render/prev.d.ts +0 -2
- package/dist/ui/icons/render/prev.js.map +0 -1
- package/dist/ui/icons/render/print.js.map +0 -1
- package/dist/ui/icons/render/send-icon.d.ts +0 -2
- package/dist/ui/icons/render/send-icon.js +0 -10
- package/dist/ui/icons/render/send-icon.js.map +0 -1
- package/dist/ui/icons/render/send-message.js.map +0 -1
- package/dist/ui/icons/render/seo.d.ts +0 -2
- package/dist/ui/icons/render/seo.js +0 -10
- package/dist/ui/icons/render/seo.js.map +0 -1
- package/dist/ui/icons/render/share-v2.d.ts +0 -2
- package/dist/ui/icons/render/share-v2.js.map +0 -1
- package/dist/ui/icons/render/shopping.d.ts +0 -3
- package/dist/ui/icons/render/shopping.js.map +0 -1
- package/dist/ui/icons/render/star.d.ts +0 -2
- package/dist/ui/icons/render/star.js.map +0 -1
- package/dist/ui/icons/render/starBg.d.ts +0 -2
- package/dist/ui/icons/render/starBg.js.map +0 -1
- package/dist/ui/icons/render/three-dots.d.ts +0 -2
- package/dist/ui/icons/render/three-dots.js +0 -10
- package/dist/ui/icons/render/three-dots.js.map +0 -1
- package/dist/ui/icons/render/transparent-mail.js.map +0 -1
- package/dist/ui/icons/render/transparent-phone.d.ts +0 -2
- package/dist/ui/icons/render/transparent-phone.js +0 -10
- package/dist/ui/icons/render/transparent-phone.js.map +0 -1
- package/dist/ui/icons/render/upload.d.ts +0 -2
- package/dist/ui/icons/render/upload.js.map +0 -1
- package/dist/ui/icons/render/user.d.ts +0 -3
- package/dist/ui/icons/render/user.js.map +0 -1
- package/dist/ui/icons/render/weight.d.ts +0 -2
- package/dist/ui/icons/render/weight.js +0 -10
- package/dist/ui/icons/render/weight.js.map +0 -1
- package/dist/ui/icons/render/whats.d.ts +0 -3
- package/dist/ui/icons/render/whats.js +0 -15
- package/dist/ui/icons/render/whats.js.map +0 -1
- package/dist/ui/icons/render/word.js.map +0 -1
- /package/dist/ui/icons/render/{Exit.d.ts → icon-exit.d.ts} +0 -0
- /package/dist/ui/icons/render/{Gear.d.ts → icon-gear.d.ts} +0 -0
- /package/dist/ui/icons/render/{message-balloon.d.ts → icon-message-balloon.d.ts} +0 -0
- /package/dist/ui/icons/render/{print.d.ts → icon-print.d.ts} +0 -0
- /package/dist/ui/icons/render/{word.d.ts → icon-word.d.ts} +0 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IconEqualizerFill = exports.IconEqualizerLine = void 0;
|
|
4
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
function IconEqualizerLine(_a) {
|
|
6
|
+
var color = _a.color;
|
|
7
|
+
return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', viewBox: '0 0 24 24', fill: color, children: (0, jsx_runtime_1.jsx)("path", { d: 'M6.17071 18C6.58254 16.8348 7.69378 16 9 16C10.3062 16 11.4175 16.8348 11.8293 18H22V20H11.8293C11.4175 21.1652 10.3062 22 9 22C7.69378 22 6.58254 21.1652 6.17071 20H2V18H6.17071ZM12.1707 11C12.5825 9.83481 13.6938 9 15 9C16.3062 9 17.4175 9.83481 17.8293 11H22V13H17.8293C17.4175 14.1652 16.3062 15 15 15C13.6938 15 12.5825 14.1652 12.1707 13H2V11H12.1707ZM6.17071 4C6.58254 2.83481 7.69378 2 9 2C10.3062 2 11.4175 2.83481 11.8293 4H22V6H11.8293C11.4175 7.16519 10.3062 8 9 8C7.69378 8 6.58254 7.16519 6.17071 6H2V4H6.17071ZM9 6C9.55228 6 10 5.55228 10 5C10 4.44772 9.55228 4 9 4C8.44772 4 8 4.44772 8 5C8 5.55228 8.44772 6 9 6ZM15 13C15.5523 13 16 12.5523 16 12C16 11.4477 15.5523 11 15 11C14.4477 11 14 11.4477 14 12C14 12.5523 14.4477 13 15 13ZM9 20C9.55228 20 10 19.5523 10 19C10 18.4477 9.55228 18 9 18C8.44772 18 8 18.4477 8 19C8 19.5523 8.44772 20 9 20Z' }) }));
|
|
8
|
+
}
|
|
9
|
+
exports.IconEqualizerLine = IconEqualizerLine;
|
|
10
|
+
function IconEqualizerFill(_a) {
|
|
11
|
+
var color = _a.color;
|
|
12
|
+
return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', viewBox: '0 0 24 24', fill: color, children: (0, jsx_runtime_1.jsx)("path", { d: 'M6.17071 18C6.58254 16.8348 7.69378 16 9 16C10.3062 16 11.4175 16.8348 11.8293 18H22V20H11.8293C11.4175 21.1652 10.3062 22 9 22C7.69378 22 6.58254 21.1652 6.17071 20H2V18H6.17071ZM12.1707 11C12.5825 9.83481 13.6938 9 15 9C16.3062 9 17.4175 9.83481 17.8293 11H22V13H17.8293C17.4175 14.1652 16.3062 15 15 15C13.6938 15 12.5825 14.1652 12.1707 13H2V11H12.1707ZM6.17071 4C6.58254 2.83481 7.69378 2 9 2C10.3062 2 11.4175 2.83481 11.8293 4H22V6H11.8293C11.4175 7.16519 10.3062 8 9 8C7.69378 8 6.58254 7.16519 6.17071 6H2V4H6.17071Z' }) }));
|
|
13
|
+
}
|
|
14
|
+
exports.IconEqualizerFill = IconEqualizerFill;
|
|
15
|
+
//# sourceMappingURL=icon-equalizer.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-equalizer.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-equalizer.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,iBAAiB,CAAC,EAAgB;QAAd,KAAK,WAAA;IACvC,OAAO,CACL,gCAAK,KAAK,EAAC,4BAA4B,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAE,KAAK,YACrE,iCAAM,CAAC,EAAC,+1BAA+1B,GAAG,GACt2B,CACP,CAAA;AACH,CAAC;AAND,8CAMC;AAED,SAAgB,iBAAiB,CAAC,EAAgB;QAAd,KAAK,WAAA;IACvC,OAAO,CACL,gCAAK,KAAK,EAAC,4BAA4B,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAE,KAAK,YACrE,iCAAM,CAAC,EAAC,+gBAA+gB,GAAG,GACthB,CACP,CAAA;AACH,CAAC;AAND,8CAMC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IconExcel = void 0;
|
|
4
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
function IconExcel(_a) {
|
|
6
|
+
var _b = _a.color, color = _b === void 0 ? '#20744a' : _b;
|
|
7
|
+
return ((0, jsx_runtime_1.jsxs)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '800px', height: '800px', viewBox: '0 0 32 32', children: [(0, jsx_runtime_1.jsx)("path", { d: 'M28.781,4.405H18.651V2.018L2,4.588V27.115l16.651,2.868V26.445H28.781A1.162,1.162,0,0,0,30,25.349V5.5A1.162,1.162,0,0,0,28.781,4.405Zm.16,21.126H18.617L18.6,23.642h2.487v-2.2H18.581l-.012-1.3h2.518v-2.2H18.55l-.012-1.3h2.549v-2.2H18.53v-1.3h2.557v-2.2H18.53v-1.3h2.557v-2.2H18.53v-2H28.941Z', style: { fill: color, fillRule: 'evenodd' } }), (0, jsx_runtime_1.jsx)("rect", { x: '22.487', y: '7.439', width: '4.323', height: '2.2', style: { fill: color } }), (0, jsx_runtime_1.jsx)("rect", { x: '22.487', y: '10.94', width: '4.323', height: '2.2', style: { fill: color } }), (0, jsx_runtime_1.jsx)("rect", { x: '22.487', y: '14.441', width: '4.323', height: '2.2', style: { fill: color } }), (0, jsx_runtime_1.jsx)("rect", { x: '22.487', y: '17.942', width: '4.323', height: '2.2', style: { fill: color } }), (0, jsx_runtime_1.jsx)("rect", { x: '22.487', y: '21.443', width: '4.323', height: '2.2', style: { fill: color } }), (0, jsx_runtime_1.jsx)("polygon", { points: '6.347 10.673 8.493 10.55 9.842 14.259 11.436 10.397 13.582 10.274 10.976 15.54 13.582 20.819 11.313 20.666 9.781 16.642 8.248 20.513 6.163 20.329 8.585 15.666 6.347 10.673', style: { fill: '#fff', fillRule: 'evenodd' } })] }));
|
|
8
|
+
}
|
|
9
|
+
exports.IconExcel = IconExcel;
|
|
10
|
+
//# sourceMappingURL=icon-excel.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-excel.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-excel.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,SAAS,CAAC,EAA4B;QAA1B,aAAiB,EAAjB,KAAK,mBAAG,SAAS,KAAA;IAC3C,OAAO,CACL,iCAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,OAAO,EAAC,MAAM,EAAC,OAAO,EAAC,OAAO,EAAC,WAAW,aACtF,iCACE,CAAC,EAAC,mSAAmS,EACrS,KAAK,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,GAC3C,EACF,iCAAM,CAAC,EAAC,QAAQ,EAAC,CAAC,EAAC,OAAO,EAAC,KAAK,EAAC,OAAO,EAAC,MAAM,EAAC,KAAK,EAAC,KAAK,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,GAAI,EAChF,iCAAM,CAAC,EAAC,QAAQ,EAAC,CAAC,EAAC,OAAO,EAAC,KAAK,EAAC,OAAO,EAAC,MAAM,EAAC,KAAK,EAAC,KAAK,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,GAAI,EAChF,iCAAM,CAAC,EAAC,QAAQ,EAAC,CAAC,EAAC,QAAQ,EAAC,KAAK,EAAC,OAAO,EAAC,MAAM,EAAC,KAAK,EAAC,KAAK,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,GAAI,EACjF,iCAAM,CAAC,EAAC,QAAQ,EAAC,CAAC,EAAC,QAAQ,EAAC,KAAK,EAAC,OAAO,EAAC,MAAM,EAAC,KAAK,EAAC,KAAK,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,GAAI,EACjF,iCAAM,CAAC,EAAC,QAAQ,EAAC,CAAC,EAAC,QAAQ,EAAC,KAAK,EAAC,OAAO,EAAC,MAAM,EAAC,KAAK,EAAC,KAAK,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,GAAI,EACjF,oCACE,MAAM,EAAC,6KAA6K,EACpL,KAAK,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,SAAS,EAAE,GAC5C,IACE,CACP,CAAA;AACH,CAAC;AAlBD,8BAkBC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { IIcon } from '../interfaces.js';
|
|
2
|
-
export declare function
|
|
2
|
+
export declare function IconExclamation({ color }: IIcon): import("react/jsx-runtime").JSX.Element;
|
|
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.IconExclamation = void 0;
|
|
4
4
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
function IconExclamation(_a) {
|
|
6
|
-
var
|
|
7
|
-
return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '18', height: '18', viewBox: '0 0 18 18', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M9.00002 17.3334C4.39765 17.3334 0.666687 13.6024 0.666687 9.00002C0.666687 4.39765 4.39765 0.666687 9.00002 0.666687C13.6024 0.666687 17.3334 4.39765 17.3334 9.00002C17.3334 13.6024 13.6024 17.3334 9.00002 17.3334ZM9.00002 15.6667C12.6819 15.6667 15.6667 12.6819 15.6667 9.00002C15.6667 5.31812 12.6819 2.33335 9.00002 2.33335C5.31812 2.33335 2.33335 5.31812 2.33335 9.00002C2.33335 12.6819 5.31812 15.6667 9.00002 15.6667ZM8.16669 4.83335H9.83335V6.50002H8.16669V4.83335ZM8.16669 8.16669H9.83335V13.1667H8.16669V8.16669Z', fill:
|
|
6
|
+
var color = _a.color;
|
|
7
|
+
return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '18', height: '18', viewBox: '0 0 18 18', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M9.00002 17.3334C4.39765 17.3334 0.666687 13.6024 0.666687 9.00002C0.666687 4.39765 4.39765 0.666687 9.00002 0.666687C13.6024 0.666687 17.3334 4.39765 17.3334 9.00002C17.3334 13.6024 13.6024 17.3334 9.00002 17.3334ZM9.00002 15.6667C12.6819 15.6667 15.6667 12.6819 15.6667 9.00002C15.6667 5.31812 12.6819 2.33335 9.00002 2.33335C5.31812 2.33335 2.33335 5.31812 2.33335 9.00002C2.33335 12.6819 5.31812 15.6667 9.00002 15.6667ZM8.16669 4.83335H9.83335V6.50002H8.16669V4.83335ZM8.16669 8.16669H9.83335V13.1667H8.16669V8.16669Z', fill: color }) }));
|
|
8
8
|
}
|
|
9
9
|
exports.IconExclamation = IconExclamation;
|
|
10
|
-
//# sourceMappingURL=exclamation.js.map
|
|
10
|
+
//# sourceMappingURL=icon-exclamation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-exclamation.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-exclamation.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,eAAe,CAAC,EAAgB;QAAd,KAAK,WAAA;IACrC,OAAO,CACL,gCAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,YAC5F,iCACE,CAAC,EAAC,4gBAA4gB,EAC9gB,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAA;AACH,CAAC;AATD,0CASC"}
|
|
@@ -6,4 +6,4 @@ function IconExit() {
|
|
|
6
6
|
return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', viewBox: '0 0 512 512', children: (0, jsx_runtime_1.jsx)("path", { d: 'M502.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 224 192 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l210.7 0-73.4 73.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l128-128zM160 96c17.7 0 32-14.3 32-32s-14.3-32-32-32L96 32C43 32 0 75 0 128L0 384c0 53 43 96 96 96l64 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-64 0c-17.7 0-32-14.3-32-32l0-256c0-17.7 14.3-32 32-32l64 0z' }) }));
|
|
7
7
|
}
|
|
8
8
|
exports.IconExit = IconExit;
|
|
9
|
-
//# sourceMappingURL=
|
|
9
|
+
//# sourceMappingURL=icon-exit.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-exit.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-exit.tsx"],"names":[],"mappings":";;;;AAAA,SAAgB,QAAQ;IACtB,OAAO,CACL,gCAAK,KAAK,EAAC,4BAA4B,EAAC,OAAO,EAAC,aAAa,YAC3D,iCAAM,CAAC,EAAC,6ZAA6Z,GAAG,GACpa,CACP,CAAA;AACH,CAAC;AAND,4BAMC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { IIcon } from '../interfaces.js';
|
|
2
|
-
export declare function
|
|
2
|
+
export declare function IconEyeSlash({ color }: IIcon): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IconEyeSlash = void 0;
|
|
4
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
function IconEyeSlash(_a) {
|
|
6
|
+
var color = _a.color;
|
|
7
|
+
return ((0, jsx_runtime_1.jsxs)("svg", { xmlns: 'http://www.w3.org/2000/svg', viewBox: '0 0 24 24', fill: 'none', children: [(0, jsx_runtime_1.jsx)("path", { d: 'M4.4955 7.44088C3.54724 8.11787 2.77843 8.84176 2.1893 9.47978C0.857392 10.9222 0.857393 13.0778 2.1893 14.5202C3.9167 16.391 7.18879 19 12 19C13.2958 19 14.4799 18.8108 15.5523 18.4977L13.8895 16.8349C13.2936 16.9409 12.6638 17 12 17C7.9669 17 5.18832 14.82 3.65868 13.1634C3.03426 12.4872 3.03426 11.5128 3.65868 10.8366C4.23754 10.2097 4.99526 9.50784 5.93214 8.87753L4.4955 7.44088Z', fill: color }), (0, jsx_runtime_1.jsx)("path", { d: 'M8.53299 11.4784C8.50756 11.6486 8.49439 11.8227 8.49439 12C8.49439 13.933 10.0614 15.5 11.9944 15.5C12.1716 15.5 12.3458 15.4868 12.516 15.4614L8.53299 11.4784Z', fill: color }), (0, jsx_runtime_1.jsx)("path", { d: 'M15.4661 12.4471L11.5473 8.52829C11.6937 8.50962 11.8429 8.5 11.9944 8.5C13.9274 8.5 15.4944 10.067 15.4944 12C15.4944 12.1515 15.4848 12.3007 15.4661 12.4471Z', fill: color }), (0, jsx_runtime_1.jsx)("path", { d: 'M18.1118 15.0928C19.0284 14.4702 19.7715 13.7805 20.3413 13.1634C20.9657 12.4872 20.9657 11.5128 20.3413 10.8366C18.8117 9.18002 16.0331 7 12 7C11.3594 7 10.7505 7.05499 10.1732 7.15415L8.50483 5.48582C9.5621 5.1826 10.7272 5 12 5C16.8112 5 20.0833 7.60905 21.8107 9.47978C23.1426 10.9222 23.1426 13.0778 21.8107 14.5202C21.2305 15.1486 20.476 15.8603 19.5474 16.5284L18.1118 15.0928Z', fill: color }), (0, jsx_runtime_1.jsx)("path", { d: 'M2.00789 3.42207C1.61736 3.03155 1.61736 2.39838 2.00789 2.00786C2.39841 1.61733 3.03158 1.61733 3.4221 2.00786L22.0004 20.5862C22.391 20.9767 22.391 21.6099 22.0004 22.0004C21.6099 22.3909 20.9767 22.3909 20.5862 22.0004L2.00789 3.42207Z', fill: color })] }));
|
|
8
|
+
}
|
|
9
|
+
exports.IconEyeSlash = IconEyeSlash;
|
|
10
|
+
//# sourceMappingURL=icon-eye-slash.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-eye-slash.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-eye-slash.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,YAAY,CAAC,EAAgB;QAAd,KAAK,WAAA;IAClC,OAAO,CACL,iCAAK,KAAK,EAAC,4BAA4B,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,aACrE,iCACE,CAAC,EAAC,oYAAoY,EACtY,IAAI,EAAE,KAAK,GACX,EACF,iCACE,CAAC,EAAC,mKAAmK,EACrK,IAAI,EAAE,KAAK,GACX,EACF,iCACE,CAAC,EAAC,iKAAiK,EACnK,IAAI,EAAE,KAAK,GACX,EACF,iCACE,CAAC,EAAC,kYAAkY,EACpY,IAAI,EAAE,KAAK,GACX,EACF,iCACE,CAAC,EAAC,gPAAgP,EAClP,IAAI,EAAE,KAAK,GACX,IACE,CACP,CAAA;AACH,CAAC;AAzBD,oCAyBC"}
|
|
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.IconEye = void 0;
|
|
4
4
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
function IconEye(_a) {
|
|
6
|
-
var
|
|
7
|
-
return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '20', height: '16', viewBox: '0 0 20 16', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M10.0003 0.5C14.4937 0.5 18.232 3.73313 19.0158 8C18.232 12.2668 14.4937 15.5 10.0003 15.5C5.50678 15.5 1.76847 12.2668 0.984711 8C1.76847 3.73313 5.50678 0.5 10.0003 0.5ZM10.0003 13.8333C13.5299 13.8333 16.5503 11.3767 17.3148 8C16.5503 4.62336 13.5299 2.16667 10.0003 2.16667C6.47051 2.16667 3.45019 4.62336 2.68566 8C3.45019 11.3767 6.47051 13.8333 10.0003 13.8333ZM10.0003 11.75C7.92916 11.75 6.25023 10.0711 6.25023 8C6.25023 5.92893 7.92916 4.25 10.0003 4.25C12.0713 4.25 13.7503 5.92893 13.7503 8C13.7503 10.0711 12.0713 11.75 10.0003 11.75ZM10.0003 10.0833C11.1508 10.0833 12.0836 9.15058 12.0836 8C12.0836 6.84942 11.1508 5.91667 10.0003 5.91667C8.84968 5.91667 7.91689 6.84942 7.91689 8C7.91689 9.15058 8.84968 10.0833 10.0003 10.0833Z', fill:
|
|
6
|
+
var color = _a.color;
|
|
7
|
+
return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '20', height: '16', viewBox: '0 0 20 16', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M10.0003 0.5C14.4937 0.5 18.232 3.73313 19.0158 8C18.232 12.2668 14.4937 15.5 10.0003 15.5C5.50678 15.5 1.76847 12.2668 0.984711 8C1.76847 3.73313 5.50678 0.5 10.0003 0.5ZM10.0003 13.8333C13.5299 13.8333 16.5503 11.3767 17.3148 8C16.5503 4.62336 13.5299 2.16667 10.0003 2.16667C6.47051 2.16667 3.45019 4.62336 2.68566 8C3.45019 11.3767 6.47051 13.8333 10.0003 13.8333ZM10.0003 11.75C7.92916 11.75 6.25023 10.0711 6.25023 8C6.25023 5.92893 7.92916 4.25 10.0003 4.25C12.0713 4.25 13.7503 5.92893 13.7503 8C13.7503 10.0711 12.0713 11.75 10.0003 11.75ZM10.0003 10.0833C11.1508 10.0833 12.0836 9.15058 12.0836 8C12.0836 6.84942 11.1508 5.91667 10.0003 5.91667C8.84968 5.91667 7.91689 6.84942 7.91689 8C7.91689 9.15058 8.84968 10.0833 10.0003 10.0833Z', fill: color }) }));
|
|
8
8
|
}
|
|
9
9
|
exports.IconEye = IconEye;
|
|
10
|
-
//# sourceMappingURL=
|
|
10
|
+
//# sourceMappingURL=icon-eye.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-eye.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-eye.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,OAAO,CAAC,EAAgB;QAAd,KAAK,WAAA;IAC7B,OAAO,CACL,gCAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,YAC5F,iCACE,CAAC,EAAC,2uBAA2uB,EAC7uB,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAA;AACH,CAAC;AATD,0BASC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IconFacebookNoBg = exports.IconFacebook = void 0;
|
|
4
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
function IconFacebook(_a) {
|
|
6
|
+
var color = _a.color;
|
|
7
|
+
return ((0, jsx_runtime_1.jsx)("svg", { viewBox: '0 0 20 19.879', children: (0, jsx_runtime_1.jsx)("path", { fill: color, id: 'facebook', d: 'M20.563,10.563A10,10,0,1,0,9,20.442V13.453H6.46V10.563H9v-2.2a3.528,3.528,0,0,1,3.777-3.89,15.39,15.39,0,0,1,2.239.2v2.46H13.754a1.445,1.445,0,0,0-1.629,1.562v1.877H14.9l-.444,2.891h-2.33v6.988A10,10,0,0,0,20.563,10.563Z', transform: 'translate(-0.563 -0.563)' }) }));
|
|
8
|
+
}
|
|
9
|
+
exports.IconFacebook = IconFacebook;
|
|
10
|
+
function IconFacebookNoBg(_a) {
|
|
11
|
+
var color = _a.color;
|
|
12
|
+
return ((0, jsx_runtime_1.jsx)("svg", { viewBox: '0 0 320 512', children: (0, jsx_runtime_1.jsx)("path", { fill: color, d: 'M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z' }) }));
|
|
13
|
+
}
|
|
14
|
+
exports.IconFacebookNoBg = IconFacebookNoBg;
|
|
15
|
+
//# sourceMappingURL=icon-facebook.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-facebook.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-facebook.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,YAAY,CAAC,EAAgB;QAAd,KAAK,WAAA;IAClC,OAAO,CACL,gCAAK,OAAO,EAAC,eAAe,YAC1B,iCACE,IAAI,EAAE,KAAK,EACX,EAAE,EAAC,UAAU,EACb,CAAC,EAAC,8NAA8N,EAChO,SAAS,EAAC,0BAA0B,GACpC,GACE,CACP,CAAA;AACH,CAAC;AAXD,oCAWC;AAED,SAAgB,gBAAgB,CAAC,EAAgB;QAAd,KAAK,WAAA;IACtC,OAAO,CACL,gCAAK,OAAO,EAAC,aAAa,YACxB,iCACE,IAAI,EAAE,KAAK,EACX,CAAC,EAAC,8KAA8K,GAChL,GACE,CACP,CAAA;AACH,CAAC;AATD,4CASC"}
|
|
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.IconFile = void 0;
|
|
4
4
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
function IconFile(_a) {
|
|
6
|
-
var
|
|
7
|
-
return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '18', height: '16', viewBox: '0 0 18 16', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M0.666687 1.33333C0.666687 0.8731 1.03979 0.5 1.50002 0.5H7.67852L9.34519 2.16667H16.5C16.9603 2.16667 17.3334 2.53977 17.3334 3V14.6667C17.3334 15.1269 16.9603 15.5 16.5 15.5H1.50002C1.04169 15.5 0.666687 15.125 0.666687 14.6667V1.33333ZM7.82152 3L6.98818 2.16667H2.33335V3.83333H6.98818L7.82152 3ZM2.33335 5.5V13.8333H15.6667V3.83333H9.34519L7.67852 5.5H2.33335Z', fill:
|
|
6
|
+
var color = _a.color;
|
|
7
|
+
return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '18', height: '16', viewBox: '0 0 18 16', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M0.666687 1.33333C0.666687 0.8731 1.03979 0.5 1.50002 0.5H7.67852L9.34519 2.16667H16.5C16.9603 2.16667 17.3334 2.53977 17.3334 3V14.6667C17.3334 15.1269 16.9603 15.5 16.5 15.5H1.50002C1.04169 15.5 0.666687 15.125 0.666687 14.6667V1.33333ZM7.82152 3L6.98818 2.16667H2.33335V3.83333H6.98818L7.82152 3ZM2.33335 5.5V13.8333H15.6667V3.83333H9.34519L7.67852 5.5H2.33335Z', fill: color }) }));
|
|
8
8
|
}
|
|
9
9
|
exports.IconFile = IconFile;
|
|
10
|
-
//# sourceMappingURL=
|
|
10
|
+
//# sourceMappingURL=icon-file.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-file.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-file.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,QAAQ,CAAC,EAAgB;QAAd,KAAK,WAAA;IAC9B,OAAO,CACL,gCAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,YAC5F,iCACE,CAAC,EAAC,8WAA8W,EAChX,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAA;AACH,CAAC;AATD,4BASC"}
|
|
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.IconFolder = void 0;
|
|
4
4
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
function IconFolder(_a) {
|
|
6
|
-
var
|
|
7
|
-
return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '16', height: '15', viewBox: '0 0 16 15', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { id: 'Path 2955', d: 'M13.8182 14.5455H2.18182C0.978756 14.5455 0 13.5667 0 12.3636V2.18182C0 0.978756 0.978756 0 2.18182 0H5.81818C6.06135 0 6.28842 0.121527 6.42331 0.323855L7.66195 2.18182H13.8182C15.0212 2.18182 16 3.16057 16 4.36364V12.3636C16 13.5667 15.0212 14.5455 13.8182 14.5455ZM2.18182 1.45455C1.7808 1.45455 1.45455 1.7808 1.45455 2.18182V12.3636C1.45455 12.7647 1.7808 13.0909 2.18182 13.0909H13.8182C14.2192 13.0909 14.5455 12.7647 14.5455 12.3636V4.36364C14.5455 3.96262 14.2192 3.63636 13.8182 3.63636H7.27273C7.02956 3.63636 6.80249 3.51484 6.6676 3.31251L5.42896 1.45455H2.18182Z', fill:
|
|
6
|
+
var color = _a.color;
|
|
7
|
+
return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '16', height: '15', viewBox: '0 0 16 15', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { id: 'Path 2955', d: 'M13.8182 14.5455H2.18182C0.978756 14.5455 0 13.5667 0 12.3636V2.18182C0 0.978756 0.978756 0 2.18182 0H5.81818C6.06135 0 6.28842 0.121527 6.42331 0.323855L7.66195 2.18182H13.8182C15.0212 2.18182 16 3.16057 16 4.36364V12.3636C16 13.5667 15.0212 14.5455 13.8182 14.5455ZM2.18182 1.45455C1.7808 1.45455 1.45455 1.7808 1.45455 2.18182V12.3636C1.45455 12.7647 1.7808 13.0909 2.18182 13.0909H13.8182C14.2192 13.0909 14.5455 12.7647 14.5455 12.3636V4.36364C14.5455 3.96262 14.2192 3.63636 13.8182 3.63636H7.27273C7.02956 3.63636 6.80249 3.51484 6.6676 3.31251L5.42896 1.45455H2.18182Z', fill: color }) }));
|
|
8
8
|
}
|
|
9
9
|
exports.IconFolder = IconFolder;
|
|
10
|
-
//# sourceMappingURL=
|
|
10
|
+
//# sourceMappingURL=icon-folder.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-folder.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-folder.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,UAAU,CAAC,EAAgB;QAAd,KAAK,WAAA;IAChC,OAAO,CACL,gCAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,YAC5F,iCACE,EAAE,EAAC,WAAW,EACd,CAAC,EAAC,kkBAAkkB,EACpkB,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAA;AACH,CAAC;AAVD,gCAUC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { IIcon } from '../interfaces.js';
|
|
2
|
-
export declare function
|
|
2
|
+
export declare function IconFullFieldBell({ color }: IIcon): import("react/jsx-runtime").JSX.Element;
|
|
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.IconFullFieldBell = void 0;
|
|
4
4
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
function IconFullFieldBell(_a) {
|
|
6
|
-
var
|
|
7
|
-
return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '18', height: '19', viewBox: '0 0 18 19', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M17.3334 15.6665H0.666687V13.9998H1.50002V8.19267C1.50002 4.03607 4.85789 0.666504 9.00002 0.666504C13.1422 0.666504 16.5 4.03607 16.5 8.19267V13.9998H17.3334V15.6665ZM6.91669 16.4998H11.0834C11.0834 17.6504 10.1506 18.5832 9.00002 18.5832C7.84944 18.5832 6.91669 17.6504 6.91669 16.4998Z', fill:
|
|
6
|
+
var color = _a.color;
|
|
7
|
+
return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '18', height: '19', viewBox: '0 0 18 19', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M17.3334 15.6665H0.666687V13.9998H1.50002V8.19267C1.50002 4.03607 4.85789 0.666504 9.00002 0.666504C13.1422 0.666504 16.5 4.03607 16.5 8.19267V13.9998H17.3334V15.6665ZM6.91669 16.4998H11.0834C11.0834 17.6504 10.1506 18.5832 9.00002 18.5832C7.84944 18.5832 6.91669 17.6504 6.91669 16.4998Z', fill: color }) }));
|
|
8
8
|
}
|
|
9
9
|
exports.IconFullFieldBell = IconFullFieldBell;
|
|
10
|
-
//# sourceMappingURL=fullfield-bell.js.map
|
|
10
|
+
//# sourceMappingURL=icon-fullfield-bell.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-fullfield-bell.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-fullfield-bell.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,iBAAiB,CAAC,EAAgB;QAAd,KAAK,WAAA;IACvC,OAAO,CACL,gCAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,YAC5F,iCACE,CAAC,EAAC,kSAAkS,EACpS,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAA;AACH,CAAC;AATD,8CASC"}
|
|
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.IconFullFieldChat = void 0;
|
|
4
4
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
function IconFullFieldChat(_a) {
|
|
6
|
-
var
|
|
7
|
-
return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '18', height: '17', viewBox: '0 0 18 17', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M4.37881 13.8333L0.666687 16.75V1.33333C0.666687 0.8731 1.03979 0.5 1.50002 0.5H16.5C16.9603 0.5 17.3334 0.8731 17.3334 1.33333V13C17.3334 13.4602 16.9603 13.8333 16.5 13.8333H4.37881ZM4.83335 6.33333V8H6.50002V6.33333H4.83335ZM8.16669 6.33333V8H9.83335V6.33333H8.16669ZM11.5 6.33333V8H13.1667V6.33333H11.5Z', fill:
|
|
6
|
+
var color = _a.color;
|
|
7
|
+
return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '18', height: '17', viewBox: '0 0 18 17', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M4.37881 13.8333L0.666687 16.75V1.33333C0.666687 0.8731 1.03979 0.5 1.50002 0.5H16.5C16.9603 0.5 17.3334 0.8731 17.3334 1.33333V13C17.3334 13.4602 16.9603 13.8333 16.5 13.8333H4.37881ZM4.83335 6.33333V8H6.50002V6.33333H4.83335ZM8.16669 6.33333V8H9.83335V6.33333H8.16669ZM11.5 6.33333V8H13.1667V6.33333H11.5Z', fill: color }) }));
|
|
8
8
|
}
|
|
9
9
|
exports.IconFullFieldChat = IconFullFieldChat;
|
|
10
|
-
//# sourceMappingURL=fullfield-chat.js.map
|
|
10
|
+
//# sourceMappingURL=icon-fullfield-chat.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-fullfield-chat.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-fullfield-chat.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,iBAAiB,CAAC,EAAgB;QAAd,KAAK,WAAA;IACvC,OAAO,CACL,gCAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,YAC5F,iCACE,CAAC,EAAC,qTAAqT,EACvT,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAA;AACH,CAAC;AATD,8CASC"}
|
|
@@ -6,4 +6,4 @@ function IconGear() {
|
|
|
6
6
|
return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', viewBox: '0 0 512 512', children: (0, jsx_runtime_1.jsx)("path", { d: 'M495.9 166.6c3.2 8.7 .5 18.4-6.4 24.6l-43.3 39.4c1.1 8.3 1.7 16.8 1.7 25.4s-.6 17.1-1.7 25.4l43.3 39.4c6.9 6.2 9.6 15.9 6.4 24.6c-4.4 11.9-9.7 23.3-15.8 34.3l-4.7 8.1c-6.6 11-14 21.4-22.1 31.2c-5.9 7.2-15.7 9.6-24.5 6.8l-55.7-17.7c-13.4 10.3-28.2 18.9-44 25.4l-12.5 57.1c-2 9.1-9 16.3-18.2 17.8c-13.8 2.3-28 3.5-42.5 3.5s-28.7-1.2-42.5-3.5c-9.2-1.5-16.2-8.7-18.2-17.8l-12.5-57.1c-15.8-6.5-30.6-15.1-44-25.4L83.1 425.9c-8.8 2.8-18.6 .3-24.5-6.8c-8.1-9.8-15.5-20.2-22.1-31.2l-4.7-8.1c-6.1-11-11.4-22.4-15.8-34.3c-3.2-8.7-.5-18.4 6.4-24.6l43.3-39.4C64.6 273.1 64 264.6 64 256s.6-17.1 1.7-25.4L22.4 191.2c-6.9-6.2-9.6-15.9-6.4-24.6c4.4-11.9 9.7-23.3 15.8-34.3l4.7-8.1c6.6-11 14-21.4 22.1-31.2c5.9-7.2 15.7-9.6 24.5-6.8l55.7 17.7c13.4-10.3 28.2-18.9 44-25.4l12.5-57.1c2-9.1 9-16.3 18.2-17.8C227.3 1.2 241.5 0 256 0s28.7 1.2 42.5 3.5c9.2 1.5 16.2 8.7 18.2 17.8l12.5 57.1c15.8 6.5 30.6 15.1 44 25.4l55.7-17.7c8.8-2.8 18.6-.3 24.5 6.8c8.1 9.8 15.5 20.2 22.1 31.2l4.7 8.1c6.1 11 11.4 22.4 15.8 34.3zM256 336a80 80 0 1 0 0-160 80 80 0 1 0 0 160z' }) }));
|
|
7
7
|
}
|
|
8
8
|
exports.IconGear = IconGear;
|
|
9
|
-
//# sourceMappingURL=
|
|
9
|
+
//# sourceMappingURL=icon-gear.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-gear.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-gear.tsx"],"names":[],"mappings":";;;;AAAA,SAAgB,QAAQ;IACtB,OAAO,CACL,gCAAK,KAAK,EAAC,4BAA4B,EAAC,OAAO,EAAC,aAAa,YAC3D,iCAAM,CAAC,EAAC,6gCAA6gC,GAAG,GACphC,CACP,CAAA;AACH,CAAC;AAND,4BAMC"}
|
|
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.IconGender = void 0;
|
|
4
4
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
function IconGender(_a) {
|
|
6
|
-
var
|
|
7
|
-
return ((0, jsx_runtime_1.jsxs)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '24', height: '24', viewBox: '0 0 24 24', fill: 'none', children: [(0, jsx_runtime_1.jsxs)("g", { clipPath: 'url(#clip0_2001_194)', children: [(0, jsx_runtime_1.jsx)("path", { d: 'M12.7031 6.375C12.7031 2.8598 9.86433 0 6.375 0C2.8762 0 0 2.87714 0 6.375C0 9.62845 2.48634 12.3159 5.67188 12.6645V16.9219H3.5625C3.17419 16.9219 2.85938 17.2367 2.85938 17.625C2.85938 18.0133 3.17419 18.3281 3.5625 18.3281H5.67188V20.4375C5.67188 20.8258 5.98669 21.1406 6.375 21.1406C6.76331 21.1406 7.07812 20.8258 7.07812 20.4375V18.3281H9.1875C9.57581 18.3281 9.89062 18.0133 9.89062 17.625C9.89062 17.2367 9.57581 16.9219 9.1875 16.9219H7.07812V12.6638C10.2378 12.3129 12.7031 9.62667 12.7031 6.375ZM1.40625 6.375C1.40625 3.6352 3.63525 1.40625 6.375 1.40625C9.08892 1.40625 11.2969 3.6352 11.2969 6.375C11.2969 9.08892 9.08892 11.2969 6.375 11.2969C3.63525 11.2969 1.40625 9.08892 1.40625 6.375Z', fill:
|
|
6
|
+
var color = _a.color;
|
|
7
|
+
return ((0, jsx_runtime_1.jsxs)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '24', height: '24', viewBox: '0 0 24 24', fill: 'none', children: [(0, jsx_runtime_1.jsxs)("g", { clipPath: 'url(#clip0_2001_194)', children: [(0, jsx_runtime_1.jsx)("path", { d: 'M12.7031 6.375C12.7031 2.8598 9.86433 0 6.375 0C2.8762 0 0 2.87714 0 6.375C0 9.62845 2.48634 12.3159 5.67188 12.6645V16.9219H3.5625C3.17419 16.9219 2.85938 17.2367 2.85938 17.625C2.85938 18.0133 3.17419 18.3281 3.5625 18.3281H5.67188V20.4375C5.67188 20.8258 5.98669 21.1406 6.375 21.1406C6.76331 21.1406 7.07812 20.8258 7.07812 20.4375V18.3281H9.1875C9.57581 18.3281 9.89062 18.0133 9.89062 17.625C9.89062 17.2367 9.57581 16.9219 9.1875 16.9219H7.07812V12.6638C10.2378 12.3129 12.7031 9.62667 12.7031 6.375ZM1.40625 6.375C1.40625 3.6352 3.63525 1.40625 6.375 1.40625C9.08892 1.40625 11.2969 3.6352 11.2969 6.375C11.2969 9.08892 9.08892 11.2969 6.375 11.2969C3.63525 11.2969 1.40625 9.08892 1.40625 6.375Z', fill: color }), (0, jsx_runtime_1.jsx)("path", { d: 'M18.3281 11.3356V5.26001L19.9403 6.87218C20.2149 7.14677 20.6601 7.14682 20.9347 6.87218C21.2093 6.59759 21.2093 6.15241 20.9347 5.87782L18.1222 3.06532C17.8477 2.79073 17.4024 2.79073 17.1278 3.06532L14.3153 5.87782C14.0408 6.15241 14.0408 6.59759 14.3153 6.87218C14.5899 7.14677 15.0351 7.14677 15.3097 6.87218L16.9219 5.26001V11.3362C13.7622 11.6871 11.2969 14.3734 11.2969 17.625C11.2969 21.1402 14.1357 24 17.625 24C21.1238 24 24 21.1229 24 17.625C24 14.3716 21.5137 11.6841 18.3281 11.3356ZM17.625 22.5938C14.9111 22.5938 12.7031 20.3648 12.7031 17.625C12.7031 14.9111 14.9111 12.7031 17.625 12.7031C20.3647 12.7031 22.5938 14.9111 22.5938 17.625C22.5938 20.3648 20.3647 22.5938 17.625 22.5938Z', fill: color })] }), (0, jsx_runtime_1.jsx)("defs", { children: (0, jsx_runtime_1.jsx)("clipPath", { id: 'clip0_2001_194', children: (0, jsx_runtime_1.jsx)("rect", { width: '24', height: '24', fill: 'white' }) }) })] }));
|
|
8
8
|
}
|
|
9
9
|
exports.IconGender = IconGender;
|
|
10
|
-
//# sourceMappingURL=gender.js.map
|
|
10
|
+
//# sourceMappingURL=icon-gender.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-gender.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-gender.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,UAAU,CAAC,EAAgB;QAAd,KAAK,WAAA;IAChC,OAAO,CACL,iCAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,aAC5F,+BAAG,QAAQ,EAAC,sBAAsB,aAChC,iCACE,CAAC,EAAC,ksBAAksB,EACpsB,IAAI,EAAE,KAAK,GACX,EACF,iCACE,CAAC,EAAC,8rBAA8rB,EAChsB,IAAI,EAAE,KAAK,GACX,IACA,EACJ,2CACE,qCAAU,EAAE,EAAC,gBAAgB,YAC3B,iCAAM,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,IAAI,EAAC,OAAO,GAAG,GACnC,GACN,IACH,CACP,CAAA;AACH,CAAC;AApBD,gCAoBC"}
|
|
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.IconGlobe = void 0;
|
|
4
4
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
function IconGlobe(_a) {
|
|
6
|
-
var
|
|
7
|
-
return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '40', height: '40', viewBox: '0 0 40 40', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M20 30C17.3271 30 14.8174 28.9581 12.9277 27.0701C11.0391 25.182 10 22.6706 10 20C10 17.3294 11.0391 14.818 12.9277 12.9277C14.8174 11.0396 17.3271 10 20 10C22.6699 10 25.1826 11.0396 27.0703 12.9277C28.958 14.818 30 17.3294 30 20C30 22.6706 28.958 25.182 27.0703 27.0701C25.1826 28.9581 22.6699 30 20 30ZM17.9307 27.9154C16.543 25.8298 15.7031 23.4198 15.5 20.9076H11.8672C12.2441 24.299 14.7012 27.0713 17.9307 27.9154ZM22.0674 27.9154C25.2969 27.0713 27.7539 24.299 28.1299 20.9076H24.5C24.2959 23.4198 23.4551 25.8298 22.0674 27.9154ZM20 27.6797C21.5176 25.7232 22.4463 23.3747 22.6748 20.9076H17.3242C17.5518 23.3747 18.4814 25.7232 20 27.6797ZM28.1299 19.0901C27.7529 15.6996 25.2969 12.9268 22.0674 12.0825C23.4551 14.168 24.2959 16.5782 24.5 19.0901H28.1299ZM22.6748 19.0901C22.4463 16.6236 21.5176 14.2739 20 12.318C18.4824 14.2739 17.5527 16.6236 17.3242 19.0901H22.6748ZM15.5 19.0901C15.7031 16.5782 16.543 14.168 17.9307 12.0825C14.7012 12.9268 12.2451 15.6996 11.8672 19.0901H15.5Z', fill:
|
|
6
|
+
var color = _a.color;
|
|
7
|
+
return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '40', height: '40', viewBox: '0 0 40 40', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M20 30C17.3271 30 14.8174 28.9581 12.9277 27.0701C11.0391 25.182 10 22.6706 10 20C10 17.3294 11.0391 14.818 12.9277 12.9277C14.8174 11.0396 17.3271 10 20 10C22.6699 10 25.1826 11.0396 27.0703 12.9277C28.958 14.818 30 17.3294 30 20C30 22.6706 28.958 25.182 27.0703 27.0701C25.1826 28.9581 22.6699 30 20 30ZM17.9307 27.9154C16.543 25.8298 15.7031 23.4198 15.5 20.9076H11.8672C12.2441 24.299 14.7012 27.0713 17.9307 27.9154ZM22.0674 27.9154C25.2969 27.0713 27.7539 24.299 28.1299 20.9076H24.5C24.2959 23.4198 23.4551 25.8298 22.0674 27.9154ZM20 27.6797C21.5176 25.7232 22.4463 23.3747 22.6748 20.9076H17.3242C17.5518 23.3747 18.4814 25.7232 20 27.6797ZM28.1299 19.0901C27.7529 15.6996 25.2969 12.9268 22.0674 12.0825C23.4551 14.168 24.2959 16.5782 24.5 19.0901H28.1299ZM22.6748 19.0901C22.4463 16.6236 21.5176 14.2739 20 12.318C18.4824 14.2739 17.5527 16.6236 17.3242 19.0901H22.6748ZM15.5 19.0901C15.7031 16.5782 16.543 14.168 17.9307 12.0825C14.7012 12.9268 12.2451 15.6996 11.8672 19.0901H15.5Z', fill: color }) }));
|
|
8
8
|
}
|
|
9
9
|
exports.IconGlobe = IconGlobe;
|
|
10
|
-
//# sourceMappingURL=
|
|
10
|
+
//# sourceMappingURL=icon-globe.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-globe.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-globe.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,SAAS,CAAC,EAAgB;QAAd,KAAK,WAAA;IAC/B,OAAO,CACL,gCAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,YAC5F,iCACE,CAAC,EAAC,o+BAAo+B,EACt+B,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAA;AACH,CAAC;AATD,8BASC"}
|
|
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.IconHeart = void 0;
|
|
4
4
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
function IconHeart(_a) {
|
|
6
|
-
var
|
|
7
|
-
return ((0, jsx_runtime_1.jsxs)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '20', height: '21', viewBox: '0 0 20 21', fill: 'none', children: [(0, jsx_runtime_1.jsx)("g", { clipPath: 'url(#clip0_263_1634)', children: (0, jsx_runtime_1.jsx)("path", { d: 'M10 19.5896C9.89883 19.5896 9.7977 19.5634 9.70707 19.5111C9.60864 19.4543 7.26993 18.0964 4.89767 16.0504C3.49166 14.8378 2.36931 13.6351 1.56189 12.4757C0.517053 10.9755 -0.0083756 9.53242 0.000100941 8.1866C0.0100228 6.62059 0.57092 5.14786 1.57959 4.03965C2.60529 2.91278 3.97412 2.29224 5.434 2.29224C7.30497 2.29224 9.01555 3.34028 10 5.00051C10.9845 3.34032 12.6951 2.29224 14.5661 2.29224C15.9453 2.29224 17.2612 2.85216 18.2715 3.86887C19.3803 4.98461 20.0102 6.56109 19.9999 8.19402C19.9914 9.53749 19.4561 10.9784 18.409 12.4765C17.599 13.6353 16.4783 14.8375 15.0778 16.0497C12.7142 18.0956 10.3923 19.4534 10.2946 19.5102C10.2035 19.5631 10.1017 19.5896 10 19.5896ZM5.43396 3.46411C4.3081 3.46411 3.24705 3.94864 2.44623 4.82848C1.63256 5.72242 1.18002 6.91766 1.17197 8.19402C1.15592 10.7347 3.5981 13.3799 5.6497 15.1515C7.46184 16.7164 9.29989 17.8911 9.99895 18.3195C10.6944 17.8904 12.5195 16.7161 14.3241 15.1522C16.3699 13.3792 18.8119 10.7315 18.828 8.18664C18.8364 6.86355 18.3306 5.5909 17.4403 4.69493C16.6516 3.90126 15.6309 3.46415 14.5661 3.46415C12.7746 3.46415 11.1636 4.72414 10.5576 6.59953C10.4795 6.84141 10.2542 7.00527 10.0001 7.00527C9.74586 7.00527 9.52067 6.84137 9.44254 6.59949C8.83641 4.72415 7.22552 3.46411 5.43396 3.46411Z', fill:
|
|
6
|
+
var color = _a.color;
|
|
7
|
+
return ((0, jsx_runtime_1.jsxs)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '20', height: '21', viewBox: '0 0 20 21', fill: 'none', children: [(0, jsx_runtime_1.jsx)("g", { clipPath: 'url(#clip0_263_1634)', children: (0, jsx_runtime_1.jsx)("path", { d: 'M10 19.5896C9.89883 19.5896 9.7977 19.5634 9.70707 19.5111C9.60864 19.4543 7.26993 18.0964 4.89767 16.0504C3.49166 14.8378 2.36931 13.6351 1.56189 12.4757C0.517053 10.9755 -0.0083756 9.53242 0.000100941 8.1866C0.0100228 6.62059 0.57092 5.14786 1.57959 4.03965C2.60529 2.91278 3.97412 2.29224 5.434 2.29224C7.30497 2.29224 9.01555 3.34028 10 5.00051C10.9845 3.34032 12.6951 2.29224 14.5661 2.29224C15.9453 2.29224 17.2612 2.85216 18.2715 3.86887C19.3803 4.98461 20.0102 6.56109 19.9999 8.19402C19.9914 9.53749 19.4561 10.9784 18.409 12.4765C17.599 13.6353 16.4783 14.8375 15.0778 16.0497C12.7142 18.0956 10.3923 19.4534 10.2946 19.5102C10.2035 19.5631 10.1017 19.5896 10 19.5896ZM5.43396 3.46411C4.3081 3.46411 3.24705 3.94864 2.44623 4.82848C1.63256 5.72242 1.18002 6.91766 1.17197 8.19402C1.15592 10.7347 3.5981 13.3799 5.6497 15.1515C7.46184 16.7164 9.29989 17.8911 9.99895 18.3195C10.6944 17.8904 12.5195 16.7161 14.3241 15.1522C16.3699 13.3792 18.8119 10.7315 18.828 8.18664C18.8364 6.86355 18.3306 5.5909 17.4403 4.69493C16.6516 3.90126 15.6309 3.46415 14.5661 3.46415C12.7746 3.46415 11.1636 4.72414 10.5576 6.59953C10.4795 6.84141 10.2542 7.00527 10.0001 7.00527C9.74586 7.00527 9.52067 6.84137 9.44254 6.59949C8.83641 4.72415 7.22552 3.46411 5.43396 3.46411Z', fill: color }) }), (0, jsx_runtime_1.jsx)("defs", { children: (0, jsx_runtime_1.jsx)("clipPath", { id: 'clip0_263_1634', children: (0, jsx_runtime_1.jsx)("rect", { width: '20', height: '20', fill: color, transform: 'translate(0 0.940918)' }) }) })] }));
|
|
8
8
|
}
|
|
9
9
|
exports.IconHeart = IconHeart;
|
|
10
|
-
//# sourceMappingURL=heart.js.map
|
|
10
|
+
//# sourceMappingURL=icon-heart.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-heart.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-heart.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,SAAS,CAAC,EAAgB;QAAd,KAAK,WAAA;IAC/B,OAAO,CACL,iCAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,aAC5F,8BAAG,QAAQ,EAAC,sBAAsB,YAChC,iCACE,CAAC,EAAC,ovCAAovC,EACtvC,IAAI,EAAE,KAAK,GACX,GACA,EACJ,2CACE,qCAAU,EAAE,EAAC,gBAAgB,YAC3B,iCAAM,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,IAAI,EAAE,KAAK,EAAE,SAAS,EAAC,uBAAuB,GAAG,GACrE,GACN,IACH,CACP,CAAA;AACH,CAAC;AAhBD,8BAgBC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IconHome = void 0;
|
|
4
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
function IconHome(_a) {
|
|
6
|
+
var color = _a.color;
|
|
7
|
+
return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', viewBox: '0 0 15 16', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { id: 'Union 12', d: 'M9.45361 16.0007H5.09082H2.18115C0.978516 16.0007 0 15.0221 0 13.8193V5.81849C0 5.59436 0.104004 5.38223 0.279785 5.24415L6.82617 0.15507C6.95801 0.053008 7.11621 0.000976562 7.27246 0.000976562C7.43018 0.000976562 7.58838 0.053008 7.71826 0.15507L14.2646 5.24415C14.4424 5.38223 14.5444 5.59436 14.5444 5.81849V13.8193C14.5444 15.0221 13.5659 16.0007 12.3633 16.0007H9.45361ZM12.3633 14.5458C12.7656 14.5458 13.0918 14.2196 13.0918 13.8193V6.17471L7.27246 1.64997L1.45459 6.17471V13.8193C1.45459 14.2196 1.78076 14.5458 2.18115 14.5458H4.3623V8.00181C4.3623 7.59957 4.68848 7.27337 5.09082 7.27337H9.45361C9.85596 7.27337 10.1821 7.59957 10.1821 8.00181V14.5458H12.3633ZM8.72705 14.5458V8.72825H5.81738V14.5458H8.72705Z', fill: color }) }));
|
|
8
|
+
}
|
|
9
|
+
exports.IconHome = IconHome;
|
|
10
|
+
//# sourceMappingURL=icon-home.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-home.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-home.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,QAAQ,CAAC,EAAgB;QAAd,KAAK,WAAA;IAC9B,OAAO,CACL,gCAAK,KAAK,EAAC,4BAA4B,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,YACrE,iCACE,EAAE,EAAC,UAAU,EACb,CAAC,EAAC,ktBAAktB,EACptB,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAA;AACH,CAAC;AAVD,4BAUC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { IIcon } from '../interfaces.js';
|
|
2
|
-
export declare function
|
|
2
|
+
export declare function IconHospitalization({ color }: IIcon): import("react/jsx-runtime").JSX.Element;
|
|
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.IconHospitalization = void 0;
|
|
4
4
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
function IconHospitalization(_a) {
|
|
6
|
-
var
|
|
7
|
-
return ((0, jsx_runtime_1.jsxs)("svg", { width: '21', height: '20', viewBox: '0 0 21 20', fill: 'none', children: [(0, jsx_runtime_1.jsxs)("g", { clipPath: 'url(#clip0_5_23527)', children: [(0, jsx_runtime_1.jsx)("path", { d: 'M12.66 16.4844H8.33996C8.01637 16.4844 7.75402 16.222 7.75402 15.8984V12.746H4.60156C4.27797 12.746 4.01562 12.4836 4.01562 12.16V7.83996C4.01562 7.51637 4.27797 7.25402 4.60156 7.25402H7.75402V4.10156C7.75402 3.77797 8.01637 3.51562 8.33996 3.51562H12.66C12.9836 3.51562 13.246 3.77797 13.246 4.10156V7.25402H16.3984C16.722 7.25402 16.9844 7.51637 16.9844 7.83996V12.16C16.9844 12.4836 16.722 12.746 16.3984 12.746H13.246V15.8984C13.246 16.222 12.9836 16.4844 12.66 16.4844ZM8.9259 15.3125H12.0741V12.16C12.0741 11.8364 12.3364 11.5741 12.66 11.5741H15.8125V8.4259H12.66C12.3364 8.4259 12.0741 8.16355 12.0741 7.83996V4.6875H8.9259V7.83996C8.9259 8.16355 8.66355 8.4259 8.33996 8.4259H5.1875V11.5741H8.33996C8.66355 11.5741 8.9259 11.8364 8.9259 12.16V15.3125Z', fill:
|
|
6
|
+
var color = _a.color;
|
|
7
|
+
return ((0, jsx_runtime_1.jsxs)("svg", { width: '21', height: '20', viewBox: '0 0 21 20', fill: 'none', children: [(0, jsx_runtime_1.jsxs)("g", { clipPath: 'url(#clip0_5_23527)', children: [(0, jsx_runtime_1.jsx)("path", { d: 'M12.66 16.4844H8.33996C8.01637 16.4844 7.75402 16.222 7.75402 15.8984V12.746H4.60156C4.27797 12.746 4.01562 12.4836 4.01562 12.16V7.83996C4.01562 7.51637 4.27797 7.25402 4.60156 7.25402H7.75402V4.10156C7.75402 3.77797 8.01637 3.51562 8.33996 3.51562H12.66C12.9836 3.51562 13.246 3.77797 13.246 4.10156V7.25402H16.3984C16.722 7.25402 16.9844 7.51637 16.9844 7.83996V12.16C16.9844 12.4836 16.722 12.746 16.3984 12.746H13.246V15.8984C13.246 16.222 12.9836 16.4844 12.66 16.4844ZM8.9259 15.3125H12.0741V12.16C12.0741 11.8364 12.3364 11.5741 12.66 11.5741H15.8125V8.4259H12.66C12.3364 8.4259 12.0741 8.16355 12.0741 7.83996V4.6875H8.9259V7.83996C8.9259 8.16355 8.66355 8.4259 8.33996 8.4259H5.1875V11.5741H8.33996C8.66355 11.5741 8.9259 11.8364 8.9259 12.16V15.3125Z', fill: color }), (0, jsx_runtime_1.jsx)("path", { d: 'M10.5 20C7.82891 20 5.3177 18.9598 3.42891 17.0711C1.5402 15.1823 0.5 12.6711 0.5 10C0.5 7.32891 1.5402 4.8177 3.42891 2.92895C5.3177 1.0402 7.82891 0 10.5 0C13.1711 0 15.6823 1.0402 17.5711 2.92895C19.4598 4.8177 20.5 7.32891 20.5 10C20.5 12.6711 19.4598 15.1823 17.5711 17.0711C15.6823 18.9598 13.1711 20 10.5 20ZM10.5 1.17188C8.14191 1.17188 5.925 2.09016 4.25758 3.75758C2.59016 5.425 1.67188 7.64191 1.67188 10C1.67188 12.3581 2.59016 14.575 4.25758 16.2424C5.92496 17.9098 8.14191 18.8281 10.5 18.8281C12.8581 18.8281 15.075 17.9098 16.7424 16.2424C18.4098 14.575 19.3281 12.3581 19.3281 10C19.3281 7.64191 18.4098 5.425 16.7424 3.75758C15.075 2.09016 12.8581 1.17188 10.5 1.17188Z', fill: color })] }), (0, jsx_runtime_1.jsx)("defs", { children: (0, jsx_runtime_1.jsx)("clipPath", { id: 'clip0_5_23527', children: (0, jsx_runtime_1.jsx)("rect", { width: '20', height: '20', fill: color, transform: 'translate(0.5)' }) }) })] }));
|
|
8
8
|
}
|
|
9
9
|
exports.IconHospitalization = IconHospitalization;
|
|
10
|
-
//# sourceMappingURL=hospitalization.js.map
|
|
10
|
+
//# sourceMappingURL=icon-hospitalization.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-hospitalization.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-hospitalization.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,mBAAmB,CAAC,EAAgB;QAAd,KAAK,WAAA;IACzC,OAAO,CACL,iCAAK,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,aACzD,+BAAG,QAAQ,EAAC,qBAAqB,aAC/B,iCACE,CAAC,EAAC,2vBAA2vB,EAC7vB,IAAI,EAAE,KAAK,GACX,EACF,iCACE,CAAC,EAAC,irBAAirB,EACnrB,IAAI,EAAE,KAAK,GACX,IACA,EACJ,2CACE,qCAAU,EAAE,EAAC,eAAe,YAC1B,iCAAM,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,IAAI,EAAE,KAAK,EAAE,SAAS,EAAC,gBAAgB,GAAG,GAC9D,GACN,IACH,CACP,CAAA;AACH,CAAC;AApBD,kDAoBC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { IIcon } from '../interfaces.js';
|
|
2
|
-
export declare function
|
|
2
|
+
export declare function IconHypertension({ color }: IIcon): import("react/jsx-runtime").JSX.Element;
|
|
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.IconHypertension = void 0;
|
|
4
4
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
function IconHypertension(_a) {
|
|
6
|
-
var
|
|
7
|
-
return ((0, jsx_runtime_1.jsxs)("svg", { width: '24', height: '24', viewBox: '0 0 24 24', fill: 'none', xmlns: 'http://www.w3.org/2000/svg', children: [(0, jsx_runtime_1.jsx)("g", { id: 'hipertensao', clipPath: 'url(#clip0_482_2649)', children: (0, jsx_runtime_1.jsxs)("g", { id: 'Group', children: [(0, jsx_runtime_1.jsx)("path", { id: 'Vector', d: 'M18.7867 0C13.195 0.0592193 11.5995 7.58771 16.5785 9.94744V12.7465C16.5785 13.1347 16.8932 13.4493 17.2813 13.4493H17.9157C17.1803 14.886 14.9866 14.3881 14.9731 12.7457C14.9731 10.9352 13.6794 9.42773 11.9621 9.09982V0.702761C11.9621 0.31465 11.6475 0 11.2594 0H0.721072C0.33296 0 0.0183105 0.31465 0.0183105 0.702761V12.7465C0.0183105 13.1347 0.33296 13.4493 0.721072 13.4493H1.52381V18.0157C1.52222 19.6751 2.88609 21.0045 4.53477 20.9767V21.7794C4.53477 22.1675 4.84942 22.4821 5.23753 22.4821H8.27566C9.68432 24.3407 11.4591 23.9545 13.5184 23.9876C15.5657 23.9876 17.2313 22.322 17.2313 20.2747C17.2322 18.2268 15.5662 16.5601 13.5184 16.5602C11.4569 16.5943 9.6876 16.2053 8.27566 18.0656H5.23753C4.84942 18.0656 4.53477 18.3803 4.53477 18.7684V19.5711C3.65936 19.598 2.92774 18.895 2.92933 18.0157V13.4493H11.2594C11.6475 13.4493 11.9622 13.1346 11.9622 12.7465V10.5482C12.8839 10.8432 13.5676 11.7033 13.5676 12.7465C13.6469 16.2552 18.5175 16.8003 19.4046 13.4493H20.2922C20.6803 13.4493 20.995 13.1346 20.995 12.7465V9.9474C25.9769 7.58537 24.3748 0.0579075 18.7867 0ZM11.2594 17.9657H13.5184C16.5751 18.0814 16.575 22.4666 13.5183 22.5821H11.2594C8.20234 22.4664 8.2015 18.0816 11.2594 17.9657ZM5.94025 19.4712H7.63329C7.51668 19.9953 7.51663 20.5524 7.63334 21.0766H5.94025V19.4712ZM10.5566 12.0438H1.42383V10.4883C1.42383 10.0447 1.78252 9.68564 2.22657 9.68564H9.7539C10.1966 9.68564 10.5566 10.0433 10.5566 10.4883V12.0438ZM10.5566 8.43084C10.3079 8.33353 10.0374 8.28012 9.75469 8.28012H2.22578C1.94303 8.28012 1.67252 8.33358 1.42383 8.43089V1.40552H10.5566V8.43084ZM19.5894 12.0438H17.984V10.3768C18.5126 10.4586 19.0607 10.4586 19.5895 10.3768V12.0438H19.5894ZM18.7867 9.03282C16.6839 9.03282 14.9731 7.32202 14.9731 5.21917C15.1648 0.166789 22.4095 0.168194 22.6004 5.21922C22.6004 7.32202 20.8896 9.03282 18.7867 9.03282Z', fill:
|
|
6
|
+
var color = _a.color;
|
|
7
|
+
return ((0, jsx_runtime_1.jsxs)("svg", { width: '24', height: '24', viewBox: '0 0 24 24', fill: 'none', xmlns: 'http://www.w3.org/2000/svg', children: [(0, jsx_runtime_1.jsx)("g", { id: 'hipertensao', clipPath: 'url(#clip0_482_2649)', children: (0, jsx_runtime_1.jsxs)("g", { id: 'Group', children: [(0, jsx_runtime_1.jsx)("path", { id: 'Vector', d: 'M18.7867 0C13.195 0.0592193 11.5995 7.58771 16.5785 9.94744V12.7465C16.5785 13.1347 16.8932 13.4493 17.2813 13.4493H17.9157C17.1803 14.886 14.9866 14.3881 14.9731 12.7457C14.9731 10.9352 13.6794 9.42773 11.9621 9.09982V0.702761C11.9621 0.31465 11.6475 0 11.2594 0H0.721072C0.33296 0 0.0183105 0.31465 0.0183105 0.702761V12.7465C0.0183105 13.1347 0.33296 13.4493 0.721072 13.4493H1.52381V18.0157C1.52222 19.6751 2.88609 21.0045 4.53477 20.9767V21.7794C4.53477 22.1675 4.84942 22.4821 5.23753 22.4821H8.27566C9.68432 24.3407 11.4591 23.9545 13.5184 23.9876C15.5657 23.9876 17.2313 22.322 17.2313 20.2747C17.2322 18.2268 15.5662 16.5601 13.5184 16.5602C11.4569 16.5943 9.6876 16.2053 8.27566 18.0656H5.23753C4.84942 18.0656 4.53477 18.3803 4.53477 18.7684V19.5711C3.65936 19.598 2.92774 18.895 2.92933 18.0157V13.4493H11.2594C11.6475 13.4493 11.9622 13.1346 11.9622 12.7465V10.5482C12.8839 10.8432 13.5676 11.7033 13.5676 12.7465C13.6469 16.2552 18.5175 16.8003 19.4046 13.4493H20.2922C20.6803 13.4493 20.995 13.1346 20.995 12.7465V9.9474C25.9769 7.58537 24.3748 0.0579075 18.7867 0ZM11.2594 17.9657H13.5184C16.5751 18.0814 16.575 22.4666 13.5183 22.5821H11.2594C8.20234 22.4664 8.2015 18.0816 11.2594 17.9657ZM5.94025 19.4712H7.63329C7.51668 19.9953 7.51663 20.5524 7.63334 21.0766H5.94025V19.4712ZM10.5566 12.0438H1.42383V10.4883C1.42383 10.0447 1.78252 9.68564 2.22657 9.68564H9.7539C10.1966 9.68564 10.5566 10.0433 10.5566 10.4883V12.0438ZM10.5566 8.43084C10.3079 8.33353 10.0374 8.28012 9.75469 8.28012H2.22578C1.94303 8.28012 1.67252 8.33358 1.42383 8.43089V1.40552H10.5566V8.43084ZM19.5894 12.0438H17.984V10.3768C18.5126 10.4586 19.0607 10.4586 19.5895 10.3768V12.0438H19.5894ZM18.7867 9.03282C16.6839 9.03282 14.9731 7.32202 14.9731 5.21917C15.1648 0.166789 22.4095 0.168194 22.6004 5.21922C22.6004 7.32202 20.8896 9.03282 18.7867 9.03282Z', fill: color }), (0, jsx_runtime_1.jsx)("path", { id: 'Vector_2', d: 'M19.6207 3.39141L18.2899 4.72225C17.6559 5.40445 18.6006 6.35032 19.2837 5.7161L20.6145 4.38525C21.2485 3.70306 20.3038 2.75724 19.6207 3.39141Z', fill: color })] }) }), (0, jsx_runtime_1.jsx)("defs", { children: (0, jsx_runtime_1.jsx)("clipPath", { id: 'clip0_482_2649', children: (0, jsx_runtime_1.jsx)("rect", { width: '24', height: '24', fill: 'white' }) }) })] }));
|
|
8
8
|
}
|
|
9
9
|
exports.IconHypertension = IconHypertension;
|
|
10
|
-
//# sourceMappingURL=hypertension.js.map
|
|
10
|
+
//# sourceMappingURL=icon-hypertension.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-hypertension.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-hypertension.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,gBAAgB,CAAC,EAAgB;QAAd,KAAK,WAAA;IACtC,OAAO,CACL,iCAAK,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,EAAC,KAAK,EAAC,4BAA4B,aAC5F,8BAAG,EAAE,EAAC,aAAa,EAAC,QAAQ,EAAC,sBAAsB,YACjD,+BAAG,EAAE,EAAC,OAAO,aACX,iCACE,EAAE,EAAC,QAAQ,EACX,CAAC,EAAC,szDAAszD,EACxzD,IAAI,EAAE,KAAK,GACX,EACF,iCACE,EAAE,EAAC,UAAU,EACb,CAAC,EAAC,kJAAkJ,EACpJ,IAAI,EAAE,KAAK,GACX,IACA,GACF,EACJ,2CACE,qCAAU,EAAE,EAAC,gBAAgB,YAC3B,iCAAM,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,IAAI,EAAC,OAAO,GAAG,GACnC,GACN,IACH,CACP,CAAA;AACH,CAAC;AAxBD,4CAwBC"}
|
|
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.IconInfo = void 0;
|
|
4
4
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
function IconInfo(_a) {
|
|
6
|
-
var
|
|
6
|
+
var color = _a.color;
|
|
7
7
|
return ((0, jsx_runtime_1.jsxs)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '24', height: '24', viewBox: '0 0 24 24', fill: 'currentColor', children: [(0, jsx_runtime_1.jsx)("path", { stroke: 'none', d: 'M0 0h24v24H0z', fill: 'none' }), (0, jsx_runtime_1.jsx)("path", { d: 'M12 2c5.523 0 10 4.477 10 10a10 10 0 0 1 -19.995 .324l-.005 -.324l.004 -.28c.148 -5.393 4.566 -9.72 9.996 -9.72zm0 9h-1l-.117 .007a1 1 0 0 0 0 1.986l.117 .007v3l.007 .117a1 1 0 0 0 .876 .876l.117 .007h1l.117 -.007a1 1 0 0 0 .876 -.876l.007 -.117l-.007 -.117a1 1 0 0 0 -.764 -.857l-.112 -.02l-.117 -.006v-3l-.007 -.117a1 1 0 0 0 -.876 -.876l-.117 -.007zm.01 -3l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007z' })] }));
|
|
8
8
|
}
|
|
9
9
|
exports.IconInfo = IconInfo;
|
|
10
|
-
//# sourceMappingURL=info.js.map
|
|
10
|
+
//# sourceMappingURL=icon-info.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-info.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-info.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,QAAQ,CAAC,EAAgB;QAAd,KAAK,WAAA;IAC9B,OAAO,CACL,iCAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,aACpG,iCAAM,MAAM,EAAC,MAAM,EAAC,CAAC,EAAC,eAAe,EAAC,IAAI,EAAC,MAAM,GAAG,EACpD,iCAAM,CAAC,EAAC,2bAA2b,GAAG,IAClc,CACP,CAAA;AACH,CAAC;AAPD,4BAOC"}
|
|
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.IconInterrogationCircle = void 0;
|
|
4
4
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
function IconInterrogationCircle(_a) {
|
|
6
|
-
var
|
|
7
|
-
return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '12', height: '12', viewBox: '0 0 12 12', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M6.16671 11.6667C2.94504 11.6667 0.333374 9.05497 0.333374 5.83333C0.333374 2.61167 2.94504 0 6.16671 0C9.38834 0 12 2.61167 12 5.83333C12 9.05497 9.38834 11.6667 6.16671 11.6667ZM5.58337 7.58333V8.75H6.75004V7.58333H5.58337ZM6.75004 6.62381C7.59337 6.3728 8.20837 5.59154 8.20837 4.66667C8.20837 3.53908 7.29429 2.625 6.16671 2.625C5.17621 2.625 4.35042 3.33036 4.1643 4.26619L5.30851 4.49503C5.38831 4.09397 5.74222 3.79167 6.16671 3.79167C6.64994 3.79167 7.04171 4.18342 7.04171 4.66667C7.04171 5.1499 6.64994 5.54167 6.16671 5.54167C5.84453 5.54167 5.58337 5.80282 5.58337 6.125V7H6.75004V6.62381Z', fill:
|
|
6
|
+
var color = _a.color;
|
|
7
|
+
return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '12', height: '12', viewBox: '0 0 12 12', fill: 'none', children: (0, jsx_runtime_1.jsx)("path", { d: 'M6.16671 11.6667C2.94504 11.6667 0.333374 9.05497 0.333374 5.83333C0.333374 2.61167 2.94504 0 6.16671 0C9.38834 0 12 2.61167 12 5.83333C12 9.05497 9.38834 11.6667 6.16671 11.6667ZM5.58337 7.58333V8.75H6.75004V7.58333H5.58337ZM6.75004 6.62381C7.59337 6.3728 8.20837 5.59154 8.20837 4.66667C8.20837 3.53908 7.29429 2.625 6.16671 2.625C5.17621 2.625 4.35042 3.33036 4.1643 4.26619L5.30851 4.49503C5.38831 4.09397 5.74222 3.79167 6.16671 3.79167C6.64994 3.79167 7.04171 4.18342 7.04171 4.66667C7.04171 5.1499 6.64994 5.54167 6.16671 5.54167C5.84453 5.54167 5.58337 5.80282 5.58337 6.125V7H6.75004V6.62381Z', fill: color }) }));
|
|
8
8
|
}
|
|
9
9
|
exports.IconInterrogationCircle = IconInterrogationCircle;
|
|
10
|
-
//# sourceMappingURL=interrogation-circle.js.map
|
|
10
|
+
//# sourceMappingURL=icon-interrogation-circle.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-interrogation-circle.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-interrogation-circle.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,uBAAuB,CAAC,EAAgB;QAAd,KAAK,WAAA;IAC7C,OAAO,CACL,gCAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,MAAM,YAC5F,iCACE,CAAC,EAAC,2lBAA2lB,EAC7lB,IAAI,EAAE,KAAK,GACX,GACE,CACP,CAAA;AACH,CAAC;AATD,0DASC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { IIcon } from '../interfaces.js';
|
|
2
|
-
export declare function
|
|
2
|
+
export declare function IconLanguage({ color }: IIcon): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IconLanguage = void 0;
|
|
4
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
function IconLanguage(_a) {
|
|
6
|
+
var color = _a.color;
|
|
7
|
+
return ((0, jsx_runtime_1.jsxs)("svg", { xmlns: 'http://www.w3.org/2000/svg', x: '0px', y: '0px', viewBox: '0 0 512 512', xmlSpace: 'preserve', fill: color, children: [(0, jsx_runtime_1.jsx)("path", { d: 'M195.708 268.059l-30-150.001A14.999 14.999 0 00151 106h-30a14.999 14.999 0 00-14.708 12.058l-30 150c-1.625 8.124 3.644 16.026 11.767 17.65 8.123 1.625 16.026-3.644 17.65-11.767L115.297 226h41.406l9.588 47.942c1.625 8.127 9.531 13.392 17.65 11.767 8.123-1.625 13.392-9.527 11.767-17.65zM121.297 196l12-60h5.406l12 60h-29.406zM436 226h-45v-15c0-8.284-6.716-15-15-15s-15 6.716-15 15v15h-45c-8.284 0-15 6.716-15 15s6.716 15 15 15h3.63c8.547 27.612 21.415 48.806 35.575 65.79-11.525 10.542-23.187 19.187-33.575 27.497-6.469 5.175-7.518 14.614-2.342 21.083 5.178 6.472 14.618 7.515 21.083 2.342 10.446-8.357 22.967-17.644 35.629-29.264 12.671 11.628 25.215 20.932 35.629 29.264 6.469 5.176 15.909 4.126 21.083-2.342 5.175-6.469 4.126-15.909-2.342-21.083-10.361-8.291-22.038-16.945-33.575-27.497 14.16-16.984 27.028-38.178 35.575-65.79H436c8.284 0 15-6.716 15-15s-6.716-15-15-15zm-60 73.745c-9.575-12.02-18.189-26.367-24.683-43.845h49.365c-6.493 17.478-15.107 31.825-24.682 43.845z' }), (0, jsx_runtime_1.jsx)("path", { d: 'M467 91H250.599l-6.43-51.582C241.36 16.946 222.164 0 199.517 0H45C20.187 0 0 20.187 0 45v331c0 24.813 20.187 45 45 45h126.483l6.348 51.582c2.804 22.427 22 39.418 44.653 39.418H467c24.813 0 45-20.187 45-45V136c0-24.813-20.187-45-45-45zM45 391c-8.271 0-15-6.729-15-15V45c0-8.271 6.729-15 15-15h154.517c7.549 0 13.948 5.648 14.883 13.134L257.764 391H45zm161.724 70.75L201.709 421h40.244l-35.229 40.75zM482 467c0 8.271-6.729 15-15 15H228.874l57.104-66.053a14.976 14.976 0 003.629-12.024L254.339 121H467c8.271 0 15 6.729 15 15v331z' })] }));
|
|
8
|
+
}
|
|
9
|
+
exports.IconLanguage = IconLanguage;
|
|
10
|
+
//# sourceMappingURL=icon-language.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-language.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-language.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,YAAY,CAAC,EAAgB;QAAd,KAAK,WAAA;IAClC,OAAO,CACL,iCAAK,KAAK,EAAC,4BAA4B,EAAC,CAAC,EAAC,KAAK,EAAC,CAAC,EAAC,KAAK,EAAC,OAAO,EAAC,aAAa,EAAC,QAAQ,EAAC,UAAU,EAAC,IAAI,EAAE,KAAK,aAC3G,iCAAM,CAAC,EAAC,g9BAAg9B,GAAG,EAC39B,iCAAM,CAAC,EAAC,ghBAAghB,GAAG,IACvhB,CACP,CAAA;AACH,CAAC;AAPD,oCAOC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function IconLeftChevron(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IconLeftChevron = void 0;
|
|
4
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
function IconLeftChevron() {
|
|
6
|
+
return ((0, jsx_runtime_1.jsx)("svg", { xmlns: 'http://www.w3.org/2000/svg', viewBox: '0 0 24 24', children: (0, jsx_runtime_1.jsx)("path", { d: 'M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z' }) }));
|
|
7
|
+
}
|
|
8
|
+
exports.IconLeftChevron = IconLeftChevron;
|
|
9
|
+
//# sourceMappingURL=icon-left-chevron.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-left-chevron.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-left-chevron.tsx"],"names":[],"mappings":";;;;AAAA,SAAgB,eAAe;IAC7B,OAAO,CACL,gCAAK,KAAK,EAAC,4BAA4B,EAAC,OAAO,EAAC,WAAW,YACzD,iCAAM,CAAC,EAAC,0DAA0D,GAAG,GACjE,CACP,CAAA;AACH,CAAC;AAND,0CAMC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { IIcon } from '../interfaces.js';
|
|
2
|
-
export declare function
|
|
2
|
+
export declare function IconLeftNavigation({ color }: IIcon): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IconLeftNavigation = void 0;
|
|
4
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
function IconLeftNavigation(_a) {
|
|
6
|
+
var color = _a.color;
|
|
7
|
+
return ((0, jsx_runtime_1.jsx)("svg", { fill: color, viewBox: '0 0 15 15', xmlns: 'http://www.w3.org/2000/svg', id: 'arrow', version: '1.1', xmlnsXlink: 'http://www.w3.org/1999/xlink', transform: 'matrix(-1,1.2246467991473532e-16,1.2246467991473532e-16,1,0,0)', children: (0, jsx_runtime_1.jsx)("path", { d: 'M8.29289 2.29289C8.68342 1.90237 9.31658 1.90237 9.70711 2.29289L14.2071 6.79289C14.5976 7.18342 14.5976 7.81658 14.2071 8.20711L9.70711 12.7071C9.31658 13.0976 8.68342 13.0976 8.29289 12.7071C7.90237 12.3166 7.90237 11.6834 8.29289 11.2929L11 8.5H1.5C0.947715 8.5 0.5 8.05228 0.5 7.5C0.5 6.94772 0.947715 6.5 1.5 6.5H11L8.29289 3.70711C7.90237 3.31658 7.90237 2.68342 8.29289 2.29289Z' }) }));
|
|
8
|
+
}
|
|
9
|
+
exports.IconLeftNavigation = IconLeftNavigation;
|
|
10
|
+
//# sourceMappingURL=icon-left-navigation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-left-navigation.js","sourceRoot":"","sources":["../../../../src/ui/icons/render/icon-left-navigation.tsx"],"names":[],"mappings":";;;;AAEA,SAAgB,kBAAkB,CAAC,EAAgB;QAAd,KAAK,WAAA;IACxC,OAAO,CACL,gCACE,IAAI,EAAE,KAAK,EACX,OAAO,EAAC,WAAW,EACnB,KAAK,EAAC,4BAA4B,EAClC,EAAE,EAAC,OAAO,EACV,OAAO,EAAC,KAAK,EACb,UAAU,EAAC,8BAA8B,EACzC,SAAS,EAAC,gEAAgE,YAE1E,iCAAM,CAAC,EAAC,mYAAmY,GAAQ,GAC/Y,CACP,CAAA;AACH,CAAC;AAdD,gDAcC"}
|