ab-ui-library 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +76 -0
- package/assets/images/ArCa.svg +3 -0
- package/assets/images/Avatar.png +0 -0
- package/assets/images/Mastercard.svg +5 -0
- package/assets/images/Visa.svg +3 -0
- package/assets/images/avatar.jpg +0 -0
- package/assets/images/cards-img.png +0 -0
- package/assets/images/illustrations.svg +15 -0
- package/assets/images/image-placeholder.png +0 -0
- package/assets/images/logo-closed.svg +8 -0
- package/assets/images/logo.svg +14 -0
- package/assets/images/no-result.svg +35 -0
- package/assets/styles/helpers/_mixin.scss +718 -0
- package/assets/styles/styles.css +9841 -0
- package/assets/styles/styles.scss +1 -0
- package/components/AdvancedTable/AdvancedPagination.d.ts +7 -0
- package/components/AdvancedTable/AdvancedPagination.js +221 -0
- package/components/AdvancedTable/ColumnHeader.d.ts +7 -0
- package/components/AdvancedTable/ColumnHeader.js +61 -0
- package/components/AdvancedTable/ColumnSettings.d.ts +6 -0
- package/components/AdvancedTable/ColumnSettings.js +93 -0
- package/components/AdvancedTable/IndeterminateCheckbox.d.ts +13 -0
- package/components/AdvancedTable/IndeterminateCheckbox.js +55 -0
- package/components/AdvancedTable/Table.d.ts +2 -0
- package/components/AdvancedTable/Table.js +129 -0
- package/components/AdvancedTable/index.d.ts +3 -0
- package/components/AdvancedTable/index.js +94 -0
- package/components/AdvancedTable/types.d.ts +37 -0
- package/components/AdvancedTable/types.js +1 -0
- package/components/AdvancedTable/useTable.d.ts +18 -0
- package/components/AdvancedTable/useTable.js +211 -0
- package/components/Alert/Alert.d.ts +3 -0
- package/components/Alert/Alert.js +86 -0
- package/components/Alert/consts.d.ts +7 -0
- package/components/Alert/consts.js +18 -0
- package/components/Alert/index.d.ts +1 -0
- package/components/Alert/index.js +33 -0
- package/components/Alert/types.d.ts +19 -0
- package/components/Alert/types.js +1 -0
- package/components/Avatar/Avatar.d.ts +3 -0
- package/components/Avatar/Avatar.js +100 -0
- package/components/Avatar/AvatarGroup.d.ts +3 -0
- package/components/Avatar/AvatarGroup.js +102 -0
- package/components/Avatar/index.d.ts +2 -0
- package/components/Avatar/index.js +46 -0
- package/components/Avatar/types.d.ts +25 -0
- package/components/Avatar/types.js +1 -0
- package/components/Badge/Badge.d.ts +3 -0
- package/components/Badge/Badge.js +25 -0
- package/components/Badge/consts.d.ts +7 -0
- package/components/Badge/consts.js +13 -0
- package/components/Badge/index.d.ts +1 -0
- package/components/Badge/index.js +7 -0
- package/components/Badge/types.d.ts +6 -0
- package/components/Badge/types.js +1 -0
- package/components/Breadcrumb/Breadcrumb.d.ts +3 -0
- package/components/Breadcrumb/Breadcrumb.js +24 -0
- package/components/Breadcrumb/index.d.ts +1 -0
- package/components/Breadcrumb/index.js +2 -0
- package/components/Breadcrumb/types.d.ts +12 -0
- package/components/Breadcrumb/types.js +1 -0
- package/components/Button/Button.d.ts +3 -0
- package/components/Button/Button.js +80 -0
- package/components/Button/consts.d.ts +8 -0
- package/components/Button/consts.js +15 -0
- package/components/Button/index.d.ts +1 -0
- package/components/Button/index.js +30 -0
- package/components/Button/types.d.ts +22 -0
- package/components/Button/types.js +1 -0
- package/components/ButtonIcon/ButtonIcon.d.ts +3 -0
- package/components/ButtonIcon/ButtonIcon.js +66 -0
- package/components/ButtonIcon/consts.d.ts +4 -0
- package/components/ButtonIcon/consts.js +7 -0
- package/components/ButtonIcon/index.d.ts +1 -0
- package/components/ButtonIcon/index.js +30 -0
- package/components/ButtonIcon/types.d.ts +16 -0
- package/components/ButtonIcon/types.js +1 -0
- package/components/CardBody/CardBody.d.ts +3 -0
- package/components/CardBody/CardBody.js +61 -0
- package/components/CardBody/index.d.ts +1 -0
- package/components/CardBody/index.js +32 -0
- package/components/CardBody/types.d.ts +11 -0
- package/components/CardBody/types.js +1 -0
- package/components/CardSelect/CardSelect.d.ts +3 -0
- package/components/CardSelect/CardSelect.js +122 -0
- package/components/CardSelect/CardSelectGroup.d.ts +3 -0
- package/components/CardSelect/CardSelectGroup.js +95 -0
- package/components/CardSelect/components/CardAdditionalInfo.d.ts +8 -0
- package/components/CardSelect/components/CardAdditionalInfo.js +35 -0
- package/components/CardSelect/components/CardChips.d.ts +8 -0
- package/components/CardSelect/components/CardChips.js +28 -0
- package/components/CardSelect/components/CardDescription.d.ts +7 -0
- package/components/CardSelect/components/CardDescription.js +16 -0
- package/components/CardSelect/components/CardInput.d.ts +8 -0
- package/components/CardSelect/components/CardInput.js +51 -0
- package/components/CardSelect/components/index.d.ts +4 -0
- package/components/CardSelect/components/index.js +47 -0
- package/components/CardSelect/index.d.ts +2 -0
- package/components/CardSelect/index.js +52 -0
- package/components/CardSelect/types.d.ts +37 -0
- package/components/CardSelect/types.js +1 -0
- package/components/Cards/CardItem.d.ts +3 -0
- package/components/Cards/CardItem.js +41 -0
- package/components/Cards/index.d.ts +1 -0
- package/components/Cards/index.js +8 -0
- package/components/Cards/types.d.ts +15 -0
- package/components/Cards/types.js +1 -0
- package/components/Checkbox/Checkbox.d.ts +3 -0
- package/components/Checkbox/Checkbox.js +137 -0
- package/components/Checkbox/index.d.ts +1 -0
- package/components/Checkbox/index.js +26 -0
- package/components/Checkbox/types.d.ts +19 -0
- package/components/Checkbox/types.js +1 -0
- package/components/Chips/Chips.d.ts +3 -0
- package/components/Chips/Chips.js +55 -0
- package/components/Chips/consts.d.ts +7 -0
- package/components/Chips/consts.js +14 -0
- package/components/Chips/index.d.ts +1 -0
- package/components/Chips/index.js +12 -0
- package/components/Chips/types.d.ts +20 -0
- package/components/Chips/types.js +7 -0
- package/components/Collapse/CollapseGroup/CollapseGroup.d.ts +3 -0
- package/components/Collapse/CollapseGroup/CollapseGroup.js +77 -0
- package/components/Collapse/CollapseItem/CollapseItem.d.ts +3 -0
- package/components/Collapse/CollapseItem/CollapseItem.js +87 -0
- package/components/Collapse/index.d.ts +2 -0
- package/components/Collapse/index.js +17 -0
- package/components/Collapse/types.d.ts +38 -0
- package/components/Collapse/types.js +1 -0
- package/components/Container/Container.d.ts +3 -0
- package/components/Container/Container.js +10 -0
- package/components/Container/index.d.ts +1 -0
- package/components/Container/index.js +2 -0
- package/components/Container/types.d.ts +4 -0
- package/components/Container/types.js +1 -0
- package/components/Copy/Copy.d.ts +3 -0
- package/components/Copy/Copy.js +72 -0
- package/components/Copy/index.d.ts +1 -0
- package/components/Copy/index.js +32 -0
- package/components/Copy/types.d.ts +6 -0
- package/components/Copy/types.js +1 -0
- package/components/Counter/Counter.d.ts +3 -0
- package/components/Counter/Counter.js +121 -0
- package/components/Counter/index.d.ts +1 -0
- package/components/Counter/index.js +43 -0
- package/components/Counter/types.d.ts +9 -0
- package/components/Counter/types.js +1 -0
- package/components/DatePicker/CustomHeader/CustomHeader.d.ts +11 -0
- package/components/DatePicker/CustomHeader/CustomHeader.js +154 -0
- package/components/DatePicker/RangeDatePicker.d.ts +3 -0
- package/components/DatePicker/RangeDatePicker.js +161 -0
- package/components/DatePicker/SimpleDatePicker.d.ts +3 -0
- package/components/DatePicker/SimpleDatePicker.js +171 -0
- package/components/DatePicker/TimePicker.d.ts +3 -0
- package/components/DatePicker/TimePicker.js +119 -0
- package/components/DatePicker/hooks.d.ts +4 -0
- package/components/DatePicker/hooks.js +1954 -0
- package/components/DatePicker/index.d.ts +3 -0
- package/components/DatePicker/index.js +88 -0
- package/components/DatePicker/types.d.ts +44 -0
- package/components/DatePicker/types.js +7 -0
- package/components/Divider/Divider.d.ts +3 -0
- package/components/Divider/Divider.js +19 -0
- package/components/Divider/index.d.ts +1 -0
- package/components/Divider/index.js +3 -0
- package/components/Divider/types.d.ts +6 -0
- package/components/Divider/types.js +1 -0
- package/components/Empty/Empty.d.ts +3 -0
- package/components/Empty/Empty.js +63 -0
- package/components/Empty/index.d.ts +1 -0
- package/components/Empty/index.js +32 -0
- package/components/Empty/types.d.ts +9 -0
- package/components/Empty/types.js +1 -0
- package/components/FileUpload/FileUpload.d.ts +3 -0
- package/components/FileUpload/FileUpload.js +174 -0
- package/components/FileUpload/UploadItems.d.ts +3 -0
- package/components/FileUpload/UploadItems.js +81 -0
- package/components/FileUpload/index.d.ts +2 -0
- package/components/FileUpload/index.js +42 -0
- package/components/FileUpload/types.d.ts +35 -0
- package/components/FileUpload/types.js +7 -0
- package/components/FormContainer/FormContainer.d.ts +3 -0
- package/components/FormContainer/FormContainer.js +112 -0
- package/components/FormContainer/index.d.ts +1 -0
- package/components/FormContainer/index.js +33 -0
- package/components/FormContainer/types.d.ts +21 -0
- package/components/FormContainer/types.js +1 -0
- package/components/FormField/FormField.d.ts +3 -0
- package/components/FormField/FormField.js +89 -0
- package/components/FormField/index.d.ts +1 -0
- package/components/FormField/index.js +30 -0
- package/components/FormField/types.d.ts +9 -0
- package/components/FormField/types.js +1 -0
- package/components/FramedIcon/FramedIcon.d.ts +3 -0
- package/components/FramedIcon/FramedIcon.js +19 -0
- package/components/FramedIcon/consts.d.ts +7 -0
- package/components/FramedIcon/consts.js +12 -0
- package/components/FramedIcon/index.d.ts +1 -0
- package/components/FramedIcon/index.js +4 -0
- package/components/FramedIcon/types.d.ts +6 -0
- package/components/FramedIcon/types.js +1 -0
- package/components/Heading/Heading.d.ts +3 -0
- package/components/Heading/Heading.js +29 -0
- package/components/Heading/index.d.ts +1 -0
- package/components/Heading/index.js +5 -0
- package/components/Heading/types.d.ts +11 -0
- package/components/Heading/types.js +1 -0
- package/components/Image/Image.d.ts +3 -0
- package/components/Image/Image.js +33 -0
- package/components/Image/index.d.ts +1 -0
- package/components/Image/index.js +2 -0
- package/components/Image/types.d.ts +10 -0
- package/components/Image/types.js +1 -0
- package/components/Input/Input.d.ts +3 -0
- package/components/Input/Input.js +208 -0
- package/components/Input/InputPassword.d.ts +3 -0
- package/components/Input/InputPassword.js +215 -0
- package/components/Input/index.d.ts +2 -0
- package/components/Input/index.js +40 -0
- package/components/Input/types.d.ts +56 -0
- package/components/Input/types.js +1 -0
- package/components/ItemSelect/ItemSelect.d.ts +3 -0
- package/components/ItemSelect/ItemSelect.js +82 -0
- package/components/ItemSelect/ItemSelectGroup.d.ts +3 -0
- package/components/ItemSelect/ItemSelectGroup.js +69 -0
- package/components/ItemSelect/index.d.ts +2 -0
- package/components/ItemSelect/index.js +32 -0
- package/components/ItemSelect/types.d.ts +25 -0
- package/components/ItemSelect/types.js +1 -0
- package/components/Link/Link.d.ts +3 -0
- package/components/Link/Link.js +52 -0
- package/components/Link/index.d.ts +1 -0
- package/components/Link/index.js +5 -0
- package/components/Link/types.d.ts +20 -0
- package/components/Link/types.js +1 -0
- package/components/Menu/Menu.d.ts +3 -0
- package/components/Menu/Menu.js +146 -0
- package/components/Menu/NestedMenu.d.ts +3 -0
- package/components/Menu/NestedMenu.js +162 -0
- package/components/Menu/index.d.ts +2 -0
- package/components/Menu/index.js +56 -0
- package/components/Menu/types.d.ts +33 -0
- package/components/Menu/types.js +1 -0
- package/components/Modal/Modal.d.ts +3 -0
- package/components/Modal/Modal.js +145 -0
- package/components/Modal/ModalConfirmation.d.ts +3 -0
- package/components/Modal/ModalConfirmation.js +126 -0
- package/components/Modal/index.d.ts +2 -0
- package/components/Modal/index.js +41 -0
- package/components/Modal/types.d.ts +38 -0
- package/components/Modal/types.js +1 -0
- package/components/More/More.d.ts +3 -0
- package/components/More/More.js +64 -0
- package/components/More/index.d.ts +1 -0
- package/components/More/index.js +31 -0
- package/components/More/types.d.ts +10 -0
- package/components/More/types.js +1 -0
- package/components/OneTimePassword/OneTimePassword.d.ts +3 -0
- package/components/OneTimePassword/OneTimePassword.js +151 -0
- package/components/OneTimePassword/index.d.ts +1 -0
- package/components/OneTimePassword/index.js +42 -0
- package/components/OneTimePassword/types.d.ts +22 -0
- package/components/OneTimePassword/types.js +1 -0
- package/components/Pagination/Pagination.d.ts +3 -0
- package/components/Pagination/Pagination.js +60 -0
- package/components/Pagination/consts.d.ts +5 -0
- package/components/Pagination/consts.js +8 -0
- package/components/Pagination/index.d.ts +1 -0
- package/components/Pagination/index.js +11 -0
- package/components/Pagination/types.d.ts +15 -0
- package/components/Pagination/types.js +1 -0
- package/components/Popover/Popover.d.ts +3 -0
- package/components/Popover/Popover.js +97 -0
- package/components/Popover/index.d.ts +1 -0
- package/components/Popover/index.js +20 -0
- package/components/Popover/types.d.ts +13 -0
- package/components/Popover/types.js +1 -0
- package/components/Progress/Progress.d.ts +3 -0
- package/components/Progress/Progress.js +71 -0
- package/components/Progress/ProgressBarWrapper.d.ts +3 -0
- package/components/Progress/ProgressBarWrapper.js +16 -0
- package/components/Progress/index.d.ts +2 -0
- package/components/Progress/index.js +6 -0
- package/components/Progress/types.d.ts +14 -0
- package/components/Progress/types.js +1 -0
- package/components/ProgressStep/ProgressStep.d.ts +3 -0
- package/components/ProgressStep/ProgressStep.js +40 -0
- package/components/ProgressStep/Step.d.ts +3 -0
- package/components/ProgressStep/Step.js +102 -0
- package/components/ProgressStep/consts.d.ts +6 -0
- package/components/ProgressStep/consts.js +9 -0
- package/components/ProgressStep/index.d.ts +1 -0
- package/components/ProgressStep/index.js +13 -0
- package/components/ProgressStep/types.d.ts +31 -0
- package/components/ProgressStep/types.js +7 -0
- package/components/Radio/Radio.d.ts +3 -0
- package/components/Radio/Radio.js +59 -0
- package/components/Radio/RadioGroup.d.ts +3 -0
- package/components/Radio/RadioGroup.js +88 -0
- package/components/Radio/index.d.ts +2 -0
- package/components/Radio/index.js +29 -0
- package/components/Radio/types.d.ts +28 -0
- package/components/Radio/types.js +1 -0
- package/components/SVGIcons/IconAdd.d.ts +4 -0
- package/components/SVGIcons/IconAdd.js +30 -0
- package/components/SVGIcons/IconAddCircle.d.ts +4 -0
- package/components/SVGIcons/IconAddCircle.js +33 -0
- package/components/SVGIcons/IconAddCircleFilled.d.ts +4 -0
- package/components/SVGIcons/IconAddCircleFilled.js +33 -0
- package/components/SVGIcons/IconAddFilled.d.ts +4 -0
- package/components/SVGIcons/IconAddFilled.js +30 -0
- package/components/SVGIcons/IconAlert.d.ts +4 -0
- package/components/SVGIcons/IconAlert.js +33 -0
- package/components/SVGIcons/IconAlertBadge.d.ts +4 -0
- package/components/SVGIcons/IconAlertBadge.js +33 -0
- package/components/SVGIcons/IconAlertBadgeFilled.d.ts +4 -0
- package/components/SVGIcons/IconAlertBadgeFilled.js +33 -0
- package/components/SVGIcons/IconAlertFilled.d.ts +4 -0
- package/components/SVGIcons/IconAlertFilled.js +33 -0
- package/components/SVGIcons/IconAm.d.ts +4 -0
- package/components/SVGIcons/IconAm.js +59 -0
- package/components/SVGIcons/IconAmd.d.ts +4 -0
- package/components/SVGIcons/IconAmd.js +30 -0
- package/components/SVGIcons/IconAmdFilled.d.ts +4 -0
- package/components/SVGIcons/IconAmdFilled.js +30 -0
- package/components/SVGIcons/IconApple.d.ts +4 -0
- package/components/SVGIcons/IconApple.js +33 -0
- package/components/SVGIcons/IconAppsList.d.ts +4 -0
- package/components/SVGIcons/IconAppsList.js +30 -0
- package/components/SVGIcons/IconAppsListFilled.d.ts +4 -0
- package/components/SVGIcons/IconAppsListFilled.js +30 -0
- package/components/SVGIcons/IconArrowDown.d.ts +4 -0
- package/components/SVGIcons/IconArrowDown.js +33 -0
- package/components/SVGIcons/IconArrowDownFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowDownFilled.js +33 -0
- package/components/SVGIcons/IconArrowDownLeft.d.ts +4 -0
- package/components/SVGIcons/IconArrowDownLeft.js +33 -0
- package/components/SVGIcons/IconArrowDownLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowDownLeftFilled.js +33 -0
- package/components/SVGIcons/IconArrowDownload.d.ts +4 -0
- package/components/SVGIcons/IconArrowDownload.js +33 -0
- package/components/SVGIcons/IconArrowDownloadFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowDownloadFilled.js +33 -0
- package/components/SVGIcons/IconArrowEnter.d.ts +4 -0
- package/components/SVGIcons/IconArrowEnter.js +30 -0
- package/components/SVGIcons/IconArrowEnterFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowEnterFilled.js +30 -0
- package/components/SVGIcons/IconArrowExit.d.ts +4 -0
- package/components/SVGIcons/IconArrowExit.js +30 -0
- package/components/SVGIcons/IconArrowExitFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowExitFilled.js +30 -0
- package/components/SVGIcons/IconArrowExportLeftToRight.d.ts +4 -0
- package/components/SVGIcons/IconArrowExportLeftToRight.js +33 -0
- package/components/SVGIcons/IconArrowExportLeftToRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowExportLeftToRightFilled.js +33 -0
- package/components/SVGIcons/IconArrowExportRightToLeft.d.ts +4 -0
- package/components/SVGIcons/IconArrowExportRightToLeft.js +33 -0
- package/components/SVGIcons/IconArrowExportRightToLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowExportRightToLeftFilled.js +33 -0
- package/components/SVGIcons/IconArrowExportUp.d.ts +4 -0
- package/components/SVGIcons/IconArrowExportUp.js +33 -0
- package/components/SVGIcons/IconArrowExportUpFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowExportUpFilled.js +33 -0
- package/components/SVGIcons/IconArrowImport.d.ts +4 -0
- package/components/SVGIcons/IconArrowImport.js +33 -0
- package/components/SVGIcons/IconArrowImportFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowImportFilled.js +33 -0
- package/components/SVGIcons/IconArrowLeft.d.ts +4 -0
- package/components/SVGIcons/IconArrowLeft.js +33 -0
- package/components/SVGIcons/IconArrowLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowLeftFilled.js +33 -0
- package/components/SVGIcons/IconArrowRepeatAll.d.ts +4 -0
- package/components/SVGIcons/IconArrowRepeatAll.js +33 -0
- package/components/SVGIcons/IconArrowRepeatAllFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowRepeatAllFilled.js +33 -0
- package/components/SVGIcons/IconArrowReset.d.ts +4 -0
- package/components/SVGIcons/IconArrowReset.js +33 -0
- package/components/SVGIcons/IconArrowResetFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowResetFilled.js +33 -0
- package/components/SVGIcons/IconArrowRight.d.ts +4 -0
- package/components/SVGIcons/IconArrowRight.js +33 -0
- package/components/SVGIcons/IconArrowRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowRightFilled.js +33 -0
- package/components/SVGIcons/IconArrowSort.d.ts +4 -0
- package/components/SVGIcons/IconArrowSort.js +30 -0
- package/components/SVGIcons/IconArrowSortFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowSortFilled.js +30 -0
- package/components/SVGIcons/IconArrowSync.d.ts +4 -0
- package/components/SVGIcons/IconArrowSync.js +30 -0
- package/components/SVGIcons/IconArrowSyncFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowSyncFilled.js +30 -0
- package/components/SVGIcons/IconArrowUp.d.ts +4 -0
- package/components/SVGIcons/IconArrowUp.js +33 -0
- package/components/SVGIcons/IconArrowUpFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowUpFilled.js +33 -0
- package/components/SVGIcons/IconArrowUpLeft.d.ts +4 -0
- package/components/SVGIcons/IconArrowUpLeft.js +33 -0
- package/components/SVGIcons/IconArrowUpLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowUpLeftFilled.js +33 -0
- package/components/SVGIcons/IconArrowUpRight.d.ts +4 -0
- package/components/SVGIcons/IconArrowUpRight.js +33 -0
- package/components/SVGIcons/IconArrowUpRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowUpRightFilled.js +33 -0
- package/components/SVGIcons/IconAttach.d.ts +4 -0
- package/components/SVGIcons/IconAttach.js +33 -0
- package/components/SVGIcons/IconAttachFilled.d.ts +4 -0
- package/components/SVGIcons/IconAttachFilled.js +33 -0
- package/components/SVGIcons/IconBeach.d.ts +4 -0
- package/components/SVGIcons/IconBeach.js +30 -0
- package/components/SVGIcons/IconBeachFilled.d.ts +4 -0
- package/components/SVGIcons/IconBeachFilled.js +30 -0
- package/components/SVGIcons/IconBed.d.ts +4 -0
- package/components/SVGIcons/IconBed.js +30 -0
- package/components/SVGIcons/IconBedFilled.d.ts +4 -0
- package/components/SVGIcons/IconBedFilled.js +30 -0
- package/components/SVGIcons/IconBook.d.ts +4 -0
- package/components/SVGIcons/IconBook.js +33 -0
- package/components/SVGIcons/IconBookFilled.d.ts +4 -0
- package/components/SVGIcons/IconBookFilled.js +33 -0
- package/components/SVGIcons/IconBookmark.d.ts +4 -0
- package/components/SVGIcons/IconBookmark.js +33 -0
- package/components/SVGIcons/IconBookmarkFilled.d.ts +4 -0
- package/components/SVGIcons/IconBookmarkFilled.js +33 -0
- package/components/SVGIcons/IconBriefcase.d.ts +4 -0
- package/components/SVGIcons/IconBriefcase.js +33 -0
- package/components/SVGIcons/IconBriefcaseFilled.d.ts +4 -0
- package/components/SVGIcons/IconBriefcaseFilled.js +33 -0
- package/components/SVGIcons/IconBroom.d.ts +4 -0
- package/components/SVGIcons/IconBroom.js +30 -0
- package/components/SVGIcons/IconBroomFilled.d.ts +4 -0
- package/components/SVGIcons/IconBroomFilled.js +30 -0
- package/components/SVGIcons/IconBuilding.d.ts +4 -0
- package/components/SVGIcons/IconBuilding.js +56 -0
- package/components/SVGIcons/IconBuildingBank.d.ts +4 -0
- package/components/SVGIcons/IconBuildingBank.js +30 -0
- package/components/SVGIcons/IconBuildingBankFilled.d.ts +4 -0
- package/components/SVGIcons/IconBuildingBankFilled.js +30 -0
- package/components/SVGIcons/IconBuildingFilled.d.ts +4 -0
- package/components/SVGIcons/IconBuildingFilled.js +33 -0
- package/components/SVGIcons/IconBulletListAdd.d.ts +4 -0
- package/components/SVGIcons/IconBulletListAdd.js +33 -0
- package/components/SVGIcons/IconBulletListAddFilled.d.ts +4 -0
- package/components/SVGIcons/IconBulletListAddFilled.js +33 -0
- package/components/SVGIcons/IconCalculator.d.ts +4 -0
- package/components/SVGIcons/IconCalculator.js +33 -0
- package/components/SVGIcons/IconCalculatorFilled.d.ts +4 -0
- package/components/SVGIcons/IconCalculatorFilled.js +33 -0
- package/components/SVGIcons/IconCalendarClock.d.ts +4 -0
- package/components/SVGIcons/IconCalendarClock.js +30 -0
- package/components/SVGIcons/IconCalendarClockFilled.d.ts +4 -0
- package/components/SVGIcons/IconCalendarClockFilled.js +30 -0
- package/components/SVGIcons/IconCalendarDay.d.ts +4 -0
- package/components/SVGIcons/IconCalendarDay.js +33 -0
- package/components/SVGIcons/IconCalendarDayFilled.d.ts +4 -0
- package/components/SVGIcons/IconCalendarDayFilled.js +33 -0
- package/components/SVGIcons/IconCalendarLeft.d.ts +4 -0
- package/components/SVGIcons/IconCalendarLeft.js +30 -0
- package/components/SVGIcons/IconCalendarLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconCalendarLeftFilled.js +30 -0
- package/components/SVGIcons/IconCalendarRight.d.ts +4 -0
- package/components/SVGIcons/IconCalendarRight.js +30 -0
- package/components/SVGIcons/IconCalendarRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconCalendarRightFilled.js +30 -0
- package/components/SVGIcons/IconCall.d.ts +4 -0
- package/components/SVGIcons/IconCall.js +33 -0
- package/components/SVGIcons/IconCallFilled.d.ts +4 -0
- package/components/SVGIcons/IconCallFilled.js +33 -0
- package/components/SVGIcons/IconCameraDome.d.ts +4 -0
- package/components/SVGIcons/IconCameraDome.js +30 -0
- package/components/SVGIcons/IconCameraDomeFilled.d.ts +4 -0
- package/components/SVGIcons/IconCameraDomeFilled.js +30 -0
- package/components/SVGIcons/IconCard.d.ts +4 -0
- package/components/SVGIcons/IconCard.js +30 -0
- package/components/SVGIcons/IconCardFilled.d.ts +4 -0
- package/components/SVGIcons/IconCardFilled.js +30 -0
- package/components/SVGIcons/IconCaretDown.d.ts +4 -0
- package/components/SVGIcons/IconCaretDown.js +30 -0
- package/components/SVGIcons/IconCaretDownFilled.d.ts +4 -0
- package/components/SVGIcons/IconCaretDownFilled.js +30 -0
- package/components/SVGIcons/IconCaretDownRight.d.ts +4 -0
- package/components/SVGIcons/IconCaretDownRight.js +30 -0
- package/components/SVGIcons/IconCaretDownRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconCaretDownRightFilled.js +30 -0
- package/components/SVGIcons/IconCaretLeft.d.ts +4 -0
- package/components/SVGIcons/IconCaretLeft.js +30 -0
- package/components/SVGIcons/IconCaretLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconCaretLeftFilled.js +30 -0
- package/components/SVGIcons/IconCaretRight.d.ts +4 -0
- package/components/SVGIcons/IconCaretRight.js +30 -0
- package/components/SVGIcons/IconCaretRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconCaretRightFilled.js +30 -0
- package/components/SVGIcons/IconCaretUp.d.ts +4 -0
- package/components/SVGIcons/IconCaretUp.js +30 -0
- package/components/SVGIcons/IconCaretUpFilled.d.ts +4 -0
- package/components/SVGIcons/IconCaretUpFilled.js +30 -0
- package/components/SVGIcons/IconChat.d.ts +4 -0
- package/components/SVGIcons/IconChat.js +30 -0
- package/components/SVGIcons/IconChatFilled.d.ts +4 -0
- package/components/SVGIcons/IconChatFilled.js +30 -0
- package/components/SVGIcons/IconChatMultiple.d.ts +4 -0
- package/components/SVGIcons/IconChatMultiple.js +30 -0
- package/components/SVGIcons/IconChatMultipleFilled.d.ts +4 -0
- package/components/SVGIcons/IconChatMultipleFilled.js +30 -0
- package/components/SVGIcons/IconCheckboxArrowRight.d.ts +4 -0
- package/components/SVGIcons/IconCheckboxArrowRight.js +33 -0
- package/components/SVGIcons/IconCheckboxArrowRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconCheckboxArrowRightFilled.js +33 -0
- package/components/SVGIcons/IconCheckmark.d.ts +4 -0
- package/components/SVGIcons/IconCheckmark.js +30 -0
- package/components/SVGIcons/IconCheckmarkCircle.d.ts +4 -0
- package/components/SVGIcons/IconCheckmarkCircle.js +30 -0
- package/components/SVGIcons/IconCheckmarkCircleFilled.d.ts +4 -0
- package/components/SVGIcons/IconCheckmarkCircleFilled.js +30 -0
- package/components/SVGIcons/IconCheckmarkFilled.d.ts +4 -0
- package/components/SVGIcons/IconCheckmarkFilled.js +30 -0
- package/components/SVGIcons/IconChevronDoubleLeft.d.ts +4 -0
- package/components/SVGIcons/IconChevronDoubleLeft.js +30 -0
- package/components/SVGIcons/IconChevronDoubleLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconChevronDoubleLeftFilled.js +30 -0
- package/components/SVGIcons/IconChevronDoubleRight.d.ts +4 -0
- package/components/SVGIcons/IconChevronDoubleRight.js +30 -0
- package/components/SVGIcons/IconChevronDoubleRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconChevronDoubleRightFilled.js +30 -0
- package/components/SVGIcons/IconChevronDown.d.ts +4 -0
- package/components/SVGIcons/IconChevronDown.js +30 -0
- package/components/SVGIcons/IconChevronDownFilled.d.ts +4 -0
- package/components/SVGIcons/IconChevronDownFilled.js +30 -0
- package/components/SVGIcons/IconChevronLeft.d.ts +4 -0
- package/components/SVGIcons/IconChevronLeft.js +30 -0
- package/components/SVGIcons/IconChevronLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconChevronLeftFilled.js +30 -0
- package/components/SVGIcons/IconChevronRight.d.ts +4 -0
- package/components/SVGIcons/IconChevronRight.js +30 -0
- package/components/SVGIcons/IconChevronRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconChevronRightFilled.js +30 -0
- package/components/SVGIcons/IconChevronUp.d.ts +4 -0
- package/components/SVGIcons/IconChevronUp.js +30 -0
- package/components/SVGIcons/IconChevronUpDown.d.ts +4 -0
- package/components/SVGIcons/IconChevronUpDown.js +33 -0
- package/components/SVGIcons/IconChevronUpDownFilled.d.ts +4 -0
- package/components/SVGIcons/IconChevronUpDownFilled.js +33 -0
- package/components/SVGIcons/IconChevronUpFilled.d.ts +4 -0
- package/components/SVGIcons/IconChevronUpFilled.js +30 -0
- package/components/SVGIcons/IconClock.d.ts +4 -0
- package/components/SVGIcons/IconClock.js +33 -0
- package/components/SVGIcons/IconClockDismiss.d.ts +4 -0
- package/components/SVGIcons/IconClockDismiss.js +30 -0
- package/components/SVGIcons/IconClockDismissFilled.d.ts +4 -0
- package/components/SVGIcons/IconClockDismissFilled.js +30 -0
- package/components/SVGIcons/IconClockFilled.d.ts +4 -0
- package/components/SVGIcons/IconClockFilled.js +33 -0
- package/components/SVGIcons/IconComment.d.ts +4 -0
- package/components/SVGIcons/IconComment.js +33 -0
- package/components/SVGIcons/IconCommentFilled.d.ts +4 -0
- package/components/SVGIcons/IconCommentFilled.js +33 -0
- package/components/SVGIcons/IconContractCard.d.ts +4 -0
- package/components/SVGIcons/IconContractCard.js +30 -0
- package/components/SVGIcons/IconContractCardFilled.d.ts +4 -0
- package/components/SVGIcons/IconContractCardFilled.js +30 -0
- package/components/SVGIcons/IconCopy.d.ts +4 -0
- package/components/SVGIcons/IconCopy.js +30 -0
- package/components/SVGIcons/IconCopyFilled.d.ts +4 -0
- package/components/SVGIcons/IconCopyFilled.js +30 -0
- package/components/SVGIcons/IconCubeTree.d.ts +4 -0
- package/components/SVGIcons/IconCubeTree.js +30 -0
- package/components/SVGIcons/IconCubeTreeFilled.d.ts +4 -0
- package/components/SVGIcons/IconCubeTreeFilled.js +33 -0
- package/components/SVGIcons/IconDatabase.d.ts +4 -0
- package/components/SVGIcons/IconDatabase.js +33 -0
- package/components/SVGIcons/IconDatabaseFilled.d.ts +4 -0
- package/components/SVGIcons/IconDatabaseFilled.js +33 -0
- package/components/SVGIcons/IconDelete.d.ts +4 -0
- package/components/SVGIcons/IconDelete.js +30 -0
- package/components/SVGIcons/IconDeleteFilled.d.ts +4 -0
- package/components/SVGIcons/IconDeleteFilled.js +30 -0
- package/components/SVGIcons/IconDesignIdeas.d.ts +4 -0
- package/components/SVGIcons/IconDesignIdeas.js +30 -0
- package/components/SVGIcons/IconDesignIdeasFilled.d.ts +4 -0
- package/components/SVGIcons/IconDesignIdeasFilled.js +30 -0
- package/components/SVGIcons/IconDeviceMeetingRoom.d.ts +4 -0
- package/components/SVGIcons/IconDeviceMeetingRoom.js +30 -0
- package/components/SVGIcons/IconDeviceMeetingRoomFilled.d.ts +4 -0
- package/components/SVGIcons/IconDeviceMeetingRoomFilled.js +30 -0
- package/components/SVGIcons/IconDismiss.d.ts +4 -0
- package/components/SVGIcons/IconDismiss.js +30 -0
- package/components/SVGIcons/IconDismissCircle.d.ts +4 -0
- package/components/SVGIcons/IconDismissCircle.js +33 -0
- package/components/SVGIcons/IconDismissCircleFilled.d.ts +4 -0
- package/components/SVGIcons/IconDismissCircleFilled.js +33 -0
- package/components/SVGIcons/IconDismissFilled.d.ts +4 -0
- package/components/SVGIcons/IconDismissFilled.js +30 -0
- package/components/SVGIcons/IconDocument.d.ts +4 -0
- package/components/SVGIcons/IconDocument.js +30 -0
- package/components/SVGIcons/IconDocumentBulletList.d.ts +4 -0
- package/components/SVGIcons/IconDocumentBulletList.js +33 -0
- package/components/SVGIcons/IconDocumentBulletListFilled.d.ts +4 -0
- package/components/SVGIcons/IconDocumentBulletListFilled.js +33 -0
- package/components/SVGIcons/IconDocumentEdit.d.ts +4 -0
- package/components/SVGIcons/IconDocumentEdit.js +30 -0
- package/components/SVGIcons/IconDocumentEditFilled.d.ts +4 -0
- package/components/SVGIcons/IconDocumentEditFilled.js +30 -0
- package/components/SVGIcons/IconDocumentFilled.d.ts +4 -0
- package/components/SVGIcons/IconDocumentFilled.js +30 -0
- package/components/SVGIcons/IconEdit.d.ts +4 -0
- package/components/SVGIcons/IconEdit.js +30 -0
- package/components/SVGIcons/IconEditFilled.d.ts +4 -0
- package/components/SVGIcons/IconEditFilled.js +30 -0
- package/components/SVGIcons/IconErrorCircle.d.ts +4 -0
- package/components/SVGIcons/IconErrorCircle.js +30 -0
- package/components/SVGIcons/IconErrorCircleFilled.d.ts +4 -0
- package/components/SVGIcons/IconErrorCircleFilled.js +30 -0
- package/components/SVGIcons/IconEur.d.ts +4 -0
- package/components/SVGIcons/IconEur.js +30 -0
- package/components/SVGIcons/IconEurFilled.d.ts +4 -0
- package/components/SVGIcons/IconEurFilled.js +30 -0
- package/components/SVGIcons/IconExpandUpLeft.d.ts +4 -0
- package/components/SVGIcons/IconExpandUpLeft.js +33 -0
- package/components/SVGIcons/IconExpandUpLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconExpandUpLeftFilled.js +33 -0
- package/components/SVGIcons/IconExpandUpRight.d.ts +4 -0
- package/components/SVGIcons/IconExpandUpRight.js +33 -0
- package/components/SVGIcons/IconExpandUpRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconExpandUpRightFilled.js +33 -0
- package/components/SVGIcons/IconEyeOff.d.ts +4 -0
- package/components/SVGIcons/IconEyeOff.js +35 -0
- package/components/SVGIcons/IconEyeOffFilled.d.ts +4 -0
- package/components/SVGIcons/IconEyeOffFilled.js +33 -0
- package/components/SVGIcons/IconEyeOn.d.ts +4 -0
- package/components/SVGIcons/IconEyeOn.js +35 -0
- package/components/SVGIcons/IconEyeOnFilled.d.ts +4 -0
- package/components/SVGIcons/IconEyeOnFilled.js +33 -0
- package/components/SVGIcons/IconFacebook.d.ts +4 -0
- package/components/SVGIcons/IconFacebook.js +40 -0
- package/components/SVGIcons/IconFilter.d.ts +4 -0
- package/components/SVGIcons/IconFilter.js +30 -0
- package/components/SVGIcons/IconFilterFilled.d.ts +4 -0
- package/components/SVGIcons/IconFilterFilled.js +30 -0
- package/components/SVGIcons/IconFlag.d.ts +4 -0
- package/components/SVGIcons/IconFlag.js +33 -0
- package/components/SVGIcons/IconFlagFilled.d.ts +4 -0
- package/components/SVGIcons/IconFlagFilled.js +33 -0
- package/components/SVGIcons/IconFlash.d.ts +4 -0
- package/components/SVGIcons/IconFlash.js +30 -0
- package/components/SVGIcons/IconFlashFilled.d.ts +4 -0
- package/components/SVGIcons/IconFlashFilled.js +30 -0
- package/components/SVGIcons/IconFolderLink.d.ts +4 -0
- package/components/SVGIcons/IconFolderLink.js +30 -0
- package/components/SVGIcons/IconFolderLinkFilled.d.ts +4 -0
- package/components/SVGIcons/IconFolderLinkFilled.js +30 -0
- package/components/SVGIcons/IconGas.d.ts +4 -0
- package/components/SVGIcons/IconGas.js +33 -0
- package/components/SVGIcons/IconGb.d.ts +4 -0
- package/components/SVGIcons/IconGb.js +73 -0
- package/components/SVGIcons/IconGlobe.d.ts +4 -0
- package/components/SVGIcons/IconGlobe.js +30 -0
- package/components/SVGIcons/IconGlobeFilled.d.ts +4 -0
- package/components/SVGIcons/IconGlobeFilled.js +30 -0
- package/components/SVGIcons/IconGoogle.d.ts +4 -0
- package/components/SVGIcons/IconGoogle.js +42 -0
- package/components/SVGIcons/IconHandOpenHeart.d.ts +4 -0
- package/components/SVGIcons/IconHandOpenHeart.js +33 -0
- package/components/SVGIcons/IconHandOpenHeartFilled.d.ts +4 -0
- package/components/SVGIcons/IconHandOpenHeartFilled.js +33 -0
- package/components/SVGIcons/IconHandWave.d.ts +4 -0
- package/components/SVGIcons/IconHandWave.js +30 -0
- package/components/SVGIcons/IconHandWaveFilled.d.ts +4 -0
- package/components/SVGIcons/IconHandWaveFilled.js +30 -0
- package/components/SVGIcons/IconHeart.d.ts +4 -0
- package/components/SVGIcons/IconHeart.js +33 -0
- package/components/SVGIcons/IconHeartFilled.d.ts +4 -0
- package/components/SVGIcons/IconHeartFilled.js +33 -0
- package/components/SVGIcons/IconHistory.d.ts +4 -0
- package/components/SVGIcons/IconHistory.js +33 -0
- package/components/SVGIcons/IconHistoryFilled.d.ts +4 -0
- package/components/SVGIcons/IconHistoryFilled.js +33 -0
- package/components/SVGIcons/IconHome.d.ts +4 -0
- package/components/SVGIcons/IconHome.js +33 -0
- package/components/SVGIcons/IconHomeAdd.d.ts +4 -0
- package/components/SVGIcons/IconHomeAdd.js +30 -0
- package/components/SVGIcons/IconHomeAddFilled.d.ts +4 -0
- package/components/SVGIcons/IconHomeAddFilled.js +30 -0
- package/components/SVGIcons/IconHomeFilled.d.ts +4 -0
- package/components/SVGIcons/IconHomeFilled.js +33 -0
- package/components/SVGIcons/IconImage.d.ts +4 -0
- package/components/SVGIcons/IconImage.js +33 -0
- package/components/SVGIcons/IconImageFilled.d.ts +4 -0
- package/components/SVGIcons/IconImageFilled.js +33 -0
- package/components/SVGIcons/IconInfo.d.ts +4 -0
- package/components/SVGIcons/IconInfo.js +30 -0
- package/components/SVGIcons/IconInfoFilled.d.ts +4 -0
- package/components/SVGIcons/IconInfoFilled.js +30 -0
- package/components/SVGIcons/IconInstagram.d.ts +4 -0
- package/components/SVGIcons/IconInstagram.js +41 -0
- package/components/SVGIcons/IconKey.d.ts +4 -0
- package/components/SVGIcons/IconKey.js +30 -0
- package/components/SVGIcons/IconKeyFilled.d.ts +4 -0
- package/components/SVGIcons/IconKeyFilled.js +30 -0
- package/components/SVGIcons/IconKeyReset.d.ts +4 -0
- package/components/SVGIcons/IconKeyReset.js +33 -0
- package/components/SVGIcons/IconKeyResetFilled.d.ts +4 -0
- package/components/SVGIcons/IconKeyResetFilled.js +33 -0
- package/components/SVGIcons/IconLaptop.d.ts +4 -0
- package/components/SVGIcons/IconLaptop.js +30 -0
- package/components/SVGIcons/IconLaptopFilled.d.ts +4 -0
- package/components/SVGIcons/IconLaptopFilled.js +30 -0
- package/components/SVGIcons/IconLeaf.d.ts +4 -0
- package/components/SVGIcons/IconLeaf.js +30 -0
- package/components/SVGIcons/IconLeafFilled.d.ts +4 -0
- package/components/SVGIcons/IconLeafFilled.js +30 -0
- package/components/SVGIcons/IconLightbulb.d.ts +4 -0
- package/components/SVGIcons/IconLightbulb.js +30 -0
- package/components/SVGIcons/IconLightbulbFilled.d.ts +4 -0
- package/components/SVGIcons/IconLightbulbFilled.js +30 -0
- package/components/SVGIcons/IconLink.d.ts +4 -0
- package/components/SVGIcons/IconLink.js +33 -0
- package/components/SVGIcons/IconLinkFilled.d.ts +4 -0
- package/components/SVGIcons/IconLinkFilled.js +33 -0
- package/components/SVGIcons/IconLinkedin.d.ts +4 -0
- package/components/SVGIcons/IconLinkedin.js +33 -0
- package/components/SVGIcons/IconList.d.ts +4 -0
- package/components/SVGIcons/IconList.js +30 -0
- package/components/SVGIcons/IconListFilled.d.ts +4 -0
- package/components/SVGIcons/IconListFilled.js +33 -0
- package/components/SVGIcons/IconLoan.d.ts +4 -0
- package/components/SVGIcons/IconLoan.js +39 -0
- package/components/SVGIcons/IconLoanFilled.d.ts +4 -0
- package/components/SVGIcons/IconLoanFilled.js +30 -0
- package/components/SVGIcons/IconLocation.d.ts +4 -0
- package/components/SVGIcons/IconLocation.js +33 -0
- package/components/SVGIcons/IconLocationFilled.d.ts +4 -0
- package/components/SVGIcons/IconLocationFilled.js +33 -0
- package/components/SVGIcons/IconLockClosed.d.ts +4 -0
- package/components/SVGIcons/IconLockClosed.js +33 -0
- package/components/SVGIcons/IconLockClosedFilled.d.ts +4 -0
- package/components/SVGIcons/IconLockClosedFilled.js +33 -0
- package/components/SVGIcons/IconLockOpen.d.ts +4 -0
- package/components/SVGIcons/IconLockOpen.js +33 -0
- package/components/SVGIcons/IconLockOpenFilled.d.ts +4 -0
- package/components/SVGIcons/IconLockOpenFilled.js +33 -0
- package/components/SVGIcons/IconMail.d.ts +4 -0
- package/components/SVGIcons/IconMail.js +33 -0
- package/components/SVGIcons/IconMailAdd.d.ts +4 -0
- package/components/SVGIcons/IconMailAdd.js +33 -0
- package/components/SVGIcons/IconMailAddFilled.d.ts +4 -0
- package/components/SVGIcons/IconMailAddFilled.js +33 -0
- package/components/SVGIcons/IconMailArrowForward.d.ts +4 -0
- package/components/SVGIcons/IconMailArrowForward.js +33 -0
- package/components/SVGIcons/IconMailArrowForwardFilled.d.ts +4 -0
- package/components/SVGIcons/IconMailArrowForwardFilled.js +33 -0
- package/components/SVGIcons/IconMailFilled.d.ts +4 -0
- package/components/SVGIcons/IconMailFilled.js +33 -0
- package/components/SVGIcons/IconMailLink.d.ts +4 -0
- package/components/SVGIcons/IconMailLink.js +33 -0
- package/components/SVGIcons/IconMailLinkFilled.d.ts +4 -0
- package/components/SVGIcons/IconMailLinkFilled.js +33 -0
- package/components/SVGIcons/IconMedium.d.ts +4 -0
- package/components/SVGIcons/IconMedium.js +33 -0
- package/components/SVGIcons/IconMore.d.ts +4 -0
- package/components/SVGIcons/IconMore.js +33 -0
- package/components/SVGIcons/IconMoreFilled.d.ts +4 -0
- package/components/SVGIcons/IconMoreFilled.js +33 -0
- package/components/SVGIcons/IconMoreVertical.d.ts +4 -0
- package/components/SVGIcons/IconMoreVertical.js +33 -0
- package/components/SVGIcons/IconMoreVerticalFilled.d.ts +4 -0
- package/components/SVGIcons/IconMoreVerticalFilled.js +33 -0
- package/components/SVGIcons/IconNavigation.d.ts +4 -0
- package/components/SVGIcons/IconNavigation.js +33 -0
- package/components/SVGIcons/IconNavigationFilled.d.ts +4 -0
- package/components/SVGIcons/IconNavigationFilled.js +33 -0
- package/components/SVGIcons/IconNotebook.d.ts +4 -0
- package/components/SVGIcons/IconNotebook.js +33 -0
- package/components/SVGIcons/IconNotebookAdd.d.ts +4 -0
- package/components/SVGIcons/IconNotebookAdd.js +49 -0
- package/components/SVGIcons/IconNotebookAddFilled.d.ts +4 -0
- package/components/SVGIcons/IconNotebookAddFilled.js +46 -0
- package/components/SVGIcons/IconNotebookFilled.d.ts +4 -0
- package/components/SVGIcons/IconNotebookFilled.js +33 -0
- package/components/SVGIcons/IconOnlyEmployee.d.ts +4 -0
- package/components/SVGIcons/IconOnlyEmployee.js +30 -0
- package/components/SVGIcons/IconOpen.d.ts +4 -0
- package/components/SVGIcons/IconOpen.js +33 -0
- package/components/SVGIcons/IconOpenFilled.d.ts +4 -0
- package/components/SVGIcons/IconOpenFilled.js +33 -0
- package/components/SVGIcons/IconPaintBrush.d.ts +4 -0
- package/components/SVGIcons/IconPaintBrush.js +30 -0
- package/components/SVGIcons/IconPaintBrushFilled.d.ts +4 -0
- package/components/SVGIcons/IconPaintBrushFilled.js +30 -0
- package/components/SVGIcons/IconPatient.d.ts +4 -0
- package/components/SVGIcons/IconPatient.js +30 -0
- package/components/SVGIcons/IconPatientFilled.d.ts +4 -0
- package/components/SVGIcons/IconPatientFilled.js +30 -0
- package/components/SVGIcons/IconPeople.d.ts +4 -0
- package/components/SVGIcons/IconPeople.js +30 -0
- package/components/SVGIcons/IconPeopleAdd.d.ts +4 -0
- package/components/SVGIcons/IconPeopleAdd.js +33 -0
- package/components/SVGIcons/IconPeopleAddFilled.d.ts +4 -0
- package/components/SVGIcons/IconPeopleAddFilled.js +33 -0
- package/components/SVGIcons/IconPeopleFilled.d.ts +4 -0
- package/components/SVGIcons/IconPeopleFilled.js +33 -0
- package/components/SVGIcons/IconPercent.d.ts +4 -0
- package/components/SVGIcons/IconPercent.js +35 -0
- package/components/SVGIcons/IconPerson.d.ts +4 -0
- package/components/SVGIcons/IconPerson.js +33 -0
- package/components/SVGIcons/IconPersonAccount.d.ts +4 -0
- package/components/SVGIcons/IconPersonAccount.js +30 -0
- package/components/SVGIcons/IconPersonAccountFilled.d.ts +4 -0
- package/components/SVGIcons/IconPersonAccountFilled.js +30 -0
- package/components/SVGIcons/IconPersonAdd.d.ts +4 -0
- package/components/SVGIcons/IconPersonAdd.js +33 -0
- package/components/SVGIcons/IconPersonAddFilled.d.ts +4 -0
- package/components/SVGIcons/IconPersonAddFilled.js +33 -0
- package/components/SVGIcons/IconPersonFilled.d.ts +4 -0
- package/components/SVGIcons/IconPersonFilled.js +33 -0
- package/components/SVGIcons/IconPersonStar.d.ts +4 -0
- package/components/SVGIcons/IconPersonStar.js +33 -0
- package/components/SVGIcons/IconPersonStarFilled.d.ts +4 -0
- package/components/SVGIcons/IconPersonStarFilled.js +33 -0
- package/components/SVGIcons/IconPersonSubtract.d.ts +4 -0
- package/components/SVGIcons/IconPersonSubtract.js +33 -0
- package/components/SVGIcons/IconPersonSubtractFilled.d.ts +4 -0
- package/components/SVGIcons/IconPersonSubtractFilled.js +33 -0
- package/components/SVGIcons/IconPhone.d.ts +4 -0
- package/components/SVGIcons/IconPhone.js +33 -0
- package/components/SVGIcons/IconPhoneFilled.d.ts +4 -0
- package/components/SVGIcons/IconPhoneFilled.js +33 -0
- package/components/SVGIcons/IconPos.d.ts +4 -0
- package/components/SVGIcons/IconPos.js +35 -0
- package/components/SVGIcons/IconPosFilled.d.ts +4 -0
- package/components/SVGIcons/IconPosFilled.js +35 -0
- package/components/SVGIcons/IconProhibited.d.ts +4 -0
- package/components/SVGIcons/IconProhibited.js +33 -0
- package/components/SVGIcons/IconProhibitedFilled.d.ts +4 -0
- package/components/SVGIcons/IconProhibitedFilled.js +33 -0
- package/components/SVGIcons/IconProjectProduct.d.ts +4 -0
- package/components/SVGIcons/IconProjectProduct.js +30 -0
- package/components/SVGIcons/IconQuestion.d.ts +4 -0
- package/components/SVGIcons/IconQuestion.js +33 -0
- package/components/SVGIcons/IconQuestionFilled.d.ts +4 -0
- package/components/SVGIcons/IconQuestionFilled.js +33 -0
- package/components/SVGIcons/IconRedo.d.ts +4 -0
- package/components/SVGIcons/IconRedo.js +33 -0
- package/components/SVGIcons/IconRedoFilled.d.ts +4 -0
- package/components/SVGIcons/IconRedoFilled.js +33 -0
- package/components/SVGIcons/IconRu.d.ts +4 -0
- package/components/SVGIcons/IconRu.js +62 -0
- package/components/SVGIcons/IconRub.d.ts +4 -0
- package/components/SVGIcons/IconRub.js +30 -0
- package/components/SVGIcons/IconRubFilled.d.ts +4 -0
- package/components/SVGIcons/IconRubFilled.js +30 -0
- package/components/SVGIcons/IconSave.d.ts +4 -0
- package/components/SVGIcons/IconSave.js +33 -0
- package/components/SVGIcons/IconSaveFilled.d.ts +4 -0
- package/components/SVGIcons/IconSaveFilled.js +33 -0
- package/components/SVGIcons/IconSavings.d.ts +4 -0
- package/components/SVGIcons/IconSavings.js +33 -0
- package/components/SVGIcons/IconSavingsFilled.d.ts +4 -0
- package/components/SVGIcons/IconSavingsFilled.js +33 -0
- package/components/SVGIcons/IconSearch.d.ts +4 -0
- package/components/SVGIcons/IconSearch.js +33 -0
- package/components/SVGIcons/IconSearchFilled.d.ts +4 -0
- package/components/SVGIcons/IconSearchFilled.js +33 -0
- package/components/SVGIcons/IconSelectAllOff.d.ts +4 -0
- package/components/SVGIcons/IconSelectAllOff.js +33 -0
- package/components/SVGIcons/IconSelectAllOffFilled.d.ts +4 -0
- package/components/SVGIcons/IconSelectAllOffFilled.js +33 -0
- package/components/SVGIcons/IconSelectAllOn.d.ts +4 -0
- package/components/SVGIcons/IconSelectAllOn.js +33 -0
- package/components/SVGIcons/IconSelectAllOnFilled.d.ts +4 -0
- package/components/SVGIcons/IconSelectAllOnFilled.js +33 -0
- package/components/SVGIcons/IconSend.d.ts +4 -0
- package/components/SVGIcons/IconSend.js +33 -0
- package/components/SVGIcons/IconSendFilled.d.ts +4 -0
- package/components/SVGIcons/IconSendFilled.js +33 -0
- package/components/SVGIcons/IconSettings.d.ts +4 -0
- package/components/SVGIcons/IconSettings.js +30 -0
- package/components/SVGIcons/IconSettingsFilled.d.ts +4 -0
- package/components/SVGIcons/IconSettingsFilled.js +33 -0
- package/components/SVGIcons/IconShare.d.ts +4 -0
- package/components/SVGIcons/IconShare.js +33 -0
- package/components/SVGIcons/IconShareAndroid.d.ts +4 -0
- package/components/SVGIcons/IconShareAndroid.js +33 -0
- package/components/SVGIcons/IconShareAndroidFilled.d.ts +4 -0
- package/components/SVGIcons/IconShareAndroidFilled.js +33 -0
- package/components/SVGIcons/IconShareFilled.d.ts +4 -0
- package/components/SVGIcons/IconShareFilled.js +33 -0
- package/components/SVGIcons/IconShower.d.ts +4 -0
- package/components/SVGIcons/IconShower.js +30 -0
- package/components/SVGIcons/IconSignOut.d.ts +4 -0
- package/components/SVGIcons/IconSignOut.js +33 -0
- package/components/SVGIcons/IconSignOutFilled.d.ts +4 -0
- package/components/SVGIcons/IconSignOutFilled.js +33 -0
- package/components/SVGIcons/IconSpinner.d.ts +4 -0
- package/components/SVGIcons/IconSpinner.js +33 -0
- package/components/SVGIcons/IconSpinnerFilled.d.ts +4 -0
- package/components/SVGIcons/IconSpinnerFilled.js +33 -0
- package/components/SVGIcons/IconStar.d.ts +4 -0
- package/components/SVGIcons/IconStar.js +30 -0
- package/components/SVGIcons/IconStarFilled.d.ts +4 -0
- package/components/SVGIcons/IconStarFilled.js +30 -0
- package/components/SVGIcons/IconStatus.d.ts +4 -0
- package/components/SVGIcons/IconStatus.js +33 -0
- package/components/SVGIcons/IconStatusFilled.d.ts +4 -0
- package/components/SVGIcons/IconStatusFilled.js +33 -0
- package/components/SVGIcons/IconSubtract.d.ts +4 -0
- package/components/SVGIcons/IconSubtract.js +33 -0
- package/components/SVGIcons/IconSubtractCircle.d.ts +4 -0
- package/components/SVGIcons/IconSubtractCircle.js +33 -0
- package/components/SVGIcons/IconSubtractCircleFilled.d.ts +4 -0
- package/components/SVGIcons/IconSubtractCircleFilled.js +33 -0
- package/components/SVGIcons/IconSubtractFilled.d.ts +4 -0
- package/components/SVGIcons/IconSubtractFilled.js +33 -0
- package/components/SVGIcons/IconTableCellEdit.d.ts +4 -0
- package/components/SVGIcons/IconTableCellEdit.js +37 -0
- package/components/SVGIcons/IconTableCellEditFilled.d.ts +4 -0
- package/components/SVGIcons/IconTableCellEditFilled.js +43 -0
- package/components/SVGIcons/IconTelegram.d.ts +4 -0
- package/components/SVGIcons/IconTelegram.js +42 -0
- package/components/SVGIcons/IconTextBulletListSquarePerson.d.ts +4 -0
- package/components/SVGIcons/IconTextBulletListSquarePerson.js +30 -0
- package/components/SVGIcons/IconTextBulletListSquarePersonFilled.d.ts +4 -0
- package/components/SVGIcons/IconTextBulletListSquarePersonFilled.js +30 -0
- package/components/SVGIcons/IconTextboxSettings.d.ts +4 -0
- package/components/SVGIcons/IconTextboxSettings.js +30 -0
- package/components/SVGIcons/IconTextboxSettingsFilled.d.ts +4 -0
- package/components/SVGIcons/IconTextboxSettingsFilled.js +30 -0
- package/components/SVGIcons/IconTimer.d.ts +4 -0
- package/components/SVGIcons/IconTimer.js +33 -0
- package/components/SVGIcons/IconTimerFilled.d.ts +4 -0
- package/components/SVGIcons/IconTimerFilled.js +33 -0
- package/components/SVGIcons/IconTin.d.ts +4 -0
- package/components/SVGIcons/IconTin.js +39 -0
- package/components/SVGIcons/IconTinFilled.d.ts +4 -0
- package/components/SVGIcons/IconTinFilled.js +42 -0
- package/components/SVGIcons/IconTv.d.ts +4 -0
- package/components/SVGIcons/IconTv.js +30 -0
- package/components/SVGIcons/IconTvFilled.d.ts +4 -0
- package/components/SVGIcons/IconTvFilled.js +30 -0
- package/components/SVGIcons/IconTwitter.d.ts +4 -0
- package/components/SVGIcons/IconTwitter.js +33 -0
- package/components/SVGIcons/IconUndo.d.ts +4 -0
- package/components/SVGIcons/IconUndo.js +33 -0
- package/components/SVGIcons/IconUndoFilled.d.ts +4 -0
- package/components/SVGIcons/IconUndoFilled.js +33 -0
- package/components/SVGIcons/IconUnitsEmployee.d.ts +4 -0
- package/components/SVGIcons/IconUnitsEmployee.js +30 -0
- package/components/SVGIcons/IconUsd.d.ts +4 -0
- package/components/SVGIcons/IconUsd.js +30 -0
- package/components/SVGIcons/IconUsdFilled.d.ts +4 -0
- package/components/SVGIcons/IconUsdFilled.js +30 -0
- package/components/SVGIcons/IconVehicleTruckProfile.d.ts +4 -0
- package/components/SVGIcons/IconVehicleTruckProfile.js +30 -0
- package/components/SVGIcons/IconVehicleTruckProfileFilled.d.ts +4 -0
- package/components/SVGIcons/IconVehicleTruckProfileFilled.js +30 -0
- package/components/SVGIcons/IconVideo.d.ts +4 -0
- package/components/SVGIcons/IconVideo.js +30 -0
- package/components/SVGIcons/IconVideoFilled.d.ts +4 -0
- package/components/SVGIcons/IconVideoFilled.js +30 -0
- package/components/SVGIcons/IconWallet.d.ts +4 -0
- package/components/SVGIcons/IconWallet.js +33 -0
- package/components/SVGIcons/IconWalletFilled.d.ts +4 -0
- package/components/SVGIcons/IconWalletFilled.js +33 -0
- package/components/SVGIcons/IconWarning.d.ts +4 -0
- package/components/SVGIcons/IconWarning.js +30 -0
- package/components/SVGIcons/IconWarningFilled.d.ts +4 -0
- package/components/SVGIcons/IconWarningFilled.js +30 -0
- package/components/SVGIcons/IconWrenchScrewdriver.d.ts +4 -0
- package/components/SVGIcons/IconWrenchScrewdriver.js +30 -0
- package/components/SVGIcons/IconWrenchScrewdriverFilled.d.ts +4 -0
- package/components/SVGIcons/IconWrenchScrewdriverFilled.js +30 -0
- package/components/SVGIcons/IconYoutube.d.ts +4 -0
- package/components/SVGIcons/IconYoutube.js +33 -0
- package/components/SVGIcons/IconZoomIn.d.ts +4 -0
- package/components/SVGIcons/IconZoomIn.js +30 -0
- package/components/SVGIcons/IconZoomInFilled.d.ts +4 -0
- package/components/SVGIcons/IconZoomInFilled.js +30 -0
- package/components/SVGIcons/IconZoomOut.d.ts +4 -0
- package/components/SVGIcons/IconZoomOut.js +30 -0
- package/components/SVGIcons/IconZoomOutFilled.d.ts +4 -0
- package/components/SVGIcons/IconZoomOutFilled.js +30 -0
- package/components/SVGIcons/index.d.ts +338 -0
- package/components/SVGIcons/index.js +342 -0
- package/components/SVGIcons/types.d.ts +18 -0
- package/components/SVGIcons/types.js +1 -0
- package/components/Select/ButtonSelect/ButtonSelect.d.ts +3 -0
- package/components/Select/ButtonSelect/ButtonSelect.js +180 -0
- package/components/Select/FilterSelect/FilterDropdown.d.ts +3 -0
- package/components/Select/FilterSelect/FilterDropdown.js +80 -0
- package/components/Select/FilterSelect/FilterGroupDropdown.d.ts +3 -0
- package/components/Select/FilterSelect/FilterGroupDropdown.js +65 -0
- package/components/Select/FilterSelect/FilterSelect.d.ts +3 -0
- package/components/Select/FilterSelect/FilterSelect.js +195 -0
- package/components/Select/MultiSelect/MultiBase/MultiBase.d.ts +3 -0
- package/components/Select/MultiSelect/MultiBase/MultiBase.js +207 -0
- package/components/Select/MultiSelect/MultiSelect.d.ts +3 -0
- package/components/Select/MultiSelect/MultiSelect.js +227 -0
- package/components/Select/MultiSelect/MultiSelectGrouped/MultiSelectGrouped.d.ts +3 -0
- package/components/Select/MultiSelect/MultiSelectGrouped/MultiSelectGrouped.js +256 -0
- package/components/Select/MultiSelect/MultiSelectWithTabs/MultiSelectWithTabs.d.ts +3 -0
- package/components/Select/MultiSelect/MultiSelectWithTabs/MultiSelectWithTabs.js +244 -0
- package/components/Select/MultiSelect/OptionsWrapper.d.ts +17 -0
- package/components/Select/MultiSelect/OptionsWrapper.js +176 -0
- package/components/Select/NestedSelect/NestedSelect.d.ts +3 -0
- package/components/Select/NestedSelect/NestedSelect.js +190 -0
- package/components/Select/ProfileDropdown/index.d.ts +4 -0
- package/components/Select/ProfileDropdown/index.js +83 -0
- package/components/Select/Select/Select.d.ts +3 -0
- package/components/Select/Select/Select.js +331 -0
- package/components/Select/SharedComponents/Actions.d.ts +8 -0
- package/components/Select/SharedComponents/Actions.js +100 -0
- package/components/Select/SharedComponents/ButtonSelectWrapper/Button/Button.d.ts +15 -0
- package/components/Select/SharedComponents/ButtonSelectWrapper/Button/Button.js +45 -0
- package/components/Select/SharedComponents/ButtonSelectWrapper/ButtonSelectWrapper.d.ts +3 -0
- package/components/Select/SharedComponents/ButtonSelectWrapper/ButtonSelectWrapper.js +102 -0
- package/components/Select/SharedComponents/ContentTop.d.ts +19 -0
- package/components/Select/SharedComponents/ContentTop.js +158 -0
- package/components/Select/SharedComponents/Footer.d.ts +3 -0
- package/components/Select/SharedComponents/Footer.js +67 -0
- package/components/Select/SharedComponents/InputSelectWrapper/InputSelectWrapper.d.ts +3 -0
- package/components/Select/SharedComponents/InputSelectWrapper/InputSelectWrapper.js +154 -0
- package/components/Select/SharedComponents/Loading.d.ts +6 -0
- package/components/Select/SharedComponents/Loading.js +17 -0
- package/components/Select/SharedComponents/index.d.ts +6 -0
- package/components/Select/SharedComponents/index.js +79 -0
- package/components/Select/constants.d.ts +7 -0
- package/components/Select/constants.js +9 -0
- package/components/Select/index.d.ts +5 -0
- package/components/Select/index.js +96 -0
- package/components/Select/types.d.ts +240 -0
- package/components/Select/types.js +1 -0
- package/components/SideNavigation/Block.d.ts +3 -0
- package/components/SideNavigation/Block.js +28 -0
- package/components/SideNavigation/NavigationItem/index.d.ts +3 -0
- package/components/SideNavigation/NavigationItem/index.js +73 -0
- package/components/SideNavigation/NavigationItem/types.d.ts +25 -0
- package/components/SideNavigation/NavigationItem/types.js +11 -0
- package/components/SideNavigation/SideNavigation.d.ts +3 -0
- package/components/SideNavigation/SideNavigation.js +57 -0
- package/components/SideNavigation/index.d.ts +2 -0
- package/components/SideNavigation/index.js +37 -0
- package/components/SideNavigation/types.d.ts +18 -0
- package/components/SideNavigation/types.js +1 -0
- package/components/SideSheet/Footer/Footer.d.ts +16 -0
- package/components/SideSheet/Footer/Footer.js +79 -0
- package/components/SideSheet/SideSheet.d.ts +3 -0
- package/components/SideSheet/SideSheet.js +193 -0
- package/components/SideSheet/index.d.ts +1 -0
- package/components/SideSheet/index.js +38 -0
- package/components/SideSheet/types.d.ts +34 -0
- package/components/SideSheet/types.js +1 -0
- package/components/Snackbar/Snackbar.d.ts +5 -0
- package/components/Snackbar/Snackbar.js +105 -0
- package/components/Snackbar/consts.d.ts +8 -0
- package/components/Snackbar/consts.js +15 -0
- package/components/Snackbar/index.d.ts +1 -0
- package/components/Snackbar/index.js +33 -0
- package/components/Snackbar/types.d.ts +15 -0
- package/components/Snackbar/types.js +1 -0
- package/components/Status/Status.d.ts +3 -0
- package/components/Status/Status.js +48 -0
- package/components/Status/index.d.ts +1 -0
- package/components/Status/index.js +9 -0
- package/components/Status/types.d.ts +14 -0
- package/components/Status/types.js +1 -0
- package/components/Stepper/Stepper.d.ts +3 -0
- package/components/Stepper/Stepper.js +45 -0
- package/components/Stepper/index.d.ts +1 -0
- package/components/Stepper/index.js +3 -0
- package/components/Stepper/types.d.ts +16 -0
- package/components/Stepper/types.js +1 -0
- package/components/Switcher/Switcher.d.ts +3 -0
- package/components/Switcher/Switcher.js +91 -0
- package/components/Switcher/index.d.ts +1 -0
- package/components/Switcher/index.js +29 -0
- package/components/Switcher/types.d.ts +12 -0
- package/components/Switcher/types.js +1 -0
- package/components/Tab/Tab.d.ts +3 -0
- package/components/Tab/Tab.js +45 -0
- package/components/Tab/TabItem.d.ts +3 -0
- package/components/Tab/TabItem.js +58 -0
- package/components/Tab/consts.d.ts +7 -0
- package/components/Tab/consts.js +12 -0
- package/components/Tab/index.d.ts +1 -0
- package/components/Tab/index.js +12 -0
- package/components/Tab/types.d.ts +51 -0
- package/components/Tab/types.js +1 -0
- package/components/Table/Header.d.ts +16 -0
- package/components/Table/Header.js +100 -0
- package/components/Table/IndeterminateCheckbox.d.ts +12 -0
- package/components/Table/IndeterminateCheckbox.js +53 -0
- package/components/Table/Row.d.ts +10 -0
- package/components/Table/Row.js +69 -0
- package/components/Table/Table.d.ts +3 -0
- package/components/Table/Table.js +149 -0
- package/components/Table/index.d.ts +1 -0
- package/components/Table/index.js +42 -0
- package/components/Table/types.d.ts +44 -0
- package/components/Table/types.js +1 -0
- package/components/Table/utils.d.ts +5 -0
- package/components/Table/utils.js +53 -0
- package/components/Text/Text.d.ts +3 -0
- package/components/Text/Text.js +36 -0
- package/components/Text/index.d.ts +1 -0
- package/components/Text/index.js +5 -0
- package/components/Text/types.d.ts +19 -0
- package/components/Text/types.js +1 -0
- package/components/Textarea/Textarea.d.ts +3 -0
- package/components/Textarea/Textarea.js +115 -0
- package/components/Textarea/index.d.ts +1 -0
- package/components/Textarea/index.js +31 -0
- package/components/Textarea/types.d.ts +18 -0
- package/components/Textarea/types.js +1 -0
- package/components/Tooltip/Tooltip.d.ts +3 -0
- package/components/Tooltip/Tooltip.js +103 -0
- package/components/Tooltip/index.d.ts +1 -0
- package/components/Tooltip/index.js +16 -0
- package/components/Tooltip/types.d.ts +21 -0
- package/components/Tooltip/types.js +13 -0
- package/consts/index.d.ts +23 -0
- package/consts/index.js +62 -0
- package/context/FormContextProvider.d.ts +5 -0
- package/context/FormContextProvider.js +12 -0
- package/context/index.d.ts +2 -0
- package/context/index.js +5 -0
- package/context/types.d.ts +21 -0
- package/context/types.js +12 -0
- package/defineProperty-7db32082.js +28 -0
- package/extends-e8ef956f.js +11 -0
- package/helperComponents/AnimatePresenceWrapper/AnimatePresenceWrapper.d.ts +6 -0
- package/helperComponents/AnimatePresenceWrapper/AnimatePresenceWrapper.js +15 -0
- package/helperComponents/AnimatePresenceWrapper/index.d.ts +1 -0
- package/helperComponents/AnimatePresenceWrapper/index.js +3 -0
- package/helperComponents/CodeBlock/CodeBlock.d.ts +8 -0
- package/helperComponents/CodeBlock/CodeBlock.js +178 -0
- package/helperComponents/CodeBlock/index.d.ts +2 -0
- package/helperComponents/CodeBlock/index.js +3 -0
- package/helperComponents/ErrorMessage/ErrorMessage.d.ts +3 -0
- package/helperComponents/ErrorMessage/ErrorMessage.js +27 -0
- package/helperComponents/ErrorMessage/index.d.ts +1 -0
- package/helperComponents/ErrorMessage/index.js +8 -0
- package/helperComponents/ErrorMessage/types.d.ts +7 -0
- package/helperComponents/ErrorMessage/types.js +1 -0
- package/helperComponents/IconDynamicComponent/IconDynamicComponent.d.ts +9 -0
- package/helperComponents/IconDynamicComponent/IconDynamicComponent.js +26 -0
- package/helperComponents/IconDynamicComponent/constants.d.ts +3 -0
- package/helperComponents/IconDynamicComponent/constants.js +34 -0
- package/helperComponents/IconDynamicComponent/index.d.ts +1 -0
- package/helperComponents/IconDynamicComponent/index.js +3 -0
- package/helperComponents/Label/Label.d.ts +3 -0
- package/helperComponents/Label/Label.js +29 -0
- package/helperComponents/Label/index.d.ts +1 -0
- package/helperComponents/Label/index.js +6 -0
- package/helperComponents/Label/types.d.ts +11 -0
- package/helperComponents/Label/types.js +1 -0
- package/helperComponents/Loader/Loader.d.ts +3 -0
- package/helperComponents/Loader/Loader.js +15 -0
- package/helperComponents/Loader/index.d.ts +1 -0
- package/helperComponents/Loader/index.js +2 -0
- package/helperComponents/Loader/types.d.ts +4 -0
- package/helperComponents/Loader/types.js +1 -0
- package/helperComponents/OptionItem/OptionItem.d.ts +3 -0
- package/helperComponents/OptionItem/OptionItem.js +119 -0
- package/helperComponents/OptionItem/index.d.ts +1 -0
- package/helperComponents/OptionItem/index.js +46 -0
- package/helperComponents/OptionItem/types.d.ts +17 -0
- package/helperComponents/OptionItem/types.js +1 -0
- package/helperComponents/index.d.ts +6 -0
- package/helperComponents/index.js +47 -0
- package/hooks/index.d.ts +12 -0
- package/hooks/index.js +19 -0
- package/hooks/useChangePositionsOnScroll.d.ts +6 -0
- package/hooks/useChangePositionsOnScroll.js +42 -0
- package/hooks/useDispatchEventOnScroll.d.ts +1 -0
- package/hooks/useDispatchEventOnScroll.js +12 -0
- package/hooks/useFieldArray.d.ts +1 -0
- package/hooks/useFieldArray.js +1 -0
- package/hooks/useFormContext.d.ts +9 -0
- package/hooks/useFormContext.js +10 -0
- package/hooks/useFormProps.d.ts +2 -0
- package/hooks/useFormProps.js +10 -0
- package/hooks/useGetElemPositions.d.ts +10 -0
- package/hooks/useGetElemPositions.js +19 -0
- package/hooks/useGetElemSizes.d.ts +13 -0
- package/hooks/useGetElemSizes.js +16 -0
- package/hooks/useGetHasBottomSpace.d.ts +11 -0
- package/hooks/useGetHasBottomSpace.js +26 -0
- package/hooks/useGetTooltipPosition.d.ts +1 -0
- package/hooks/useGetTooltipPosition.js +85 -0
- package/hooks/useGetTooltipStyles.d.ts +14 -0
- package/hooks/useGetTooltipStyles.js +89 -0
- package/hooks/useHideBodyScroll.d.ts +1 -0
- package/hooks/useHideBodyScroll.js +35 -0
- package/hooks/useHideOnScroll.d.ts +1 -0
- package/hooks/useHideOnScroll.js +24 -0
- package/hooks/useOnOutsideClick.d.ts +3 -0
- package/hooks/useOnOutsideClick.js +65 -0
- package/hooks/useScreenSize.d.ts +3 -0
- package/hooks/useScreenSize.js +36 -0
- package/index.d.ts +54 -0
- package/index.js +495 -0
- package/objectWithoutProperties-fcd64cc7.js +23 -0
- package/package.json +39 -0
- package/slicedToArray-0c706912.js +55 -0
- package/stories/AdvancedTable.stories.d.ts +8 -0
- package/stories/Alert.stories.d.ts +22 -0
- package/stories/Avatar.stories.d.ts +29 -0
- package/stories/Badge.stories.d.ts +22 -0
- package/stories/Breadcrumb.stories.d.ts +8 -0
- package/stories/Button.stories.d.ts +22 -0
- package/stories/ButtonIcon.stories.d.ts +16 -0
- package/stories/CardBody.stories.d.ts +8 -0
- package/stories/CardSelect.stories.d.ts +24 -0
- package/stories/Cards.stories.d.ts +8 -0
- package/stories/Checkbox.stories.d.ts +9 -0
- package/stories/Chips.stories.d.ts +28 -0
- package/stories/Collapse.stories.d.ts +12 -0
- package/stories/Container.stories.d.ts +8 -0
- package/stories/Copy.stories.d.ts +9 -0
- package/stories/Counter.stories.d.ts +8 -0
- package/stories/DatePicker.stories.d.ts +17 -0
- package/stories/Divider.stories.d.ts +4 -0
- package/stories/Empty.stories.d.ts +16 -0
- package/stories/FileUpload.stories.d.ts +8 -0
- package/stories/Form.stories.d.ts +7 -0
- package/stories/FramedIcon.stories.d.ts +16 -0
- package/stories/Heading.stories.d.ts +36 -0
- package/stories/Image.stories.d.ts +4 -0
- package/stories/Input.stories.d.ts +18 -0
- package/stories/ItemSelect.stories.d.ts +9 -0
- package/stories/Link.stories.d.ts +22 -0
- package/stories/Menu.stories.d.ts +17 -0
- package/stories/Modal.stories.d.ts +23 -0
- package/stories/More.stories.d.ts +7 -0
- package/stories/NavigationItem.stories.d.ts +13 -0
- package/stories/OneTimePassword.stories.d.ts +34 -0
- package/stories/Pagination.stories.d.ts +16 -0
- package/stories/Popover.stories.d.ts +16 -0
- package/stories/Progress.stories.d.ts +23 -0
- package/stories/ProgressStep.stories.d.ts +28 -0
- package/stories/Radio.stories.d.ts +10 -0
- package/stories/SVGIcons.stories.d.ts +29 -0
- package/stories/Select.stories.d.ts +21 -0
- package/stories/SideNavigation.stories.d.ts +9 -0
- package/stories/SideSheet.stories.d.ts +16 -0
- package/stories/Snackbar.stories.d.ts +17 -0
- package/stories/Status.stories.d.ts +22 -0
- package/stories/Stepper.stories.d.ts +7 -0
- package/stories/Switcher.stories.d.ts +16 -0
- package/stories/Tab.stories.d.ts +28 -0
- package/stories/Table.stories.d.ts +8 -0
- package/stories/Text.stories.d.ts +42 -0
- package/stories/Textarea.stories.d.ts +8 -0
- package/stories/Tooltip.stories.d.ts +22 -0
- package/toConsumableArray-e0031ed3.js +19 -0
- package/typeof-ecd92d7f.js +11 -0
- package/types.d.js +1 -0
- package/utils/helpers.d.ts +15 -0
- package/utils/helpers.js +86 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconFilter = function IconFilter(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25
|
+
d: "M13.5 16C13.9142 16 14.25 16.3358 14.25 16.75C14.25 17.1642 13.9142 17.5 13.5 17.5H10.5C10.0858 17.5 9.75 17.1642 9.75 16.75C9.75 16.3358 10.0858 16 10.5 16H13.5ZM16.5 11C16.9142 11 17.25 11.3358 17.25 11.75C17.25 12.1642 16.9142 12.5 16.5 12.5H7.5C7.08579 12.5 6.75 12.1642 6.75 11.75C6.75 11.3358 7.08579 11 7.5 11H16.5ZM19.5 6C19.9142 6 20.25 6.33579 20.25 6.75C20.25 7.16421 19.9142 7.5 19.5 7.5H4.5C4.08579 7.5 3.75 7.16421 3.75 6.75C3.75 6.33579 4.08579 6 4.5 6H19.5Z",
|
|
26
|
+
fill: "#222222"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconFilter, IconFilter as default };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconFilterFilled = function IconFilterFilled(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25
|
+
d: "M10 16H14C14.5523 16 15 16.4477 15 17C15 17.5128 14.614 17.9355 14.1166 17.9933L14 18H10C9.44772 18 9 17.5523 9 17C9 16.4872 9.38604 16.0645 9.88338 16.0067L10 16H14H10ZM8 11H16C16.5523 11 17 11.4477 17 12C17 12.5128 16.614 12.9355 16.1166 12.9933L16 13H8C7.44772 13 7 12.5523 7 12C7 11.4872 7.38604 11.0645 7.88338 11.0067L8 11H16H8ZM5 6H19C19.5523 6 20 6.44772 20 7C20 7.51284 19.614 7.93551 19.1166 7.99327L19 8H5C4.44772 8 4 7.55228 4 7C4 6.48716 4.38604 6.06449 4.88338 6.00673L5 6H19H5Z",
|
|
26
|
+
fill: "#222222"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconFilterFilled, IconFilterFilled as default };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconFlag = function IconFlag(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
25
|
+
id: "Size=24, Theme=Regular"
|
|
26
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
id: "Shape",
|
|
28
|
+
d: "M3 3.74805C3 3.33383 3.33579 2.99805 3.75 2.99805H20.2541C20.8722 2.99805 21.225 3.70369 20.8541 4.19811L16.6898 9.74927L20.8541 15.3004C21.225 15.7948 20.8722 16.5005 20.2541 16.5005L4.5 16.5V21.2499C4.5 21.6296 4.21785 21.9434 3.85177 21.993L3.75 21.9999C3.3703 21.9999 3.05651 21.7177 3.00685 21.3517L3 21.2499V3.74805ZM18.7539 4.49805H4.5V15.0005H18.7539L15.1522 10.1993C14.9522 9.93264 14.9522 9.5659 15.1522 9.29921L18.7539 4.49805Z",
|
|
29
|
+
fill: "#222222"
|
|
30
|
+
})));
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export { IconFlag, IconFlag as default };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconFlagFilled = function IconFlagFilled(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
25
|
+
id: "Size=24, Theme=Filled"
|
|
26
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
id: "Shape",
|
|
28
|
+
d: "M3 3.74805C3 3.33383 3.33579 2.99805 3.75 2.99805H20.2541C20.8722 2.99805 21.225 3.70369 20.8541 4.19811L16.6898 9.74927L20.8541 15.3004C21.225 15.7948 20.8722 16.5005 20.2541 16.5005L4.5 16.5V21.2499C4.5 21.6296 4.21785 21.9434 3.85177 21.993L3.75 21.9999C3.3703 21.9999 3.05651 21.7177 3.00685 21.3517L3 21.2499V3.74805Z",
|
|
29
|
+
fill: "#222222"
|
|
30
|
+
})));
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export { IconFlagFilled, IconFlagFilled as default };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconFlash = function IconFlash(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25
|
+
d: "M7.42505 2.83052C7.60245 2.33254 8.07392 2 8.60256 2H15.0562C15.9094 2 16.5118 2.83587 16.242 3.64528L14.7905 8H18.7492C19.8534 8 20.4153 9.32683 19.647 10.1198L8.586 21.536C7.53226 22.6236 5.71405 21.6422 6.04495 20.1645L7.31418 14.4964L5.74573 14.4904C4.53898 14.4858 3.69895 13.2899 4.10392 12.1532L7.42505 2.83052ZM8.77889 3.5L5.51693 12.6565C5.45908 12.8189 5.57909 12.9898 5.75148 12.9904L8.25277 13C8.47997 13.0009 8.69453 13.1047 8.83621 13.2823C8.97789 13.4599 9.03142 13.6922 8.98177 13.9139L7.50871 20.4923L18.1589 9.5H13.7499C13.5088 9.5 13.2824 9.38411 13.1415 9.18853C13.0005 8.99296 12.9622 8.74154 13.0384 8.51283L14.7093 3.5H8.77889Z",
|
|
26
|
+
fill: "#222222"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconFlash, IconFlash as default };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconFlashFilled = function IconFlashFilled(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25
|
+
d: "M7.42505 2.83052C7.60245 2.33254 8.07392 2 8.60256 2H15.0562C15.9094 2 16.5118 2.83587 16.242 3.64528L14.7905 8H18.7492C19.8534 8 20.4153 9.32682 19.647 10.1198L8.586 21.536C7.53226 22.6236 5.71405 21.6422 6.04495 20.1645L7.31418 14.4964L5.74573 14.4904C4.53898 14.4858 3.69895 13.2899 4.10392 12.1532L7.42505 2.83052Z",
|
|
26
|
+
fill: "#222222"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconFlashFilled, IconFlashFilled as default };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconFolderLink = function IconFolderLink(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25
|
+
d: "M18.25 14.5C20.3211 14.5 22 16.1789 22 18.25C22 20.2543 20.4276 21.8913 18.4523 21.9948L18.2534 22L17.2534 22.0046C16.8392 22.0065 16.5019 21.6722 16.5 21.258C16.4983 20.8783 16.779 20.5633 17.1448 20.5119L17.2466 20.5046L18.25 20.5C19.4926 20.5 20.5 19.4926 20.5 18.25C20.5 17.0591 19.5748 16.0844 18.404 16.0052L18.25 16H17.25C16.8358 16 16.5 15.6642 16.5 15.25C16.5 14.8703 16.7822 14.5565 17.1482 14.5068L17.25 14.5H18.25ZM13.75 14.5C14.1642 14.5 14.5 14.8358 14.5 15.25C14.5 15.6297 14.2178 15.9435 13.8518 15.9932L13.75 16H12.75C11.5074 16 10.5 17.0074 10.5 18.25C10.5 19.4409 11.4252 20.4156 12.596 20.4948L12.75 20.5H13.75C14.1642 20.5 14.5 20.8358 14.5 21.25C14.5 21.6297 14.2178 21.9435 13.8518 21.9932L13.75 22H12.75C10.6789 22 9 20.3211 9 18.25C9 16.2457 10.5724 14.6087 12.5508 14.5052L12.75 14.5H13.75ZM8.20693 4C8.66749 4 9.1153 4.14129 9.49094 4.40235L9.64734 4.5215L12.022 6.5H19.75C20.8867 6.5 21.8266 7.34297 21.9785 8.43788L21.9948 8.59595L22 8.75L22.0008 15.3352C21.5959 14.8148 21.085 14.3809 20.5005 14.0659L20.5 8.75C20.5 8.3703 20.2178 8.05651 19.8518 8.00685L19.75 8H12.021L9.64734 9.9785C9.29353 10.2733 8.85906 10.4515 8.40335 10.4914L8.20693 10.5L3.5 10.499V17.75C3.5 18.1297 3.78215 18.4435 4.14823 18.4932L4.25 18.5L8.0065 18.5006C8.03392 19.0282 8.14742 19.5329 8.33322 20.0012L4.25 20C3.05914 20 2.08436 19.0748 2.00519 17.904L2 17.75V6.25C2 5.05914 2.92516 4.08436 4.09595 4.00519L4.25 4H8.20693ZM18.25 17.5C18.6642 17.5 19 17.8358 19 18.25C19 18.6297 18.7178 18.9435 18.3518 18.9932L18.25 19H12.75C12.3358 19 12 18.6642 12 18.25C12 17.8703 12.2822 17.5565 12.6482 17.5068L12.75 17.5H18.25ZM8.20693 5.5H4.25C3.8703 5.5 3.55651 5.78215 3.50685 6.14823L3.5 6.25V8.999L8.20693 9C8.34729 9 8.4841 8.96063 8.60221 8.88738L8.68706 8.82617L10.578 7.249L8.68706 5.67383C8.57923 5.58398 8.44893 5.52664 8.31129 5.5073L8.20693 5.5Z",
|
|
26
|
+
fill: "#222222"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconFolderLink, IconFolderLink as default };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconFolderLinkFilled = function IconFolderLinkFilled(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25
|
+
d: "M18.25 14.5C20.3211 14.5 22 16.1789 22 18.25C22 20.2543 20.4276 21.8913 18.4523 21.9948L18.2534 22L17.2534 22.0046C16.8392 22.0065 16.5019 21.6722 16.5 21.258C16.4983 20.8783 16.779 20.5633 17.1448 20.5119L17.2466 20.5046L18.25 20.5C19.4926 20.5 20.5 19.4926 20.5 18.25C20.5 17.0591 19.5748 16.0844 18.404 16.0052L18.25 16H17.25C16.8358 16 16.5 15.6642 16.5 15.25C16.5 14.8703 16.7822 14.5565 17.1482 14.5068L17.25 14.5H18.25ZM13.75 14.5C14.1642 14.5 14.5 14.8358 14.5 15.25C14.5 15.6297 14.2178 15.9435 13.8518 15.9932L13.75 16H12.75C11.5074 16 10.5 17.0074 10.5 18.25C10.5 19.4409 11.4252 20.4156 12.596 20.4948L12.75 20.5H13.75C14.1642 20.5 14.5 20.8358 14.5 21.25C14.5 21.6297 14.2178 21.9435 13.8518 21.9932L13.75 22H12.75C10.6789 22 9 20.3211 9 18.25C9 16.2457 10.5724 14.6087 12.5508 14.5052L12.75 14.5H13.75ZM19.75 6.5C20.8867 6.5 21.8266 7.34297 21.9785 8.43788L21.9948 8.59595L22 8.75L22.0008 15.3352C21.1317 14.2184 19.7748 13.5 18.25 13.5H12.75C10.1266 13.5 8 15.6266 8 18.25C8 18.8684 8.11819 19.4593 8.33322 20.0012L4.25 20C3.05914 20 2.08436 19.0748 2.00519 17.904L2 17.75V10.499L8.20693 10.5L8.40335 10.4914C8.79396 10.4572 9.16896 10.3214 9.49094 10.0977L9.64734 9.9785L13.821 6.5H19.75ZM18.25 17.5C18.6642 17.5 19 17.8358 19 18.25C19 18.6297 18.7178 18.9435 18.3518 18.9932L18.25 19H12.75C12.3358 19 12 18.6642 12 18.25C12 17.8703 12.2822 17.5565 12.6482 17.5068L12.75 17.5H18.25ZM8.20693 4C8.66749 4 9.1153 4.14129 9.49094 4.40235L9.64734 4.5215L11.75 6.273L8.68706 8.82617L8.60221 8.88738C8.51363 8.94232 8.41452 8.9782 8.31129 8.9927L8.20693 9L2 8.999V6.25C2 5.05914 2.92516 4.08436 4.09595 4.00519L4.25 4H8.20693Z",
|
|
26
|
+
fill: "#222222"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconFolderLinkFilled, IconFolderLinkFilled as default };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconGas = function IconGas(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25
|
+
d: "M10.8834 7.15793C11.3219 5.3873 12.3054 4.08594 13.7988 2.91001C13.9432 4.7413 14.8677 6.06794 15.8245 7.38867C15.8245 7.38877 15.8246 7.38888 15.8247 7.38898L16.377 8.15326C17.3913 9.57752 18.3596 11.1504 18.6036 13.4476L18.6397 13.8726C18.6524 14.0623 18.672 14.3799 18.672 14.5022C18.672 18.2099 15.7836 21.2179 12.2207 21.337L11.9948 21.3406C8.3337 21.3377 5.32923 18.2855 5.32823 14.5041C5.32823 14.5035 5.32823 14.5029 5.32823 14.5022L5.3294 14.3028L5.33657 14.0998L5.33658 14.0998L5.33672 14.095C5.39337 12.0749 5.90537 10.869 6.36598 10.1815C6.59349 9.84196 6.81483 9.61942 6.97625 9.48331C6.99429 9.52416 7.01485 9.569 7.03804 9.61717C7.13807 9.82503 7.29043 10.1025 7.50365 10.3934C7.92527 10.9687 8.62539 11.6495 9.67411 11.8786L10.4735 12.0532L10.4836 11.2351L10.4898 10.7356C10.5104 9.68577 10.5897 8.34775 10.8834 7.15793Z",
|
|
26
|
+
stroke: "#222222"
|
|
27
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
28
|
+
d: "M11.4604 16.0982L11.4581 15.956L11.4585 15.7117L11.469 15.5206C11.484 15.3532 11.5153 15.1809 11.5755 14.9597C11.6101 14.8335 11.7042 14.6514 11.9146 14.4006C12.12 14.1558 12.4123 13.8735 12.8052 13.5429L12.835 13.5211C12.8428 13.5173 12.853 13.5136 12.8656 13.5111C12.9052 13.5032 12.9404 13.5115 12.962 13.5234C12.9656 13.5254 12.9683 13.5272 12.9703 13.5286L13.0157 13.7046L13.0157 13.7046L13.0179 13.7127C13.1142 14.0652 13.2139 14.3701 13.315 14.6202C13.4121 14.8605 13.5251 15.0873 13.6604 15.2562L13.6604 15.2562L13.6641 15.2607L14.0794 15.7685L14.2432 15.9795C14.6139 16.4771 14.7359 16.8048 14.7359 17.1668C14.7359 18.4842 13.5621 19.647 12 19.647C10.4391 19.647 9.26594 18.4862 9.26406 17.17L9.26531 17.059L9.27559 16.8527C9.30026 16.4995 9.36677 16.2931 9.53687 15.9647L9.54868 15.9458C9.55224 15.9431 9.55816 15.9394 9.56718 15.9357C9.5976 15.9233 9.63493 15.922 9.66753 15.9325C9.68717 15.9387 9.69577 15.9458 9.69833 15.9483L9.70283 15.9568L9.70952 15.9682L9.76248 16.0582L9.76973 16.0705L9.77756 16.0825C10.004 16.4286 10.329 16.6329 10.7477 16.6986L10.7676 16.7018L10.7877 16.7036L10.8074 16.7053L11.4709 16.7642L11.4604 16.0982ZM12.9748 13.5325C12.9748 13.5326 12.9745 13.5322 12.974 13.5316C12.9746 13.5322 12.9749 13.5325 12.9748 13.5325Z",
|
|
29
|
+
stroke: "#222222"
|
|
30
|
+
}));
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export { IconGas, IconGas as default };
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconGb = function IconGb(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
_ref$className = _ref.className,
|
|
9
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
10
|
+
onClick = _ref.onClick,
|
|
11
|
+
refHandler = _ref.refHandler,
|
|
12
|
+
id = _ref.id,
|
|
13
|
+
dataId = _ref.dataId;
|
|
14
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
15
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), className, className)),
|
|
17
|
+
viewBox: "0 0 24 24",
|
|
18
|
+
fill: "none",
|
|
19
|
+
onClick: onClick,
|
|
20
|
+
ref: refHandler,
|
|
21
|
+
id: id,
|
|
22
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
23
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
24
|
+
y: "3.42999",
|
|
25
|
+
width: "24",
|
|
26
|
+
height: "17.1429",
|
|
27
|
+
rx: "2",
|
|
28
|
+
fill: "white"
|
|
29
|
+
}), /*#__PURE__*/React.createElement("mask", {
|
|
30
|
+
id: "mask0_1993_2165",
|
|
31
|
+
style: {
|
|
32
|
+
maskType: 'luminance'
|
|
33
|
+
},
|
|
34
|
+
maskUnits: "userSpaceOnUse",
|
|
35
|
+
x: "0",
|
|
36
|
+
y: "3",
|
|
37
|
+
width: "24",
|
|
38
|
+
height: "18"
|
|
39
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
40
|
+
y: "3.42999",
|
|
41
|
+
width: "24",
|
|
42
|
+
height: "17.1429",
|
|
43
|
+
rx: "2",
|
|
44
|
+
fill: "white"
|
|
45
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
46
|
+
mask: "url(#mask0_1993_2165)"
|
|
47
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
48
|
+
y: "3.42999",
|
|
49
|
+
width: "24",
|
|
50
|
+
height: "17.1429",
|
|
51
|
+
fill: "#0A17A7"
|
|
52
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
53
|
+
d: "M-1.09929 1.78735L9.14287 8.69577V2.28718H14.8572V8.69573L25.0992 1.78736L26.3774 3.6823L18.2796 9.14432H24V14.8586H18.2796L26.3774 20.3206L25.0992 22.2155L14.8572 15.3072V21.7157H9.14287V15.3071L-1.09928 22.2156L-2.37744 20.3206L5.72032 14.8586H7.62939e-06V9.14432H5.72034L-2.37744 3.6823L-1.09929 1.78735Z",
|
|
54
|
+
fill: "white"
|
|
55
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
56
|
+
d: "M27.1356 1.53249C27.2368 1.68629 27.1942 1.89299 27.0404 1.99417L16.1843 9.13605C16.0305 9.23723 15.8238 9.19457 15.7227 9.04078C15.6215 8.88698 15.6641 8.68028 15.8179 8.5791L26.674 1.43722C26.8277 1.33604 27.0344 1.3787 27.1356 1.53249Z",
|
|
57
|
+
fill: "#DB1F35"
|
|
58
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
59
|
+
d: "M27.1621 21.9165C27.265 21.7639 27.2247 21.5567 27.072 21.4538L17.3401 14.8943C17.1875 14.7914 16.9803 14.8317 16.8774 14.9844C16.7745 15.137 16.8149 15.3442 16.9675 15.4471L26.6994 22.0066C26.852 22.1095 27.0592 22.0692 27.1621 21.9165Z",
|
|
60
|
+
fill: "#DB1F35"
|
|
61
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
62
|
+
d: "M-3.56564 1.81145C-3.46276 1.65878 -3.25559 1.61843 -3.10293 1.72132L7.04823 8.56255C7.20089 8.66544 7.24124 8.8726 7.13836 9.02526C7.03547 9.17792 6.82831 9.21828 6.67565 9.11539L-3.47551 2.27415C-3.62817 2.17127 -3.66853 1.96411 -3.56564 1.81145Z",
|
|
63
|
+
fill: "#DB1F35"
|
|
64
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
65
|
+
d: "M-3.56702 22.7375C-3.46528 22.8909 -3.25842 22.9328 -3.105 22.831L8.14717 15.3691C8.30059 15.2674 8.34249 15.0605 8.24074 14.9071C8.139 14.7537 7.93214 14.7118 7.77872 14.8135L-3.47344 22.2754C-3.62687 22.3772 -3.66876 22.584 -3.56702 22.7375Z",
|
|
66
|
+
fill: "#DB1F35"
|
|
67
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
68
|
+
d: "M0 13.7157H10.2857V20.5728H13.7143V13.7157H24V10.2871H13.7143V3.42999H10.2857V10.2871H0V13.7157Z",
|
|
69
|
+
fill: "#E6273E"
|
|
70
|
+
})));
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
export { IconGb, IconGb as default };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconGlobe = function IconGlobe(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25
|
+
d: "M12.0001 1.99902C17.5238 1.99902 22.0016 6.47687 22.0016 12.0006C22.0016 17.5243 17.5238 22.0021 12.0001 22.0021C6.47638 22.0021 1.99854 17.5243 1.99854 12.0006C1.99854 6.47687 6.47638 1.99902 12.0001 1.99902ZM14.939 16.5003H9.06118C9.71322 18.9144 10.8466 20.5021 12.0001 20.5021C13.1536 20.5021 14.287 18.9144 14.939 16.5003ZM7.5084 16.5009L4.78591 16.5007C5.74425 18.0338 7.1777 19.2394 8.88008 19.9114C8.3578 19.0915 7.92681 18.0653 7.60981 16.8959L7.5084 16.5009ZM19.2143 16.5007L16.4918 16.5009C16.168 17.8346 15.7004 19.0004 15.119 19.9114C16.716 19.2814 18.0757 18.1824 19.0291 16.7843L19.2143 16.5007ZM7.09351 9.99992H3.7359L3.73115 10.0171C3.57906 10.6535 3.49854 11.3176 3.49854 12.0006C3.49854 13.0567 3.69112 14.0679 4.0431 15.0009L7.21626 15.0005C7.07396 14.0514 6.99854 13.0432 6.99854 12.0006C6.99854 11.3166 7.031 10.6474 7.09351 9.99992ZM15.397 9.99999H8.60316C8.53514 10.6403 8.49853 11.31 8.49853 12.0006C8.49853 13.0601 8.58468 14.0704 8.73827 15.0007H15.2619C15.4155 14.0704 15.5016 13.0601 15.5016 12.0006C15.5016 11.31 15.465 10.6403 15.397 9.99999ZM20.2647 9.99909L16.9067 9.99994C16.9692 10.6474 17.0016 11.3166 17.0016 12.0006C17.0016 13.0432 16.9262 14.0514 16.7839 15.0005L19.9571 15.0009C20.309 14.0679 20.5016 13.0567 20.5016 12.0006C20.5016 11.3112 20.4196 10.6409 20.2647 9.99909ZM8.88114 4.08973L8.85823 4.09844C6.81092 4.91315 5.1549 6.50046 4.25023 8.50033L7.29835 8.50069C7.61171 6.7479 8.15855 5.22198 8.88114 4.08973ZM12.0001 3.49902L11.8844 3.50432C10.619 3.62008 9.39651 5.62205 8.8288 8.50027H15.1714C14.6052 5.63011 13.388 3.63131 12.1264 3.50534L12.0001 3.49902ZM15.1201 4.08979L15.2269 4.26388C15.8961 5.37635 16.4043 6.83623 16.7018 8.50069L19.7499 8.50033C18.8853 6.58892 17.3343 5.05439 15.4113 4.21106L15.1201 4.08979Z",
|
|
26
|
+
fill: "#222222"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconGlobe, IconGlobe as default };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconGlobeFilled = function IconGlobeFilled(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25
|
+
d: "M8.90435 16.5008H15.0958C14.4759 19.7722 13.2345 21.999 12.0001 21.999C10.8031 21.999 9.59951 19.9051 8.9624 16.7953L8.90435 16.5008H15.0958H8.90435ZM3.06589 16.501L7.37153 16.5008C7.7363 18.583 8.35458 20.3545 9.16372 21.5942C6.60088 20.8373 4.46722 19.0825 3.21224 16.7799L3.06589 16.501ZM16.6286 16.5008L20.9343 16.501C19.703 18.9406 17.5018 20.8071 14.8375 21.5939C15.592 20.4362 16.1807 18.8162 16.5524 16.9129L16.6286 16.5008L20.9343 16.501L16.6286 16.5008ZM16.9315 10.0008L21.8016 10.0002C21.9328 10.6465 22.0016 11.3155 22.0016 12.0005C22.0016 13.0458 21.8413 14.0537 21.5438 15.0009H16.8412C16.9465 14.0433 17.0016 13.0372 17.0016 12.0005C17.0016 11.5462 16.991 11.0977 16.9703 10.6567L16.9315 10.0008L21.8016 10.0002L16.9315 10.0008ZM2.1986 10.0002L7.06862 10.0008C7.02238 10.6508 6.99854 11.319 6.99854 12.0005C6.99854 12.8299 7.03385 13.6396 7.10188 14.4207L7.159 15.0009H2.45637C2.1589 14.0537 1.99854 13.0458 1.99854 12.0005C1.99854 11.3155 2.0674 10.6465 2.1986 10.0002ZM8.57558 10.0002H15.4246C15.4748 10.6459 15.5016 11.3147 15.5016 12.0005C15.5016 12.8381 15.4617 13.6505 15.3878 14.4262L15.3261 15.0009H8.67404C8.56099 14.0551 8.49853 13.0476 8.49853 12.0005C8.49853 11.4862 8.51361 10.9814 8.54234 10.4887L8.57558 10.0002H15.4246H8.57558ZM14.9444 2.57707L14.8365 2.40684C17.8548 3.29781 20.2788 5.57442 21.372 8.50016L16.7811 8.50045C16.4656 6.08353 15.8246 4.00785 14.9444 2.57707L14.8365 2.40684L14.9444 2.57707ZM9.04186 2.44365L9.16364 2.40688C8.28288 3.75639 7.62827 5.736 7.28061 8.06062L7.21905 8.50045L2.62816 8.50016C3.70663 5.6139 6.08022 3.35936 9.04186 2.44365L9.16364 2.40688L9.04186 2.44365ZM12.0001 2.00195C13.3189 2.00195 14.6457 4.5437 15.2141 8.1854L15.2609 8.5002H8.73926C9.27868 4.69102 10.6436 2.00195 12.0001 2.00195Z",
|
|
26
|
+
fill: "#222222"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconGlobeFilled, IconGlobeFilled as default };
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconGoogle = function IconGoogle(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
25
|
+
id: "Company=Google, Style=Gray, Background=None",
|
|
26
|
+
clipPath: "url(#clip0_697_1766)"
|
|
27
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
28
|
+
id: "Union",
|
|
29
|
+
fillRule: "evenodd",
|
|
30
|
+
clipRule: "evenodd",
|
|
31
|
+
d: "M16.8426 6.54794C15.6036 5.36623 13.9501 4.72247 12.2392 4.74893C9.10863 4.74893 6.44981 6.86098 5.5018 9.70498V9.70505C4.99913 11.1954 4.99913 12.8092 5.50179 14.2996H5.50619C6.45861 17.1392 9.11303 19.2512 12.2437 19.2512C13.8597 19.2512 15.247 18.8379 16.3223 18.1078V18.1048C17.5878 17.2671 18.452 15.9487 18.721 14.4583H12.2393V9.83734H23.558C23.6991 10.6398 23.7653 11.46 23.7653 12.2757C23.7653 15.9255 22.4609 19.0113 20.1913 21.1013L20.1937 21.1032C18.2051 22.9374 15.4757 24.0001 12.2392 24.0001C7.70204 24.0001 3.55286 21.4427 1.51575 17.3905V17.3905C-0.186243 13.9997 -0.186239 10.0049 1.51576 6.61411H1.51579L1.51575 6.61408C3.55286 2.55749 7.70204 7.62441e-05 12.2392 7.62441e-05C15.22 -0.0351984 18.0992 1.08477 20.2686 3.12188L16.8426 6.54794Z",
|
|
32
|
+
fill: "#555555"
|
|
33
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
34
|
+
id: "clip0_697_1766"
|
|
35
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
36
|
+
width: "24",
|
|
37
|
+
height: "24",
|
|
38
|
+
fill: "white"
|
|
39
|
+
}))));
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
export { IconGoogle, IconGoogle as default };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-ecd92d7f.js';
|
|
5
|
+
|
|
6
|
+
var IconHandOpenHeart = function IconHandOpenHeart(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
25
|
+
id: "Size=24, Theme=Regular"
|
|
26
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
id: "Shape",
|
|
28
|
+
d: "M17.3991 3.60329L16.6453 3.01221C15.4027 2.03792 13.6067 2.24915 12.624 3.48515C11.7454 4.59021 11.8 6.16984 12.7527 7.21165L16.9564 11.8085C17.1942 12.0686 17.604 12.0686 17.8419 11.8085L22.0459 7.2111C22.9983 6.16954 23.053 4.59039 22.1749 3.48543C21.1926 2.24928 19.3967 2.03769 18.154 3.01168L17.3991 3.60329ZM19.0556 15.7079L18.0662 13.0761C18.3103 12.979 18.5372 12.8264 18.7275 12.6183L19.0344 12.2827L20.1596 15.2759C20.4104 15.951 20.453 16.6857 20.2819 17.3853C20.1108 18.0848 19.7338 18.7169 19.1996 19.1999L17.7356 20.5199C17.0022 21.17 16.0515 21.5212 15.0716 21.5039C14.4541 21.5008 13.8429 21.3786 13.2716 21.1439C10.6513 20.1294 7.86134 19.6244 5.05162 19.6559C4.79084 19.6634 4.53286 19.6005 4.3048 19.4738C4.07675 19.3471 3.88704 19.1613 3.75562 18.9359C3.6503 18.7535 3.59485 18.5466 3.59485 18.3359C3.59485 18.1253 3.6503 17.9183 3.75562 17.7359C4.14364 17.1947 4.63505 16.7358 5.20147 16.3857C5.76788 16.0355 6.39807 15.8011 7.05562 15.6959L2.90362 11.5559C2.7291 11.382 2.59063 11.1753 2.49615 10.9478C2.40166 10.7202 2.35303 10.4763 2.35303 10.2299C2.35303 9.98353 2.40166 9.73957 2.49615 9.51202C2.59063 9.28448 2.7291 9.07782 2.90362 8.90391C3.06767 8.74385 3.25858 8.61387 3.46762 8.51991C3.17867 8.2141 3.00116 7.81987 2.96373 7.40081C2.92629 6.98176 3.03111 6.5623 3.26128 6.21012C3.49144 5.85794 3.83354 5.59356 4.23238 5.45962C4.63122 5.32569 5.06355 5.33002 5.45962 5.47191C5.54309 5.18445 5.70029 4.92382 5.91562 4.71591C6.08851 4.54175 6.29416 4.40353 6.5207 4.30921C6.74725 4.21489 6.99022 4.16633 7.23562 4.16633C7.48102 4.16633 7.724 4.21489 7.95054 4.30921C8.17709 4.40353 8.38273 4.54175 8.55562 4.71591C8.64945 4.5032 8.77937 4.30833 8.93962 4.13991C9.29393 3.79323 9.76992 3.5991 10.2656 3.5991C10.5505 3.5991 10.8289 3.66322 11.0814 3.78357C10.9271 4.17631 10.8364 4.5873 10.8089 5.00119L10.7996 4.99191C10.666 4.85824 10.4847 4.78314 10.2956 4.78314C10.202 4.78314 10.1093 4.80158 10.0229 4.8374C9.93638 4.87322 9.85781 4.92572 9.79162 4.99191C9.72544 5.05809 9.67294 5.13667 9.63712 5.22314C9.60129 5.30962 9.58286 5.40231 9.58286 5.49591C9.58286 5.68494 9.65795 5.86624 9.79162 5.99991L10.6316 6.77991L12.2196 8.40694L13.7214 10.0492C13.7347 10.0982 13.7414 10.1489 13.7414 10.1999C13.7414 10.2786 13.7253 10.3565 13.694 10.4287C13.6628 10.501 13.617 10.566 13.5596 10.6199C13.5058 10.6773 13.4407 10.7231 13.3685 10.7543C13.2962 10.7856 13.2183 10.8017 13.1396 10.8017C13.0609 10.8017 12.983 10.7856 12.9108 10.7543C12.8386 10.7231 12.7735 10.6773 12.7196 10.6199L9.71962 7.63191L8.87962 6.79191L7.67962 5.51991C7.55021 5.39665 7.37834 5.32791 7.19962 5.32791C7.02091 5.32791 6.84904 5.39665 6.71962 5.51991C6.59357 5.64787 6.52292 5.82029 6.52292 5.99991C6.52292 6.17953 6.59357 6.35194 6.71962 6.47991L10.0196 9.77991C10.131 9.8913 10.1936 10.0424 10.1936 10.1999C10.1936 10.3574 10.131 10.5085 10.0196 10.6199C9.90823 10.7313 9.75715 10.7939 9.59962 10.7939C9.44209 10.7939 9.29101 10.7313 9.17962 10.6199L6.94762 8.39991L5.26762 6.71991C5.1417 6.5946 4.97127 6.52426 4.79362 6.52426C4.61597 6.52426 4.44555 6.5946 4.31962 6.71991C4.19357 6.84787 4.12292 7.02029 4.12292 7.19991C4.12292 7.37953 4.19357 7.55194 4.31962 7.67991L5.60362 8.95191L8.21962 11.5799C8.33101 11.6913 8.39359 11.8424 8.39359 11.9999C8.39359 12.1574 8.33101 12.3085 8.21962 12.4199C8.10823 12.5313 7.95715 12.5939 7.79962 12.5939C7.64209 12.5939 7.49101 12.5313 7.37962 12.4199L5.99962 11.0519L4.75162 9.80391C4.6257 9.6786 4.45527 9.60826 4.27762 9.60826C4.09997 9.60826 3.92955 9.6786 3.80362 9.80391C3.73855 9.86312 3.68673 9.93543 3.65157 10.0161C3.61641 10.0967 3.59871 10.1839 3.59962 10.2719C3.59317 10.3695 3.60808 10.4672 3.64332 10.5584C3.67855 10.6496 3.73326 10.732 3.80362 10.7999L8.83162 15.7799C8.91455 15.8645 8.97057 15.9718 8.99264 16.0881C9.01471 16.2045 9.00184 16.3248 8.95564 16.4339C8.90944 16.543 8.83199 16.636 8.73304 16.7011C8.63409 16.7662 8.51808 16.8006 8.39962 16.7999C8.39962 16.7999 5.81962 16.7999 4.81162 18.4199C4.81162 18.4679 4.90762 18.5519 5.05162 18.5519C5.10744 18.5455 5.16381 18.5455 5.21962 18.5519C8.13206 18.5482 11.0203 19.0811 13.7396 20.1239C14.2547 20.3663 14.828 20.4577 15.3929 20.3877C15.9579 20.3176 16.4914 20.0888 16.9316 19.7279L18.4316 18.3479C18.7898 18.0221 19.041 17.5957 19.1524 17.1245C19.2638 16.6534 19.23 16.1595 19.0556 15.7079ZM11.6676 16.7358C12.1443 16.4982 12.9146 16.3608 13.7012 16.4919C14.474 16.6207 15.2113 16.9987 15.7007 17.7327C15.8845 18.0085 16.257 18.083 16.5327 17.8991C16.8084 17.7153 16.8829 17.3428 16.6991 17.0671C15.9885 16.0012 14.9258 15.4795 13.8986 15.3082C12.8852 15.1393 11.8555 15.3013 11.1322 15.6618C10.8357 15.8097 10.7151 16.1699 10.8629 16.4665C11.0108 16.7631 11.371 16.8836 11.6676 16.7358Z",
|
|
29
|
+
fill: "#222222"
|
|
30
|
+
})));
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export { IconHandOpenHeart, IconHandOpenHeart as default };
|