hrm_ui_lib 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +4 -0
- package/.eslintignore +5 -0
- package/.eslintrc.yml +43 -0
- package/.github/workflows/main.yml +71 -0
- package/.prettierrc +9 -0
- package/.releaserc +21 -0
- package/.storybook/main.ts +36 -0
- package/.storybook/preview-head.html +3 -0
- package/.storybook/preview.ts +7 -0
- package/.vscode/settings.json +16 -0
- package/CHANGELOG.md +0 -0
- package/bin/generate_svg_component.js +112 -0
- package/bin/import_all_svg_components.js +29 -0
- package/commitlint.config.js +3 -0
- package/package.json +143 -0
- package/rollup.config.js +149 -0
- package/slack-notification.yml +38 -0
- package/src/assets/images/ArCa.svg +3 -0
- package/src/assets/images/Avatar.png +0 -0
- package/src/assets/images/Mastercard.svg +5 -0
- package/src/assets/images/Visa.svg +3 -0
- package/src/assets/images/avatar.jpg +0 -0
- package/src/assets/images/cards-img.png +0 -0
- package/src/assets/images/illustrations.svg +15 -0
- package/src/assets/images/image-placeholder.png +0 -0
- package/src/assets/images/logo-closed.svg +8 -0
- package/src/assets/images/logo.svg +14 -0
- package/src/assets/images/no-result.svg +35 -0
- package/src/assets/styles/components/_alert.scss +85 -0
- package/src/assets/styles/components/_avatar.scss +268 -0
- package/src/assets/styles/components/_badge.scss +52 -0
- package/src/assets/styles/components/_breadcrumb.scss +43 -0
- package/src/assets/styles/components/_button-icon.scss +73 -0
- package/src/assets/styles/components/_button.scss +423 -0
- package/src/assets/styles/components/_card-body.scss +25 -0
- package/src/assets/styles/components/_card-item.scss +35 -0
- package/src/assets/styles/components/_card-select.scss +96 -0
- package/src/assets/styles/components/_chips.scss +267 -0
- package/src/assets/styles/components/_collapse.scss +62 -0
- package/src/assets/styles/components/_controllers.scss +333 -0
- package/src/assets/styles/components/_copy.scss +3 -0
- package/src/assets/styles/components/_counter.scss +15 -0
- package/src/assets/styles/components/_date-picker.scss +781 -0
- package/src/assets/styles/components/_divider.scss +28 -0
- package/src/assets/styles/components/_empty.scss +41 -0
- package/src/assets/styles/components/_error-message.scss +7 -0
- package/src/assets/styles/components/_file-upload.scss +89 -0
- package/src/assets/styles/components/_form-container.scss +7 -0
- package/src/assets/styles/components/_image.scss +15 -0
- package/src/assets/styles/components/_input.scss +225 -0
- package/src/assets/styles/components/_item-select.scss +115 -0
- package/src/assets/styles/components/_link.scss +27 -0
- package/src/assets/styles/components/_loader.scss +108 -0
- package/src/assets/styles/components/_modal.scss +178 -0
- package/src/assets/styles/components/_more.scss +4 -0
- package/src/assets/styles/components/_nested-menu.scss +46 -0
- package/src/assets/styles/components/_pagination.scss +130 -0
- package/src/assets/styles/components/_popover.scss +112 -0
- package/src/assets/styles/components/_progres-stepper.scss +263 -0
- package/src/assets/styles/components/_progress.scss +124 -0
- package/src/assets/styles/components/_radio-group.scss +60 -0
- package/src/assets/styles/components/_select.scss +287 -0
- package/src/assets/styles/components/_side-navigation.scss +224 -0
- package/src/assets/styles/components/_side-sheet.scss +113 -0
- package/src/assets/styles/components/_snackbar.scss +57 -0
- package/src/assets/styles/components/_status.scss +60 -0
- package/src/assets/styles/components/_svg-icons.scss +54 -0
- package/src/assets/styles/components/_switcher.scss +17 -0
- package/src/assets/styles/components/_tab.scss +203 -0
- package/src/assets/styles/components/_table.scss +99 -0
- package/src/assets/styles/components/_textarea.scss +122 -0
- package/src/assets/styles/components/_tooltip.scss +117 -0
- package/src/assets/styles/helpers/_classname.scss +606 -0
- package/src/assets/styles/helpers/_mixin.scss +718 -0
- package/src/assets/styles/helpers/_reset.scss +369 -0
- package/src/assets/styles/index.scss +59 -0
- package/src/assets/styles/tokens/_borders.scss +48 -0
- package/src/assets/styles/tokens/_colors.scss +208 -0
- package/src/assets/styles/tokens/_fonts.scss +107 -0
- package/src/assets/styles/tokens/_overlays.scss +36 -0
- package/src/assets/styles/tokens/_shadows.scss +53 -0
- package/src/assets/styles/tokens/_sizes.scss +58 -0
- package/src/assets/styles/tokens/_spaces.scss +54 -0
- package/src/components/Alert/Alert.tsx +69 -0
- package/src/components/Alert/consts.ts +17 -0
- package/src/components/Alert/index.ts +1 -0
- package/src/components/Alert/types.ts +18 -0
- package/src/components/Avatar/Avatar.tsx +60 -0
- package/src/components/Avatar/AvatarGroup.tsx +73 -0
- package/src/components/Avatar/index.ts +2 -0
- package/src/components/Avatar/types.ts +27 -0
- package/src/components/Badge/Badge.tsx +22 -0
- package/src/components/Badge/index.ts +1 -0
- package/src/components/Badge/types.ts +6 -0
- package/src/components/Breadcrumb/Breadcrumb.tsx +25 -0
- package/src/components/Breadcrumb/index.ts +1 -0
- package/src/components/Breadcrumb/types.ts +11 -0
- package/src/components/Button/Button.tsx +67 -0
- package/src/components/Button/consts.ts +18 -0
- package/src/components/Button/index.ts +1 -0
- package/src/components/Button/types.ts +24 -0
- package/src/components/ButtonIcon/ButtonIcon.tsx +39 -0
- package/src/components/ButtonIcon/index.ts +1 -0
- package/src/components/ButtonIcon/types.ts +18 -0
- package/src/components/CardBody/CardBody.tsx +28 -0
- package/src/components/CardBody/index.ts +1 -0
- package/src/components/CardBody/types.ts +12 -0
- package/src/components/CardSelect/CardSelect.tsx +73 -0
- package/src/components/CardSelect/CardSelectGroup.tsx +49 -0
- package/src/components/CardSelect/components/CardAdditionalInfo.tsx +34 -0
- package/src/components/CardSelect/components/CardChips.tsx +25 -0
- package/src/components/CardSelect/components/CardDescription.tsx +15 -0
- package/src/components/CardSelect/components/CardInput.tsx +12 -0
- package/src/components/CardSelect/components/index.ts +4 -0
- package/src/components/CardSelect/index.ts +2 -0
- package/src/components/CardSelect/types.ts +39 -0
- package/src/components/Cards/CardItem.tsx +45 -0
- package/src/components/Cards/index.tsx +1 -0
- package/src/components/Cards/types.ts +15 -0
- package/src/components/Checkbox/Checkbox.tsx +139 -0
- package/src/components/Checkbox/index.ts +1 -0
- package/src/components/Checkbox/types.ts +19 -0
- package/src/components/Chips/Chips.tsx +70 -0
- package/src/components/Chips/consts.ts +15 -0
- package/src/components/Chips/index.ts +1 -0
- package/src/components/Chips/types.ts +30 -0
- package/src/components/Collapse/CollapseGroup/CollapseGroup.tsx +50 -0
- package/src/components/Collapse/CollapseItem/CollapseItem.tsx +86 -0
- package/src/components/Collapse/index.ts +2 -0
- package/src/components/Collapse/types.ts +43 -0
- package/src/components/Container/Container.tsx +8 -0
- package/src/components/Container/index.ts +1 -0
- package/src/components/Container/types.ts +5 -0
- package/src/components/Copy/Copy.tsx +38 -0
- package/src/components/Copy/index.ts +1 -0
- package/src/components/Copy/types.ts +6 -0
- package/src/components/Counter/Counter.tsx +82 -0
- package/src/components/Counter/index.ts +1 -0
- package/src/components/Counter/types.ts +9 -0
- package/src/components/DatePicker/CustomHeader/CustomHeader.tsx +87 -0
- package/src/components/DatePicker/CustomHeader/styles.scss +21 -0
- package/src/components/DatePicker/RangeDatePicker.tsx +126 -0
- package/src/components/DatePicker/SimpleDatePicker.tsx +105 -0
- package/src/components/DatePicker/TimePicker.tsx +85 -0
- package/src/components/DatePicker/hooks.ts +30 -0
- package/src/components/DatePicker/index.ts +3 -0
- package/src/components/DatePicker/types.ts +50 -0
- package/src/components/Divider/Divider.tsx +20 -0
- package/src/components/Divider/index.ts +1 -0
- package/src/components/Divider/types.ts +5 -0
- package/src/components/Empty/Empty.tsx +42 -0
- package/src/components/Empty/index.ts +1 -0
- package/src/components/Empty/types.ts +10 -0
- package/src/components/FileUpload/FileUpload.tsx +159 -0
- package/src/components/FileUpload/UploadItems.tsx +60 -0
- package/src/components/FileUpload/index.ts +2 -0
- package/src/components/FileUpload/types.ts +37 -0
- package/src/components/FormContainer/FormContainer.tsx +93 -0
- package/src/components/FormContainer/index.ts +1 -0
- package/src/components/FormContainer/types.ts +21 -0
- package/src/components/FormField/FormField.tsx +70 -0
- package/src/components/FormField/index.ts +1 -0
- package/src/components/FormField/types.ts +8 -0
- package/src/components/Heading/Heading.tsx +33 -0
- package/src/components/Heading/index.ts +1 -0
- package/src/components/Heading/types.ts +12 -0
- package/src/components/Image/Image.tsx +37 -0
- package/src/components/Image/index.ts +1 -0
- package/src/components/Image/types.ts +10 -0
- package/src/components/Input/Input.tsx +209 -0
- package/src/components/Input/index.ts +1 -0
- package/src/components/Input/types.ts +46 -0
- package/src/components/ItemSelect/ItemSelect.tsx +74 -0
- package/src/components/ItemSelect/ItemSelectGroup.tsx +35 -0
- package/src/components/ItemSelect/index.ts +2 -0
- package/src/components/ItemSelect/types.ts +23 -0
- package/src/components/Link/Link.tsx +51 -0
- package/src/components/Link/index.ts +1 -0
- package/src/components/Link/types.ts +10 -0
- package/src/components/Menu/Menu.tsx +99 -0
- package/src/components/Menu/NestedMenu.tsx +97 -0
- package/src/components/Menu/index.ts +2 -0
- package/src/components/Menu/types.ts +37 -0
- package/src/components/Modal/Modal.tsx +132 -0
- package/src/components/Modal/ModalConfirmation.tsx +108 -0
- package/src/components/Modal/index.ts +2 -0
- package/src/components/Modal/types.ts +41 -0
- package/src/components/More/More.tsx +38 -0
- package/src/components/More/index.ts +1 -0
- package/src/components/More/types.ts +11 -0
- package/src/components/Pagination/Pagination.tsx +50 -0
- package/src/components/Pagination/consts.ts +9 -0
- package/src/components/Pagination/index.ts +1 -0
- package/src/components/Pagination/types.ts +16 -0
- package/src/components/Popover/Popover.tsx +89 -0
- package/src/components/Popover/index.ts +1 -0
- package/src/components/Popover/types.ts +22 -0
- package/src/components/Progress/Progress.tsx +67 -0
- package/src/components/Progress/index.ts +1 -0
- package/src/components/Progress/types.ts +11 -0
- package/src/components/ProgressStep/ProgressStep.tsx +36 -0
- package/src/components/ProgressStep/Step.tsx +96 -0
- package/src/components/ProgressStep/consts.ts +6 -0
- package/src/components/ProgressStep/index.ts +1 -0
- package/src/components/ProgressStep/types.ts +34 -0
- package/src/components/Radio/Radio.tsx +64 -0
- package/src/components/Radio/RadioGroup.tsx +74 -0
- package/src/components/Radio/index.ts +2 -0
- package/src/components/Radio/types.ts +31 -0
- package/src/components/SVGIcons/IconAdd.tsx +35 -0
- package/src/components/SVGIcons/IconAddCircle.tsx +38 -0
- package/src/components/SVGIcons/IconAddCircleFilled.tsx +38 -0
- package/src/components/SVGIcons/IconAddFilled.tsx +35 -0
- package/src/components/SVGIcons/IconAlert.tsx +38 -0
- package/src/components/SVGIcons/IconAlertBadge.tsx +38 -0
- package/src/components/SVGIcons/IconAlertBadgeFilled.tsx +38 -0
- package/src/components/SVGIcons/IconAlertFilled.tsx +38 -0
- package/src/components/SVGIcons/IconAm.tsx +46 -0
- package/src/components/SVGIcons/IconAmd.tsx +35 -0
- package/src/components/SVGIcons/IconAmdFilled.tsx +35 -0
- package/src/components/SVGIcons/IconApple.tsx +38 -0
- package/src/components/SVGIcons/IconArrowDown.tsx +38 -0
- package/src/components/SVGIcons/IconArrowDownFilled.tsx +38 -0
- package/src/components/SVGIcons/IconArrowDownLeft.tsx +38 -0
- package/src/components/SVGIcons/IconArrowDownLeftFilled.tsx +38 -0
- package/src/components/SVGIcons/IconArrowDownload.tsx +38 -0
- package/src/components/SVGIcons/IconArrowDownloadFilled.tsx +38 -0
- package/src/components/SVGIcons/IconArrowEnter.tsx +35 -0
- package/src/components/SVGIcons/IconArrowEnterFilled.tsx +35 -0
- package/src/components/SVGIcons/IconArrowExit.tsx +35 -0
- package/src/components/SVGIcons/IconArrowExitFilled.tsx +35 -0
- package/src/components/SVGIcons/IconArrowExportLeftToRight.tsx +38 -0
- package/src/components/SVGIcons/IconArrowExportLeftToRightFilled.tsx +38 -0
- package/src/components/SVGIcons/IconArrowExportRightToLeft.tsx +38 -0
- package/src/components/SVGIcons/IconArrowExportRightToLeftFilled.tsx +38 -0
- package/src/components/SVGIcons/IconArrowExportUp.tsx +38 -0
- package/src/components/SVGIcons/IconArrowExportUpFilled.tsx +38 -0
- package/src/components/SVGIcons/IconArrowImport.tsx +38 -0
- package/src/components/SVGIcons/IconArrowImportFilled.tsx +38 -0
- package/src/components/SVGIcons/IconArrowLeft.tsx +38 -0
- package/src/components/SVGIcons/IconArrowLeftFilled.tsx +38 -0
- package/src/components/SVGIcons/IconArrowRepeatAll.tsx +38 -0
- package/src/components/SVGIcons/IconArrowRepeatAllFilled.tsx +38 -0
- package/src/components/SVGIcons/IconArrowReset.tsx +38 -0
- package/src/components/SVGIcons/IconArrowResetFilled.tsx +38 -0
- package/src/components/SVGIcons/IconArrowRight.tsx +38 -0
- package/src/components/SVGIcons/IconArrowRightFilled.tsx +38 -0
- package/src/components/SVGIcons/IconArrowSort.tsx +35 -0
- package/src/components/SVGIcons/IconArrowSortFilled.tsx +35 -0
- package/src/components/SVGIcons/IconArrowSync.tsx +35 -0
- package/src/components/SVGIcons/IconArrowSyncFilled.tsx +35 -0
- package/src/components/SVGIcons/IconArrowUp.tsx +38 -0
- package/src/components/SVGIcons/IconArrowUpFilled.tsx +38 -0
- package/src/components/SVGIcons/IconArrowUpLeft.tsx +38 -0
- package/src/components/SVGIcons/IconArrowUpLeftFilled.tsx +38 -0
- package/src/components/SVGIcons/IconArrowUpRight.tsx +38 -0
- package/src/components/SVGIcons/IconArrowUpRightFilled.tsx +38 -0
- package/src/components/SVGIcons/IconAttach.tsx +38 -0
- package/src/components/SVGIcons/IconAttachFilled.tsx +38 -0
- package/src/components/SVGIcons/IconBeach.tsx +35 -0
- package/src/components/SVGIcons/IconBeachFilled.tsx +35 -0
- package/src/components/SVGIcons/IconBook.tsx +38 -0
- package/src/components/SVGIcons/IconBookFilled.tsx +38 -0
- package/src/components/SVGIcons/IconBookmark.tsx +38 -0
- package/src/components/SVGIcons/IconBookmarkFilled.tsx +38 -0
- package/src/components/SVGIcons/IconBriefcase.tsx +38 -0
- package/src/components/SVGIcons/IconBriefcaseFilled.tsx +38 -0
- package/src/components/SVGIcons/IconBuilding.tsx +55 -0
- package/src/components/SVGIcons/IconBuildingBank.tsx +35 -0
- package/src/components/SVGIcons/IconBuildingBankFilled.tsx +35 -0
- package/src/components/SVGIcons/IconBuildingFilled.tsx +38 -0
- package/src/components/SVGIcons/IconBulletListAdd.tsx +38 -0
- package/src/components/SVGIcons/IconBulletListAddFilled.tsx +38 -0
- package/src/components/SVGIcons/IconCalculator.tsx +38 -0
- package/src/components/SVGIcons/IconCalculatorFilled.tsx +38 -0
- package/src/components/SVGIcons/IconCalendarClock.tsx +35 -0
- package/src/components/SVGIcons/IconCalendarClockFilled.tsx +35 -0
- package/src/components/SVGIcons/IconCalendarDay.tsx +38 -0
- package/src/components/SVGIcons/IconCalendarDayFilled.tsx +38 -0
- package/src/components/SVGIcons/IconCalendarLeft.tsx +35 -0
- package/src/components/SVGIcons/IconCalendarLeftFilled.tsx +35 -0
- package/src/components/SVGIcons/IconCalendarRight.tsx +35 -0
- package/src/components/SVGIcons/IconCalendarRightFilled.tsx +35 -0
- package/src/components/SVGIcons/IconCall.tsx +38 -0
- package/src/components/SVGIcons/IconCallFilled.tsx +38 -0
- package/src/components/SVGIcons/IconCard.tsx +35 -0
- package/src/components/SVGIcons/IconCardFilled.tsx +35 -0
- package/src/components/SVGIcons/IconCaretDown.tsx +35 -0
- package/src/components/SVGIcons/IconCaretDownFilled.tsx +35 -0
- package/src/components/SVGIcons/IconCaretDownRight.tsx +35 -0
- package/src/components/SVGIcons/IconCaretDownRightFilled.tsx +35 -0
- package/src/components/SVGIcons/IconCaretLeft.tsx +35 -0
- package/src/components/SVGIcons/IconCaretLeftFilled.tsx +35 -0
- package/src/components/SVGIcons/IconCaretRight.tsx +35 -0
- package/src/components/SVGIcons/IconCaretRightFilled.tsx +35 -0
- package/src/components/SVGIcons/IconCaretUp.tsx +35 -0
- package/src/components/SVGIcons/IconCaretUpFilled.tsx +35 -0
- package/src/components/SVGIcons/IconChat.tsx +35 -0
- package/src/components/SVGIcons/IconChatFilled.tsx +35 -0
- package/src/components/SVGIcons/IconChatMultiple.tsx +35 -0
- package/src/components/SVGIcons/IconChatMultipleFilled.tsx +35 -0
- package/src/components/SVGIcons/IconCheckboxArrowRight.tsx +38 -0
- package/src/components/SVGIcons/IconCheckboxArrowRightFilled.tsx +38 -0
- package/src/components/SVGIcons/IconCheckmark.tsx +35 -0
- package/src/components/SVGIcons/IconCheckmarkCircle.tsx +35 -0
- package/src/components/SVGIcons/IconCheckmarkCircleFilled.tsx +35 -0
- package/src/components/SVGIcons/IconCheckmarkFilled.tsx +35 -0
- package/src/components/SVGIcons/IconChevronDown.tsx +35 -0
- package/src/components/SVGIcons/IconChevronDownFilled.tsx +35 -0
- package/src/components/SVGIcons/IconChevronLeft.tsx +35 -0
- package/src/components/SVGIcons/IconChevronLeftFilled.tsx +35 -0
- package/src/components/SVGIcons/IconChevronRight.tsx +35 -0
- package/src/components/SVGIcons/IconChevronRightFilled.tsx +35 -0
- package/src/components/SVGIcons/IconChevronUp.tsx +35 -0
- package/src/components/SVGIcons/IconChevronUpDown.tsx +38 -0
- package/src/components/SVGIcons/IconChevronUpDownFilled.tsx +38 -0
- package/src/components/SVGIcons/IconChevronUpFilled.tsx +35 -0
- package/src/components/SVGIcons/IconClock.tsx +38 -0
- package/src/components/SVGIcons/IconClockDismiss.tsx +35 -0
- package/src/components/SVGIcons/IconClockDismissFilled.tsx +35 -0
- package/src/components/SVGIcons/IconClockFilled.tsx +38 -0
- package/src/components/SVGIcons/IconComment.tsx +38 -0
- package/src/components/SVGIcons/IconCommentFilled.tsx +38 -0
- package/src/components/SVGIcons/IconContractCard.tsx +35 -0
- package/src/components/SVGIcons/IconContractCardFilled.tsx +35 -0
- package/src/components/SVGIcons/IconCopy.tsx +35 -0
- package/src/components/SVGIcons/IconCopyFilled.tsx +35 -0
- package/src/components/SVGIcons/IconCubeTree.tsx +35 -0
- package/src/components/SVGIcons/IconCubeTreeFilled.tsx +38 -0
- package/src/components/SVGIcons/IconDatabase.tsx +38 -0
- package/src/components/SVGIcons/IconDatabaseFilled.tsx +38 -0
- package/src/components/SVGIcons/IconDelete.tsx +35 -0
- package/src/components/SVGIcons/IconDeleteFilled.tsx +35 -0
- package/src/components/SVGIcons/IconDeviceMeetingRoom.tsx +35 -0
- package/src/components/SVGIcons/IconDeviceMeetingRoomFilled.tsx +35 -0
- package/src/components/SVGIcons/IconDismiss.tsx +35 -0
- package/src/components/SVGIcons/IconDismissCircle.tsx +38 -0
- package/src/components/SVGIcons/IconDismissCircleFilled.tsx +38 -0
- package/src/components/SVGIcons/IconDismissFilled.tsx +35 -0
- package/src/components/SVGIcons/IconDocument.tsx +35 -0
- package/src/components/SVGIcons/IconDocumentBulletList.tsx +38 -0
- package/src/components/SVGIcons/IconDocumentBulletListFilled.tsx +38 -0
- package/src/components/SVGIcons/IconDocumentEdit.tsx +35 -0
- package/src/components/SVGIcons/IconDocumentEditFilled.tsx +35 -0
- package/src/components/SVGIcons/IconDocumentFilled.tsx +35 -0
- package/src/components/SVGIcons/IconEdit.tsx +35 -0
- package/src/components/SVGIcons/IconEditFilled.tsx +35 -0
- package/src/components/SVGIcons/IconErrorCircle.tsx +35 -0
- package/src/components/SVGIcons/IconErrorCircleFilled.tsx +35 -0
- package/src/components/SVGIcons/IconEur.tsx +35 -0
- package/src/components/SVGIcons/IconEurFilled.tsx +35 -0
- package/src/components/SVGIcons/IconExpandUpLeft.tsx +38 -0
- package/src/components/SVGIcons/IconExpandUpLeftFilled.tsx +38 -0
- package/src/components/SVGIcons/IconExpandUpRight.tsx +38 -0
- package/src/components/SVGIcons/IconExpandUpRightFilled.tsx +38 -0
- package/src/components/SVGIcons/IconEyeOff.tsx +38 -0
- package/src/components/SVGIcons/IconEyeOffFilled.tsx +38 -0
- package/src/components/SVGIcons/IconEyeOn.tsx +38 -0
- package/src/components/SVGIcons/IconEyeOnFilled.tsx +38 -0
- package/src/components/SVGIcons/IconFacebook.tsx +43 -0
- package/src/components/SVGIcons/IconFilter.tsx +35 -0
- package/src/components/SVGIcons/IconFilterFilled.tsx +35 -0
- package/src/components/SVGIcons/IconFlag.tsx +38 -0
- package/src/components/SVGIcons/IconFlagFilled.tsx +38 -0
- package/src/components/SVGIcons/IconFolderLink.tsx +35 -0
- package/src/components/SVGIcons/IconFolderLinkFilled.tsx +35 -0
- package/src/components/SVGIcons/IconGb.tsx +68 -0
- package/src/components/SVGIcons/IconGlobe.tsx +35 -0
- package/src/components/SVGIcons/IconGlobeFilled.tsx +35 -0
- package/src/components/SVGIcons/IconGoogle.tsx +45 -0
- package/src/components/SVGIcons/IconHandOpenHeart.tsx +38 -0
- package/src/components/SVGIcons/IconHandOpenHeartFilled.tsx +38 -0
- package/src/components/SVGIcons/IconHeart.tsx +38 -0
- package/src/components/SVGIcons/IconHeartFilled.tsx +38 -0
- package/src/components/SVGIcons/IconHistory.tsx +38 -0
- package/src/components/SVGIcons/IconHistoryFilled.tsx +38 -0
- package/src/components/SVGIcons/IconHome.tsx +38 -0
- package/src/components/SVGIcons/IconHomeFilled.tsx +38 -0
- package/src/components/SVGIcons/IconImage.tsx +38 -0
- package/src/components/SVGIcons/IconImageFilled.tsx +38 -0
- package/src/components/SVGIcons/IconInfo.tsx +35 -0
- package/src/components/SVGIcons/IconInfoFilled.tsx +35 -0
- package/src/components/SVGIcons/IconInstagram.tsx +48 -0
- package/src/components/SVGIcons/IconKeyReset.tsx +38 -0
- package/src/components/SVGIcons/IconKeyResetFilled.tsx +38 -0
- package/src/components/SVGIcons/IconLink.tsx +38 -0
- package/src/components/SVGIcons/IconLinkFilled.tsx +38 -0
- package/src/components/SVGIcons/IconLinkedin.tsx +38 -0
- package/src/components/SVGIcons/IconList.tsx +35 -0
- package/src/components/SVGIcons/IconListFilled.tsx +38 -0
- package/src/components/SVGIcons/IconLocation.tsx +38 -0
- package/src/components/SVGIcons/IconLocationFilled.tsx +38 -0
- package/src/components/SVGIcons/IconLockClosed.tsx +38 -0
- package/src/components/SVGIcons/IconLockClosedFilled.tsx +38 -0
- package/src/components/SVGIcons/IconLockOpen.tsx +38 -0
- package/src/components/SVGIcons/IconLockOpenFilled.tsx +38 -0
- package/src/components/SVGIcons/IconMail.tsx +38 -0
- package/src/components/SVGIcons/IconMailAdd.tsx +38 -0
- package/src/components/SVGIcons/IconMailAddFilled.tsx +38 -0
- package/src/components/SVGIcons/IconMailArrowForward.tsx +38 -0
- package/src/components/SVGIcons/IconMailArrowForwardFilled.tsx +38 -0
- package/src/components/SVGIcons/IconMailFilled.tsx +38 -0
- package/src/components/SVGIcons/IconMailLink.tsx +38 -0
- package/src/components/SVGIcons/IconMailLinkFilled.tsx +38 -0
- package/src/components/SVGIcons/IconMedium.tsx +38 -0
- package/src/components/SVGIcons/IconMore.tsx +38 -0
- package/src/components/SVGIcons/IconMoreFilled.tsx +38 -0
- package/src/components/SVGIcons/IconMoreVertical.tsx +38 -0
- package/src/components/SVGIcons/IconMoreVerticalFilled.tsx +38 -0
- package/src/components/SVGIcons/IconNavigation.tsx +38 -0
- package/src/components/SVGIcons/IconNavigationFilled.tsx +38 -0
- package/src/components/SVGIcons/IconNotebook.tsx +38 -0
- package/src/components/SVGIcons/IconNotebookAdd.tsx +59 -0
- package/src/components/SVGIcons/IconNotebookAddFilled.tsx +55 -0
- package/src/components/SVGIcons/IconNotebookFilled.tsx +38 -0
- package/src/components/SVGIcons/IconOnlyEmployee.tsx +35 -0
- package/src/components/SVGIcons/IconOpen.tsx +38 -0
- package/src/components/SVGIcons/IconOpenFilled.tsx +38 -0
- package/src/components/SVGIcons/IconPatient.tsx +35 -0
- package/src/components/SVGIcons/IconPatientFilled.tsx +35 -0
- package/src/components/SVGIcons/IconPeople.tsx +35 -0
- package/src/components/SVGIcons/IconPeopleAdd.tsx +38 -0
- package/src/components/SVGIcons/IconPeopleAddFilled.tsx +38 -0
- package/src/components/SVGIcons/IconPeopleFilled.tsx +38 -0
- package/src/components/SVGIcons/IconPercent.tsx +40 -0
- package/src/components/SVGIcons/IconPerson.tsx +38 -0
- package/src/components/SVGIcons/IconPersonAccount.tsx +35 -0
- package/src/components/SVGIcons/IconPersonAccountFilled.tsx +35 -0
- package/src/components/SVGIcons/IconPersonAdd.tsx +38 -0
- package/src/components/SVGIcons/IconPersonAddFilled.tsx +38 -0
- package/src/components/SVGIcons/IconPersonFilled.tsx +38 -0
- package/src/components/SVGIcons/IconPersonStar.tsx +38 -0
- package/src/components/SVGIcons/IconPersonStarFilled.tsx +38 -0
- package/src/components/SVGIcons/IconPersonSubtract.tsx +38 -0
- package/src/components/SVGIcons/IconPersonSubtractFilled.tsx +38 -0
- package/src/components/SVGIcons/IconPhone.tsx +38 -0
- package/src/components/SVGIcons/IconPhoneFilled.tsx +38 -0
- package/src/components/SVGIcons/IconPos.tsx +40 -0
- package/src/components/SVGIcons/IconPosFilled.tsx +40 -0
- package/src/components/SVGIcons/IconProhibited.tsx +38 -0
- package/src/components/SVGIcons/IconProhibitedFilled.tsx +38 -0
- package/src/components/SVGIcons/IconProjectProduct.tsx +35 -0
- package/src/components/SVGIcons/IconQuestion.tsx +38 -0
- package/src/components/SVGIcons/IconQuestionFilled.tsx +38 -0
- package/src/components/SVGIcons/IconRedo.tsx +38 -0
- package/src/components/SVGIcons/IconRedoFilled.tsx +38 -0
- package/src/components/SVGIcons/IconRu.tsx +63 -0
- package/src/components/SVGIcons/IconRub.tsx +35 -0
- package/src/components/SVGIcons/IconRubFilled.tsx +35 -0
- package/src/components/SVGIcons/IconSave.tsx +38 -0
- package/src/components/SVGIcons/IconSaveFilled.tsx +38 -0
- package/src/components/SVGIcons/IconSavings.tsx +38 -0
- package/src/components/SVGIcons/IconSavingsFilled.tsx +38 -0
- package/src/components/SVGIcons/IconSearch.tsx +38 -0
- package/src/components/SVGIcons/IconSearchFilled.tsx +38 -0
- package/src/components/SVGIcons/IconSelectAllOff.tsx +38 -0
- package/src/components/SVGIcons/IconSelectAllOffFilled.tsx +38 -0
- package/src/components/SVGIcons/IconSelectAllOn.tsx +38 -0
- package/src/components/SVGIcons/IconSelectAllOnFilled.tsx +38 -0
- package/src/components/SVGIcons/IconSend.tsx +38 -0
- package/src/components/SVGIcons/IconSendFilled.tsx +38 -0
- package/src/components/SVGIcons/IconSettings.tsx +35 -0
- package/src/components/SVGIcons/IconSettingsFilled.tsx +38 -0
- package/src/components/SVGIcons/IconShare.tsx +38 -0
- package/src/components/SVGIcons/IconShareAndroid.tsx +38 -0
- package/src/components/SVGIcons/IconShareAndroidFilled.tsx +38 -0
- package/src/components/SVGIcons/IconShareFilled.tsx +38 -0
- package/src/components/SVGIcons/IconSignOut.tsx +38 -0
- package/src/components/SVGIcons/IconSignOutFilled.tsx +38 -0
- package/src/components/SVGIcons/IconSpinner.tsx +38 -0
- package/src/components/SVGIcons/IconSpinnerFilled.tsx +38 -0
- package/src/components/SVGIcons/IconStatus.tsx +38 -0
- package/src/components/SVGIcons/IconStatusFilled.tsx +38 -0
- package/src/components/SVGIcons/IconSubtract.tsx +38 -0
- package/src/components/SVGIcons/IconSubtractCircle.tsx +38 -0
- package/src/components/SVGIcons/IconSubtractCircleFilled.tsx +38 -0
- package/src/components/SVGIcons/IconSubtractFilled.tsx +38 -0
- package/src/components/SVGIcons/IconTableCellEdit.tsx +43 -0
- package/src/components/SVGIcons/IconTableCellEditFilled.tsx +51 -0
- package/src/components/SVGIcons/IconTelegram.tsx +45 -0
- package/src/components/SVGIcons/IconTimer.tsx +38 -0
- package/src/components/SVGIcons/IconTimerFilled.tsx +38 -0
- package/src/components/SVGIcons/IconTwitter.tsx +38 -0
- package/src/components/SVGIcons/IconUndo.tsx +38 -0
- package/src/components/SVGIcons/IconUndoFilled.tsx +38 -0
- package/src/components/SVGIcons/IconUnitsEmployee.tsx +35 -0
- package/src/components/SVGIcons/IconUsd.tsx +35 -0
- package/src/components/SVGIcons/IconUsdFilled.tsx +35 -0
- package/src/components/SVGIcons/IconVideo.tsx +35 -0
- package/src/components/SVGIcons/IconVideoFilled.tsx +35 -0
- package/src/components/SVGIcons/IconWallet.tsx +38 -0
- package/src/components/SVGIcons/IconWalletFilled.tsx +38 -0
- package/src/components/SVGIcons/IconWarning.tsx +35 -0
- package/src/components/SVGIcons/IconWarningFilled.tsx +35 -0
- package/src/components/SVGIcons/IconYoutube.tsx +38 -0
- package/src/components/SVGIcons/index.ts +286 -0
- package/src/components/SVGIcons/types.ts +38 -0
- package/src/components/Select/ButtonSelect/ButtonSelect.tsx +120 -0
- package/src/components/Select/FilterSelect/FilterDropdown.tsx +46 -0
- package/src/components/Select/FilterSelect/FilterGroupDropdown.tsx +22 -0
- package/src/components/Select/FilterSelect/FilterSelect.tsx +138 -0
- package/src/components/Select/MultiSelect/MultiBase/MultiBase.tsx +162 -0
- package/src/components/Select/MultiSelect/MultiSelect.tsx +147 -0
- package/src/components/Select/MultiSelect/MultiSelectGrouped/MultiSelectGrouped.tsx +219 -0
- package/src/components/Select/MultiSelect/MultiSelectWithTabs/MultiSelectWithTabs.tsx +177 -0
- package/src/components/Select/MultiSelect/OptionsWrapper.tsx +128 -0
- package/src/components/Select/NestedSelect/NestedSelect.tsx +124 -0
- package/src/components/Select/ProfileDropdown/index.tsx +90 -0
- package/src/components/Select/ProfileDropdown/styles.scss +47 -0
- package/src/components/Select/Select/Select.tsx +268 -0
- package/src/components/Select/SharedComponents/Actions.tsx +42 -0
- package/src/components/Select/SharedComponents/ButtonSelectWrapper/Button/Button.tsx +52 -0
- package/src/components/Select/SharedComponents/ButtonSelectWrapper/ButtonSelectWrapper.tsx +100 -0
- package/src/components/Select/SharedComponents/ContentTop.tsx +123 -0
- package/src/components/Select/SharedComponents/Footer.tsx +35 -0
- package/src/components/Select/SharedComponents/InputSelectWrapper/InputSelectWrapper.tsx +137 -0
- package/src/components/Select/SharedComponents/Loading.tsx +15 -0
- package/src/components/Select/SharedComponents/index.ts +6 -0
- package/src/components/Select/constants.ts +10 -0
- package/src/components/Select/index.ts +6 -0
- package/src/components/Select/types.ts +240 -0
- package/src/components/SideNavigation/Block.tsx +19 -0
- package/src/components/SideNavigation/NavigationItem/index.tsx +93 -0
- package/src/components/SideNavigation/NavigationItem/types.ts +26 -0
- package/src/components/SideNavigation/SideNavigation.tsx +46 -0
- package/src/components/SideNavigation/index.ts +2 -0
- package/src/components/SideNavigation/types.ts +19 -0
- package/src/components/SideSheet/Footer/Footer.tsx +59 -0
- package/src/components/SideSheet/SideSheet.tsx +168 -0
- package/src/components/SideSheet/index.ts +1 -0
- package/src/components/SideSheet/types.ts +37 -0
- package/src/components/Snackbar/Snackbar.tsx +75 -0
- package/src/components/Snackbar/consts.ts +17 -0
- package/src/components/Snackbar/index.ts +1 -0
- package/src/components/Snackbar/types.ts +22 -0
- package/src/components/Status/Status.tsx +50 -0
- package/src/components/Status/index.ts +1 -0
- package/src/components/Status/types.ts +24 -0
- package/src/components/Stepper/Stepper.tsx +45 -0
- package/src/components/Stepper/index.ts +1 -0
- package/src/components/Stepper/types.ts +15 -0
- package/src/components/Switcher/Switcher.tsx +75 -0
- package/src/components/Switcher/index.ts +1 -0
- package/src/components/Switcher/types.ts +11 -0
- package/src/components/Tab/Tab.tsx +29 -0
- package/src/components/Tab/TabItem.tsx +61 -0
- package/src/components/Tab/index.ts +1 -0
- package/src/components/Tab/types.ts +51 -0
- package/src/components/Table/Header.tsx +86 -0
- package/src/components/Table/IndeterminateCheckbox.tsx +31 -0
- package/src/components/Table/Row.tsx +48 -0
- package/src/components/Table/Table.tsx +134 -0
- package/src/components/Table/index.ts +1 -0
- package/src/components/Table/types.ts +45 -0
- package/src/components/Table/utils.tsx +27 -0
- package/src/components/Text/Text.tsx +38 -0
- package/src/components/Text/index.ts +1 -0
- package/src/components/Text/types.ts +33 -0
- package/src/components/Textarea/Textarea.tsx +100 -0
- package/src/components/Textarea/index.ts +1 -0
- package/src/components/Textarea/types.ts +17 -0
- package/src/components/Tooltip/Tooltip.tsx +88 -0
- package/src/components/Tooltip/index.ts +1 -0
- package/src/components/Tooltip/types.ts +23 -0
- package/src/consts/index.ts +85 -0
- package/src/context/FormContextProvider.tsx +12 -0
- package/src/context/index.ts +2 -0
- package/src/context/types.ts +41 -0
- package/src/helperComponents/AnimatePresenceWrapper/AnimatePresenceWrapper.tsx +19 -0
- package/src/helperComponents/AnimatePresenceWrapper/index.ts +1 -0
- package/src/helperComponents/CodeBlock/CodeBlock.tsx +20 -0
- package/src/helperComponents/CodeBlock/index.ts +2 -0
- package/src/helperComponents/ErrorMessage/ErrorMessage.tsx +23 -0
- package/src/helperComponents/ErrorMessage/index.ts +1 -0
- package/src/helperComponents/ErrorMessage/types.ts +6 -0
- package/src/helperComponents/IconDynamicComponent/IconDynamicComponent.tsx +31 -0
- package/src/helperComponents/IconDynamicComponent/constants.ts +16 -0
- package/src/helperComponents/IconDynamicComponent/index.ts +1 -0
- package/src/helperComponents/Label/Label.tsx +31 -0
- package/src/helperComponents/Label/index.ts +1 -0
- package/src/helperComponents/Label/types.ts +12 -0
- package/src/helperComponents/Loader/Loader.tsx +11 -0
- package/src/helperComponents/Loader/index.ts +1 -0
- package/src/helperComponents/Loader/types.ts +4 -0
- package/src/helperComponents/OptionItem/OptionItem.tsx +98 -0
- package/src/helperComponents/OptionItem/index.ts +1 -0
- package/src/helperComponents/OptionItem/types.ts +18 -0
- package/src/helperComponents/index.ts +6 -0
- package/src/hooks/index.ts +12 -0
- package/src/hooks/useChangePositionsOnScroll.tsx +37 -0
- package/src/hooks/useDispatchEventOnScroll.tsx +10 -0
- package/src/hooks/useFieldArray.ts +1 -0
- package/src/hooks/useFormContext.ts +14 -0
- package/src/hooks/useFormProps.ts +6 -0
- package/src/hooks/useGetElemPositions.ts +28 -0
- package/src/hooks/useGetElemSizes.ts +29 -0
- package/src/hooks/useGetHasBottomSpace.ts +35 -0
- package/src/hooks/useGetTooltipPosition.ts +81 -0
- package/src/hooks/useGetTooltipStyles.ts +71 -0
- package/src/hooks/useHideBodyScroll.ts +29 -0
- package/src/hooks/useHideOnScroll.ts +24 -0
- package/src/hooks/useOnOutsideClick.ts +58 -0
- package/src/hooks/useScreenSize.ts +36 -0
- package/src/index.ts +53 -0
- package/src/stories/Alert.stories.tsx +42 -0
- package/src/stories/Avatar.stories.tsx +100 -0
- package/src/stories/Badge.stories.tsx +29 -0
- package/src/stories/Breadcrumb.stories.tsx +37 -0
- package/src/stories/Button.stories.tsx +74 -0
- package/src/stories/ButtonIcon.stories.tsx +52 -0
- package/src/stories/CardBody.stories.tsx +32 -0
- package/src/stories/CardSelect.stories.tsx +192 -0
- package/src/stories/Cards.stories.tsx +42 -0
- package/src/stories/Checkbox.stories.tsx +40 -0
- package/src/stories/Chips.stories.tsx +40 -0
- package/src/stories/Collapse.stories.tsx +69 -0
- package/src/stories/Container.stories.tsx +28 -0
- package/src/stories/Copy.stories.tsx +18 -0
- package/src/stories/Counter.stories.tsx +27 -0
- package/src/stories/DatePicker.stories.tsx +99 -0
- package/src/stories/Divider.stories.tsx +30 -0
- package/src/stories/Empty.stories.tsx +33 -0
- package/src/stories/FileUpload.stories.tsx +43 -0
- package/src/stories/Form.stories.tsx +188 -0
- package/src/stories/Heading.stories.tsx +42 -0
- package/src/stories/Image.stories.tsx +44 -0
- package/src/stories/Input.stories.tsx +71 -0
- package/src/stories/ItemSelect.stories.tsx +94 -0
- package/src/stories/Link.stories.tsx +21 -0
- package/src/stories/Menu.stories.tsx +178 -0
- package/src/stories/Modal.stories.tsx +93 -0
- package/src/stories/More.stories.tsx +27 -0
- package/src/stories/NavigationItem.stories.tsx +24 -0
- package/src/stories/Pagination.stories.tsx +34 -0
- package/src/stories/Popover.stories.tsx +55 -0
- package/src/stories/Progress.stories.tsx +33 -0
- package/src/stories/ProgressStep.stories.tsx +84 -0
- package/src/stories/Radio.stories.tsx +57 -0
- package/src/stories/SVGIcons.stories.tsx +75 -0
- package/src/stories/Select.stories.tsx +600 -0
- package/src/stories/SideNavigation.stories.tsx +252 -0
- package/src/stories/SideSheet.stories.tsx +346 -0
- package/src/stories/Snackbar.stories.tsx +72 -0
- package/src/stories/Status.stories.tsx +71 -0
- package/src/stories/Stepper.stories.tsx +28 -0
- package/src/stories/Switcher.stories.tsx +32 -0
- package/src/stories/Tab.stories.tsx +77 -0
- package/src/stories/Table.stories.tsx +96 -0
- package/src/stories/Text.stories.tsx +62 -0
- package/src/stories/Textarea.stories.tsx +37 -0
- package/src/stories/Tooltip.stories.tsx +60 -0
- package/src/types.d.ts +192 -0
- package/src/utils/helpers.ts +94 -0
- package/svg-icons/add-circle-filled.svg +5 -0
- package/svg-icons/add-circle.svg +5 -0
- package/svg-icons/add-filled.svg +3 -0
- package/svg-icons/add.svg +3 -0
- package/svg-icons/alert-badge-filled.svg +5 -0
- package/svg-icons/alert-badge.svg +5 -0
- package/svg-icons/alert-filled.svg +5 -0
- package/svg-icons/alert.svg +5 -0
- package/svg-icons/am.svg +11 -0
- package/svg-icons/amd-filled.svg +3 -0
- package/svg-icons/amd.svg +3 -0
- package/svg-icons/apple.svg +5 -0
- package/svg-icons/arrow-down-filled.svg +5 -0
- package/svg-icons/arrow-down-left-filled.svg +5 -0
- package/svg-icons/arrow-down-left.svg +5 -0
- package/svg-icons/arrow-down.svg +5 -0
- package/svg-icons/arrow-download-filled.svg +5 -0
- package/svg-icons/arrow-download.svg +5 -0
- package/svg-icons/arrow-enter-filled.svg +3 -0
- package/svg-icons/arrow-enter.svg +3 -0
- package/svg-icons/arrow-exit-filled.svg +3 -0
- package/svg-icons/arrow-exit.svg +3 -0
- package/svg-icons/arrow-export-left-to-right-filled.svg +5 -0
- package/svg-icons/arrow-export-left-to-right.svg +5 -0
- package/svg-icons/arrow-export-right-to-left-filled.svg +5 -0
- package/svg-icons/arrow-export-right-to-left.svg +5 -0
- package/svg-icons/arrow-export-up-filled.svg +5 -0
- package/svg-icons/arrow-export-up.svg +5 -0
- package/svg-icons/arrow-import-filled.svg +5 -0
- package/svg-icons/arrow-import.svg +5 -0
- package/svg-icons/arrow-left-filled.svg +5 -0
- package/svg-icons/arrow-left.svg +5 -0
- package/svg-icons/arrow-repeat-all-filled.svg +5 -0
- package/svg-icons/arrow-repeat-all.svg +5 -0
- package/svg-icons/arrow-reset-filled.svg +5 -0
- package/svg-icons/arrow-reset.svg +5 -0
- package/svg-icons/arrow-right-filled.svg +5 -0
- package/svg-icons/arrow-right.svg +5 -0
- package/svg-icons/arrow-sort-filled.svg +3 -0
- package/svg-icons/arrow-sort.svg +3 -0
- package/svg-icons/arrow-sync-filled.svg +3 -0
- package/svg-icons/arrow-sync.svg +3 -0
- package/svg-icons/arrow-up-filled.svg +5 -0
- package/svg-icons/arrow-up-left-filled.svg +5 -0
- package/svg-icons/arrow-up-left.svg +5 -0
- package/svg-icons/arrow-up-right-filled.svg +5 -0
- package/svg-icons/arrow-up-right.svg +5 -0
- package/svg-icons/arrow-up.svg +5 -0
- package/svg-icons/attach-filled.svg +5 -0
- package/svg-icons/attach.svg +5 -0
- package/svg-icons/beach-filled.svg +3 -0
- package/svg-icons/beach.svg +3 -0
- package/svg-icons/book-filled.svg +5 -0
- package/svg-icons/book.svg +5 -0
- package/svg-icons/bookmark-filled.svg +5 -0
- package/svg-icons/bookmark.svg +5 -0
- package/svg-icons/briefcase-filled.svg +5 -0
- package/svg-icons/briefcase.svg +5 -0
- package/svg-icons/building-bank-filled.svg +3 -0
- package/svg-icons/building-bank.svg +3 -0
- package/svg-icons/building-filled.svg +5 -0
- package/svg-icons/building.svg +14 -0
- package/svg-icons/bullet-list-add-filled.svg +5 -0
- package/svg-icons/bullet-list-add.svg +5 -0
- package/svg-icons/calculator-filled.svg +5 -0
- package/svg-icons/calculator.svg +5 -0
- package/svg-icons/calendar-clock-filled.svg +3 -0
- package/svg-icons/calendar-clock.svg +3 -0
- package/svg-icons/calendar-day-filled.svg +5 -0
- package/svg-icons/calendar-day.svg +5 -0
- package/svg-icons/calendar-left-filled.svg +3 -0
- package/svg-icons/calendar-left.svg +3 -0
- package/svg-icons/calendar-right-filled.svg +3 -0
- package/svg-icons/calendar-right.svg +3 -0
- package/svg-icons/call-filled.svg +5 -0
- package/svg-icons/call.svg +5 -0
- package/svg-icons/card-filled.svg +3 -0
- package/svg-icons/card.svg +3 -0
- package/svg-icons/caret-down-filled.svg +3 -0
- package/svg-icons/caret-down-right-filled.svg +3 -0
- package/svg-icons/caret-down-right.svg +3 -0
- package/svg-icons/caret-down.svg +3 -0
- package/svg-icons/caret-left-filled.svg +3 -0
- package/svg-icons/caret-left.svg +3 -0
- package/svg-icons/caret-right-filled.svg +3 -0
- package/svg-icons/caret-right.svg +3 -0
- package/svg-icons/caret-up-filled.svg +3 -0
- package/svg-icons/caret-up.svg +3 -0
- package/svg-icons/chat-filled.svg +3 -0
- package/svg-icons/chat-multiple-filled.svg +3 -0
- package/svg-icons/chat-multiple.svg +3 -0
- package/svg-icons/chat.svg +3 -0
- package/svg-icons/checkbox-arrow-right-filled.svg +5 -0
- package/svg-icons/checkbox-arrow-right.svg +5 -0
- package/svg-icons/checkmark-circle-filled.svg +3 -0
- package/svg-icons/checkmark-circle.svg +3 -0
- package/svg-icons/checkmark-filled.svg +3 -0
- package/svg-icons/checkmark.svg +3 -0
- package/svg-icons/chevron-down.svg +3 -0
- package/svg-icons/chevron-left.svg +3 -0
- package/svg-icons/chevron-right.svg +3 -0
- package/svg-icons/chevron-up-down-filled.svg +5 -0
- package/svg-icons/chevron-up-down.svg +5 -0
- package/svg-icons/chevron-up.svg +3 -0
- package/svg-icons/clock-filled.svg +5 -0
- package/svg-icons/clock.svg +5 -0
- package/svg-icons/comment-filled.svg +5 -0
- package/svg-icons/comment.svg +5 -0
- package/svg-icons/contract-card-filled.svg +3 -0
- package/svg-icons/contract-card.svg +3 -0
- package/svg-icons/copy.svg +3 -0
- package/svg-icons/cube-tree-filled.svg +5 -0
- package/svg-icons/cube-tree.svg +3 -0
- package/svg-icons/database-filled.svg +5 -0
- package/svg-icons/database.svg +5 -0
- package/svg-icons/delete-filled.svg +3 -0
- package/svg-icons/delete.svg +3 -0
- package/svg-icons/device-meeting-room-filled.svg +3 -0
- package/svg-icons/device-meeting-room.svg +3 -0
- package/svg-icons/dismiss-circle-filled.svg +5 -0
- package/svg-icons/dismiss-circle.svg +5 -0
- package/svg-icons/dismiss-filled.svg +3 -0
- package/svg-icons/dismiss.svg +3 -0
- package/svg-icons/document-bullet-list-filled.svg +5 -0
- package/svg-icons/document-bullet-list.svg +5 -0
- package/svg-icons/document-edit-filled.svg +3 -0
- package/svg-icons/document-edit.svg +3 -0
- package/svg-icons/document-filled.svg +3 -0
- package/svg-icons/document.svg +3 -0
- package/svg-icons/edit-filled.svg +3 -0
- package/svg-icons/edit.svg +4 -0
- package/svg-icons/error-circle-filled.svg +3 -0
- package/svg-icons/error-circle.svg +3 -0
- package/svg-icons/eur-filled.svg +3 -0
- package/svg-icons/eur.svg +3 -0
- package/svg-icons/expand-up-left-filled.svg +5 -0
- package/svg-icons/expand-up-left.svg +5 -0
- package/svg-icons/expand-up-right-filled.svg +5 -0
- package/svg-icons/expand-up-right.svg +5 -0
- package/svg-icons/eye-off-filled.svg +5 -0
- package/svg-icons/eye-off.svg +5 -0
- package/svg-icons/eye-on-filled.svg +5 -0
- package/svg-icons/eye-on.svg +5 -0
- package/svg-icons/facebook.svg +10 -0
- package/svg-icons/filter-filled.svg +3 -0
- package/svg-icons/filter.svg +3 -0
- package/svg-icons/flag-filled.svg +5 -0
- package/svg-icons/flag.svg +5 -0
- package/svg-icons/folder-link-filled.svg +3 -0
- package/svg-icons/folder-link.svg +3 -0
- package/svg-icons/gb.svg +15 -0
- package/svg-icons/globe-filled.svg +3 -0
- package/svg-icons/globe.svg +3 -0
- package/svg-icons/google.svg +10 -0
- package/svg-icons/hand-open-heart-filled.svg +5 -0
- package/svg-icons/hand-open-heart.svg +5 -0
- package/svg-icons/heart-filled.svg +5 -0
- package/svg-icons/heart.svg +5 -0
- package/svg-icons/history-filled.svg +5 -0
- package/svg-icons/history.svg +5 -0
- package/svg-icons/home-filled.svg +5 -0
- package/svg-icons/home.svg +5 -0
- package/svg-icons/image-filled.svg +5 -0
- package/svg-icons/image.svg +5 -0
- package/svg-icons/info-filled.svg +3 -0
- package/svg-icons/info.svg +3 -0
- package/svg-icons/instagram.svg +7 -0
- package/svg-icons/key-reset-filled.svg +5 -0
- package/svg-icons/key-reset.svg +5 -0
- package/svg-icons/link-filled.svg +5 -0
- package/svg-icons/link.svg +5 -0
- package/svg-icons/linkedin.svg +5 -0
- package/svg-icons/list-filled.svg +5 -0
- package/svg-icons/list.svg +3 -0
- package/svg-icons/location-filled.svg +5 -0
- package/svg-icons/location.svg +5 -0
- package/svg-icons/lock-closed-filled.svg +5 -0
- package/svg-icons/lock-closed.svg +5 -0
- package/svg-icons/lock-open-filled.svg +5 -0
- package/svg-icons/lock-open.svg +5 -0
- package/svg-icons/mail-add-filled.svg +5 -0
- package/svg-icons/mail-add.svg +5 -0
- package/svg-icons/mail-arrow-forward-filled.svg +5 -0
- package/svg-icons/mail-arrow-forward.svg +5 -0
- package/svg-icons/mail-filled.svg +5 -0
- package/svg-icons/mail-link-filled.svg +5 -0
- package/svg-icons/mail-link.svg +5 -0
- package/svg-icons/mail.svg +5 -0
- package/svg-icons/medium.svg +5 -0
- package/svg-icons/more-filled.svg +5 -0
- package/svg-icons/more-vertical-filled.svg +5 -0
- package/svg-icons/more-vertical.svg +5 -0
- package/svg-icons/more.svg +5 -0
- package/svg-icons/navigation-filled.svg +5 -0
- package/svg-icons/navigation.svg +5 -0
- package/svg-icons/notebook-add-filled.svg +11 -0
- package/svg-icons/notebook-add.svg +12 -0
- package/svg-icons/notebook-filled.svg +5 -0
- package/svg-icons/notebook.svg +5 -0
- package/svg-icons/only-employee.svg +3 -0
- package/svg-icons/open-filled.svg +5 -0
- package/svg-icons/open.svg +5 -0
- package/svg-icons/patient-filled.svg +3 -0
- package/svg-icons/patient.svg +3 -0
- package/svg-icons/people-add-filled.svg +5 -0
- package/svg-icons/people-add.svg +5 -0
- package/svg-icons/people-filled.svg +5 -0
- package/svg-icons/people.svg +3 -0
- package/svg-icons/percent.svg +5 -0
- package/svg-icons/person-account-filled.svg +3 -0
- package/svg-icons/person-account.svg +3 -0
- package/svg-icons/person-add-filled.svg +5 -0
- package/svg-icons/person-add.svg +5 -0
- package/svg-icons/person-filled.svg +5 -0
- package/svg-icons/person-star-filled.svg +5 -0
- package/svg-icons/person-star.svg +5 -0
- package/svg-icons/person-subtract-filled.svg +5 -0
- package/svg-icons/person-subtract.svg +5 -0
- package/svg-icons/person.svg +5 -0
- package/svg-icons/phone-filled.svg +5 -0
- package/svg-icons/phone.svg +5 -0
- package/svg-icons/pos-filled.svg +5 -0
- package/svg-icons/pos.svg +5 -0
- package/svg-icons/prohibited-filled.svg +5 -0
- package/svg-icons/prohibited.svg +5 -0
- package/svg-icons/project-product.svg +3 -0
- package/svg-icons/question-filled.svg +5 -0
- package/svg-icons/question.svg +5 -0
- package/svg-icons/redo-filled.svg +5 -0
- package/svg-icons/redo.svg +5 -0
- package/svg-icons/ru.svg +10 -0
- package/svg-icons/rub-filled.svg +3 -0
- package/svg-icons/rub.svg +3 -0
- package/svg-icons/save-filled.svg +5 -0
- package/svg-icons/save.svg +5 -0
- package/svg-icons/savings-filled.svg +5 -0
- package/svg-icons/savings.svg +5 -0
- package/svg-icons/search-filled.svg +5 -0
- package/svg-icons/search.svg +5 -0
- package/svg-icons/select-all-off-filled.svg +5 -0
- package/svg-icons/select-all-off.svg +5 -0
- package/svg-icons/select-all-on-filled.svg +5 -0
- package/svg-icons/select-all-on.svg +5 -0
- package/svg-icons/send-filled.svg +5 -0
- package/svg-icons/send.svg +5 -0
- package/svg-icons/settings-filled.svg +5 -0
- package/svg-icons/settings.svg +3 -0
- package/svg-icons/share-android-filled.svg +5 -0
- package/svg-icons/share-android.svg +5 -0
- package/svg-icons/share-filled.svg +5 -0
- package/svg-icons/share.svg +5 -0
- package/svg-icons/sign-out-filled.svg +5 -0
- package/svg-icons/sign-out.svg +5 -0
- package/svg-icons/spinner-filled.svg +5 -0
- package/svg-icons/spinner.svg +5 -0
- package/svg-icons/status-filled.svg +5 -0
- package/svg-icons/status.svg +5 -0
- package/svg-icons/subtract-circle-filled.svg +5 -0
- package/svg-icons/subtract-circle.svg +5 -0
- package/svg-icons/subtract-filled.svg +5 -0
- package/svg-icons/subtract.svg +5 -0
- package/svg-icons/table-cell-edit-filled.svg +10 -0
- package/svg-icons/table-cell-edit.svg +8 -0
- package/svg-icons/telegram.svg +10 -0
- package/svg-icons/timer-filled.svg +5 -0
- package/svg-icons/timer.svg +5 -0
- package/svg-icons/twitter.svg +5 -0
- package/svg-icons/undo-filled.svg +5 -0
- package/svg-icons/undo.svg +5 -0
- package/svg-icons/units-employee.svg +3 -0
- package/svg-icons/usd-filled.svg +3 -0
- package/svg-icons/usd.svg +3 -0
- package/svg-icons/video-filled.svg +3 -0
- package/svg-icons/video.svg +3 -0
- package/svg-icons/wallet-filled.svg +5 -0
- package/svg-icons/wallet.svg +5 -0
- package/svg-icons/warning-filled.svg +3 -0
- package/svg-icons/warning.svg +3 -0
- package/svg-icons/youtube.svg +5 -0
- package/tsconfig.json +33 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconAmd = ({
|
|
6
|
+
size,
|
|
7
|
+
type,
|
|
8
|
+
className = '',
|
|
9
|
+
onClick,
|
|
10
|
+
refHandler,
|
|
11
|
+
id,
|
|
12
|
+
dataId
|
|
13
|
+
}: ISVGIconProps): ReactElement => (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
className={classNames('svg-icon', {
|
|
17
|
+
[`svg-icon__size-${size}`]: size,
|
|
18
|
+
[`svg-icon__type-${type}`]: type,
|
|
19
|
+
[className]: className
|
|
20
|
+
})}
|
|
21
|
+
viewBox="0 0 24 24"
|
|
22
|
+
fill="none"
|
|
23
|
+
onClick={onClick}
|
|
24
|
+
ref={refHandler}
|
|
25
|
+
id={id}
|
|
26
|
+
data-id={dataId ? `${dataId}-svg-icon` : ''}
|
|
27
|
+
>
|
|
28
|
+
<path
|
|
29
|
+
d="M5.75511 9.31063C5.75511 7.77012 6.32348 6.68322 7.12352 5.97204C7.94069 5.24564 9.05657 4.86249 10.2029 4.86253C11.3492 4.86255 12.4651 5.24575 13.2823 5.9722C14.0824 6.68341 14.6508 7.7703 14.6508 9.31065V11.9654H11.996C11.4816 11.9654 11.0647 12.3823 11.0647 12.8966C11.0647 13.411 11.4816 13.8279 11.996 13.8279H14.6508V15.5514H11.996C11.4816 15.5514 11.0647 15.9683 11.0647 16.4827C11.0647 16.997 11.4816 17.4139 11.996 17.4139H14.6508V20.0687C14.6508 20.5831 15.0677 21 15.582 21C16.0964 21 16.5133 20.5831 16.5133 20.0687V17.4139H19.1681C19.6824 17.4139 20.0993 16.997 20.0993 16.4827C20.0993 15.9683 19.6824 15.5514 19.1681 15.5514H16.5133V13.8279H19.1681C19.6824 13.8279 20.0993 13.411 20.0993 12.8966C20.0993 12.3823 19.6824 11.9654 19.1681 11.9654H16.5133V9.31065C16.5133 7.26491 15.7369 5.66212 14.5198 4.58017C13.3198 3.51346 11.7461 3.00004 10.2029 3C8.65975 2.99995 7.08609 3.51329 5.88609 4.58C4.66896 5.66194 3.89258 7.26476 3.89258 9.31063C3.89258 9.82494 4.30952 10.2419 4.82384 10.2419C5.33816 10.2419 5.75511 9.82494 5.75511 9.31063Z"
|
|
30
|
+
fill="#222222"
|
|
31
|
+
/>
|
|
32
|
+
</svg>
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
export default IconAmd
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconAmdFilled = ({
|
|
6
|
+
size,
|
|
7
|
+
type,
|
|
8
|
+
className = '',
|
|
9
|
+
onClick,
|
|
10
|
+
refHandler,
|
|
11
|
+
id,
|
|
12
|
+
dataId
|
|
13
|
+
}: ISVGIconProps): ReactElement => (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
className={classNames('svg-icon', {
|
|
17
|
+
[`svg-icon__size-${size}`]: size,
|
|
18
|
+
[`svg-icon__type-${type}`]: type,
|
|
19
|
+
[className]: className
|
|
20
|
+
})}
|
|
21
|
+
viewBox="0 0 24 24"
|
|
22
|
+
fill="none"
|
|
23
|
+
onClick={onClick}
|
|
24
|
+
ref={refHandler}
|
|
25
|
+
id={id}
|
|
26
|
+
data-id={dataId ? `${dataId}-svg-icon` : ''}
|
|
27
|
+
>
|
|
28
|
+
<path
|
|
29
|
+
d="M5.75511 9.31063C5.75511 7.77012 6.32348 6.68322 7.12352 5.97204C7.94069 5.24564 9.05657 4.86249 10.2029 4.86253C11.3492 4.86255 12.4651 5.24575 13.2823 5.9722C14.0824 6.68341 14.6508 7.7703 14.6508 9.31065V11.9654H11.996C11.4816 11.9654 11.0647 12.3823 11.0647 12.8966C11.0647 13.411 11.4816 13.8279 11.996 13.8279H14.6508V15.5514H11.996C11.4816 15.5514 11.0647 15.9683 11.0647 16.4827C11.0647 16.997 11.4816 17.4139 11.996 17.4139H14.6508V20.0687C14.6508 20.5831 15.0677 21 15.582 21C16.0964 21 16.5133 20.5831 16.5133 20.0687V17.4139H19.1681C19.6824 17.4139 20.0993 16.997 20.0993 16.4827C20.0993 15.9683 19.6824 15.5514 19.1681 15.5514H16.5133V13.8279H19.1681C19.6824 13.8279 20.0993 13.411 20.0993 12.8966C20.0993 12.3823 19.6824 11.9654 19.1681 11.9654H16.5133V9.31065C16.5133 7.26491 15.7369 5.66212 14.5198 4.58017C13.3198 3.51346 11.7461 3.00004 10.2029 3C8.65975 2.99995 7.08609 3.51329 5.88609 4.58C4.66896 5.66194 3.89258 7.26476 3.89258 9.31063C3.89258 9.82494 4.30952 10.2419 4.82384 10.2419C5.33816 10.2419 5.75511 9.82494 5.75511 9.31063Z"
|
|
30
|
+
fill="#222222"
|
|
31
|
+
/>
|
|
32
|
+
</svg>
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
export default IconAmdFilled
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconApple = ({
|
|
6
|
+
size,
|
|
7
|
+
type,
|
|
8
|
+
className = '',
|
|
9
|
+
onClick,
|
|
10
|
+
refHandler,
|
|
11
|
+
id,
|
|
12
|
+
dataId
|
|
13
|
+
}: ISVGIconProps): ReactElement => (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
className={classNames('svg-icon', {
|
|
17
|
+
[`svg-icon__size-${size}`]: size,
|
|
18
|
+
[`svg-icon__type-${type}`]: type,
|
|
19
|
+
[className]: className
|
|
20
|
+
})}
|
|
21
|
+
viewBox="0 0 24 24"
|
|
22
|
+
fill="none"
|
|
23
|
+
onClick={onClick}
|
|
24
|
+
ref={refHandler}
|
|
25
|
+
id={id}
|
|
26
|
+
data-id={dataId ? `${dataId}-svg-icon` : ''}
|
|
27
|
+
>
|
|
28
|
+
<g id="Company=Apple, Style=Gray, Background=None">
|
|
29
|
+
<path
|
|
30
|
+
id="path4"
|
|
31
|
+
d="M20.8428 17.1449C20.5101 17.9135 20.1163 18.6211 19.66 19.2715C19.0381 20.1583 18.5288 20.7721 18.1364 21.113C17.528 21.6724 16.8762 21.959 16.1782 21.9753C15.6771 21.9753 15.0728 21.8327 14.3693 21.5434C13.6636 21.2555 13.015 21.113 12.422 21.113C11.8 21.113 11.133 21.2555 10.4195 21.5434C9.70493 21.8327 9.12928 21.9834 8.68916 21.9984C8.01981 22.0269 7.35264 21.7322 6.68668 21.113C6.26164 20.7422 5.72999 20.1067 5.09309 19.2063C4.40976 18.2449 3.84796 17.13 3.40784 15.8589C2.93648 14.486 2.7002 13.1565 2.7002 11.8694C2.7002 10.3951 3.01878 9.12345 3.65689 8.05784C4.1584 7.20191 4.82557 6.52672 5.66059 6.03105C6.49562 5.53539 7.39786 5.2828 8.36949 5.26664C8.90114 5.26664 9.59833 5.43109 10.4647 5.75429C11.3287 6.07858 11.8834 6.24303 12.1266 6.24303C12.3085 6.24303 12.9247 6.05074 13.9694 5.66738C14.9573 5.31186 15.7911 5.16466 16.4742 5.22264C18.3251 5.37202 19.7157 6.10167 20.6405 7.41619C18.9851 8.4192 18.1662 9.82403 18.1825 11.6262C18.1975 13.03 18.7067 14.1981 19.7076 15.1256C20.1611 15.5561 20.6676 15.8888 21.2312 16.1251C21.109 16.4795 20.98 16.819 20.8428 17.1449ZM16.5978 0.440369C16.5978 1.54062 16.1958 2.56792 15.3946 3.51878C14.4277 4.64917 13.2582 5.30236 11.99 5.19929C11.9738 5.06729 11.9645 4.92837 11.9645 4.78239C11.9645 3.72615 12.4243 2.59576 13.2408 1.67152C13.6485 1.20356 14.167 0.814453 14.7957 0.504058C15.4231 0.198295 16.0166 0.0292007 16.5747 0.000244141C16.591 0.147331 16.5978 0.294426 16.5978 0.440355V0.440369Z"
|
|
32
|
+
fill="#555555"
|
|
33
|
+
/>
|
|
34
|
+
</g>
|
|
35
|
+
</svg>
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
export default IconApple
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconArrowDown = ({
|
|
6
|
+
size,
|
|
7
|
+
type,
|
|
8
|
+
className = '',
|
|
9
|
+
onClick,
|
|
10
|
+
refHandler,
|
|
11
|
+
id,
|
|
12
|
+
dataId
|
|
13
|
+
}: ISVGIconProps): ReactElement => (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
className={classNames('svg-icon', {
|
|
17
|
+
[`svg-icon__size-${size}`]: size,
|
|
18
|
+
[`svg-icon__type-${type}`]: type,
|
|
19
|
+
[className]: className
|
|
20
|
+
})}
|
|
21
|
+
viewBox="0 0 24 24"
|
|
22
|
+
fill="none"
|
|
23
|
+
onClick={onClick}
|
|
24
|
+
ref={refHandler}
|
|
25
|
+
id={id}
|
|
26
|
+
data-id={dataId ? `${dataId}-svg-icon` : ''}
|
|
27
|
+
>
|
|
28
|
+
<g id="Direction=Down, Size=24, Theme=Regular">
|
|
29
|
+
<path
|
|
30
|
+
id="Shape"
|
|
31
|
+
d="M19.7906 13.2673C20.0763 12.9674 20.0647 12.4926 19.7648 12.2069C19.4649 11.9213 18.9901 11.9328 18.7045 12.2327L12.75 18.484V3.75C12.75 3.33579 12.4142 3 12 3C11.5858 3 11.25 3.33579 11.25 3.75V18.4844L5.29514 12.2327C5.00945 11.9328 4.53472 11.9213 4.23479 12.2069C3.93487 12.4926 3.92332 12.9674 4.20901 13.2673L11.2757 20.6862C11.4367 20.8553 11.6422 20.9552 11.8557 20.9861C11.9024 20.9952 11.9506 21 12 21C12.0497 21 12.0982 20.9952 12.1452 20.9859C12.3583 20.9548 12.5632 20.8549 12.7239 20.6862L19.7906 13.2673Z"
|
|
32
|
+
fill="#222222"
|
|
33
|
+
/>
|
|
34
|
+
</g>
|
|
35
|
+
</svg>
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
export default IconArrowDown
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconArrowDownFilled = ({
|
|
6
|
+
size,
|
|
7
|
+
type,
|
|
8
|
+
className = '',
|
|
9
|
+
onClick,
|
|
10
|
+
refHandler,
|
|
11
|
+
id,
|
|
12
|
+
dataId
|
|
13
|
+
}: ISVGIconProps): ReactElement => (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
className={classNames('svg-icon', {
|
|
17
|
+
[`svg-icon__size-${size}`]: size,
|
|
18
|
+
[`svg-icon__type-${type}`]: type,
|
|
19
|
+
[className]: className
|
|
20
|
+
})}
|
|
21
|
+
viewBox="0 0 24 24"
|
|
22
|
+
fill="none"
|
|
23
|
+
onClick={onClick}
|
|
24
|
+
ref={refHandler}
|
|
25
|
+
id={id}
|
|
26
|
+
data-id={dataId ? `${dataId}-svg-icon` : ''}
|
|
27
|
+
>
|
|
28
|
+
<g id="Direction=Down, Size=24, Theme=Filled">
|
|
29
|
+
<path
|
|
30
|
+
id="Shape"
|
|
31
|
+
d="M19.7159 13.7045C20.1036 13.3111 20.0989 12.678 19.7055 12.2903C19.3121 11.9027 18.6789 11.9074 18.2913 12.3008L13 17.6711V4C13 3.44771 12.5522 3 12 3C11.4477 3 11 3.44772 11 4V17.6646L5.71501 12.3008C5.32739 11.9074 4.69424 11.9027 4.30083 12.2903C3.90743 12.678 3.90274 13.3111 4.29036 13.7045L11.1127 20.6287C11.6024 21.1256 12.4039 21.1256 12.8936 20.6287L19.7159 13.7045Z"
|
|
32
|
+
fill="#222222"
|
|
33
|
+
/>
|
|
34
|
+
</g>
|
|
35
|
+
</svg>
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
export default IconArrowDownFilled
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconArrowDownLeft = ({
|
|
6
|
+
size,
|
|
7
|
+
type,
|
|
8
|
+
className = '',
|
|
9
|
+
onClick,
|
|
10
|
+
refHandler,
|
|
11
|
+
id,
|
|
12
|
+
dataId
|
|
13
|
+
}: ISVGIconProps): ReactElement => (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
className={classNames('svg-icon', {
|
|
17
|
+
[`svg-icon__size-${size}`]: size,
|
|
18
|
+
[`svg-icon__type-${type}`]: type,
|
|
19
|
+
[className]: className
|
|
20
|
+
})}
|
|
21
|
+
viewBox="0 0 24 24"
|
|
22
|
+
fill="none"
|
|
23
|
+
onClick={onClick}
|
|
24
|
+
ref={refHandler}
|
|
25
|
+
id={id}
|
|
26
|
+
data-id={dataId ? `${dataId}-svg-icon` : ''}
|
|
27
|
+
>
|
|
28
|
+
<g id="Direction=Down Left, Size=24, Theme=Regular">
|
|
29
|
+
<path
|
|
30
|
+
id="Shape"
|
|
31
|
+
d="M13.2456 21.0049C13.6598 21.0049 13.9956 20.6692 13.9956 20.2549C13.9956 19.8407 13.6598 19.5049 13.2456 19.5049H5.5765L20.7763 4.30517C21.0748 4.00659 21.0748 3.52251 20.7763 3.22393C20.4777 2.92536 19.9936 2.92536 19.695 3.22393L4.49561 18.4234V10.7549C4.49561 10.3407 4.15982 10.0049 3.74561 10.0049C3.33139 10.0049 2.99561 10.3407 2.99561 10.7549V20.2549C2.99561 20.6692 3.33139 21.0049 3.74561 21.0049H13.2456Z"
|
|
32
|
+
fill="#222222"
|
|
33
|
+
/>
|
|
34
|
+
</g>
|
|
35
|
+
</svg>
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
export default IconArrowDownLeft
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconArrowDownLeftFilled = ({
|
|
6
|
+
size,
|
|
7
|
+
type,
|
|
8
|
+
className = '',
|
|
9
|
+
onClick,
|
|
10
|
+
refHandler,
|
|
11
|
+
id,
|
|
12
|
+
dataId
|
|
13
|
+
}: ISVGIconProps): ReactElement => (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
className={classNames('svg-icon', {
|
|
17
|
+
[`svg-icon__size-${size}`]: size,
|
|
18
|
+
[`svg-icon__type-${type}`]: type,
|
|
19
|
+
[className]: className
|
|
20
|
+
})}
|
|
21
|
+
viewBox="0 0 24 24"
|
|
22
|
+
fill="none"
|
|
23
|
+
onClick={onClick}
|
|
24
|
+
ref={refHandler}
|
|
25
|
+
id={id}
|
|
26
|
+
data-id={dataId ? `${dataId}-svg-icon` : ''}
|
|
27
|
+
>
|
|
28
|
+
<g id="Direction=Down Left, Size=24, Theme=Filled">
|
|
29
|
+
<path
|
|
30
|
+
id="Shape"
|
|
31
|
+
d="M13 20.9999C13.5523 20.9999 14 20.5521 14 19.9999C14 19.4476 13.5523 18.9999 13 18.9999H6.41435L20.7071 4.70711C21.0976 4.31658 21.0976 3.68342 20.7071 3.29289C20.3166 2.90237 19.6834 2.90237 19.2929 3.29289L5 17.5858V10.9999C5 10.4476 4.55228 9.99987 4 9.99987C3.44772 9.99987 3 10.4476 3 10.9999V19.9999C3 20.5521 3.44772 20.9999 4 20.9999H13Z"
|
|
32
|
+
fill="#222222"
|
|
33
|
+
/>
|
|
34
|
+
</g>
|
|
35
|
+
</svg>
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
export default IconArrowDownLeftFilled
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconArrowDownload = ({
|
|
6
|
+
size,
|
|
7
|
+
type,
|
|
8
|
+
className = '',
|
|
9
|
+
onClick,
|
|
10
|
+
refHandler,
|
|
11
|
+
id,
|
|
12
|
+
dataId
|
|
13
|
+
}: ISVGIconProps): ReactElement => (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
className={classNames('svg-icon', {
|
|
17
|
+
[`svg-icon__size-${size}`]: size,
|
|
18
|
+
[`svg-icon__type-${type}`]: type,
|
|
19
|
+
[className]: className
|
|
20
|
+
})}
|
|
21
|
+
viewBox="0 0 24 24"
|
|
22
|
+
fill="none"
|
|
23
|
+
onClick={onClick}
|
|
24
|
+
ref={refHandler}
|
|
25
|
+
id={id}
|
|
26
|
+
data-id={dataId ? `${dataId}-svg-icon` : ''}
|
|
27
|
+
>
|
|
28
|
+
<g id="Size=24, Theme=Regular">
|
|
29
|
+
<path
|
|
30
|
+
id="Shape"
|
|
31
|
+
d="M18.2498 20.4999C18.664 20.4998 19 20.8355 19 21.2497C19 21.6639 18.6644 21.9998 18.2502 21.9999L5.25022 22.0037C4.836 22.0038 4.5 21.6681 4.5 21.2539C4.5 20.8397 4.83557 20.5038 5.24978 20.5037L18.2498 20.4999ZM11.6482 2.01173L11.75 2.00488C12.1297 2.00488 12.4435 2.28704 12.4932 2.65311L12.5 2.75488L12.499 16.4399L16.2208 12.7196C16.4871 12.4533 16.9038 12.4291 17.1974 12.647L17.2815 12.7197C17.5477 12.986 17.5719 13.4026 17.354 13.6962L17.2814 13.7803L12.2837 18.7769C12.0176 19.043 11.6012 19.0673 11.3076 18.8498L11.2235 18.7772L6.22003 13.7806C5.92694 13.4879 5.92661 13.0131 6.21931 12.72C6.48539 12.4535 6.90204 12.429 7.1958 12.6467L7.27997 12.7192L10.999 16.4329L11 2.75488C11 2.37519 11.2822 2.06139 11.6482 2.01173L11.75 2.00488L11.6482 2.01173Z"
|
|
32
|
+
fill="#222222"
|
|
33
|
+
/>
|
|
34
|
+
</g>
|
|
35
|
+
</svg>
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
export default IconArrowDownload
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconArrowDownloadFilled = ({
|
|
6
|
+
size,
|
|
7
|
+
type,
|
|
8
|
+
className = '',
|
|
9
|
+
onClick,
|
|
10
|
+
refHandler,
|
|
11
|
+
id,
|
|
12
|
+
dataId
|
|
13
|
+
}: ISVGIconProps): ReactElement => (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
className={classNames('svg-icon', {
|
|
17
|
+
[`svg-icon__size-${size}`]: size,
|
|
18
|
+
[`svg-icon__type-${type}`]: type,
|
|
19
|
+
[className]: className
|
|
20
|
+
})}
|
|
21
|
+
viewBox="0 0 24 24"
|
|
22
|
+
fill="none"
|
|
23
|
+
onClick={onClick}
|
|
24
|
+
ref={refHandler}
|
|
25
|
+
id={id}
|
|
26
|
+
data-id={dataId ? `${dataId}-svg-icon` : ''}
|
|
27
|
+
>
|
|
28
|
+
<g id="Size=24, Theme=Filled">
|
|
29
|
+
<path
|
|
30
|
+
id="Shape"
|
|
31
|
+
d="M5.25 20.5H18.7477C19.1619 20.5 19.4977 20.8358 19.4977 21.25C19.4977 21.6297 19.2155 21.9435 18.8494 21.9932L18.7477 22H5.25C4.83579 22 4.5 21.6642 4.5 21.25C4.5 20.8703 4.78215 20.5565 5.14823 20.5069L5.25 20.5H18.7477H5.25ZM11.8834 2.00233L12 1.99561C12.5128 1.99561 12.9355 2.38165 12.9933 2.87898L13 2.99561V15.5856L16.2941 12.2928C16.6546 11.9324 17.2218 11.9047 17.6141 12.2098L17.7083 12.293C18.0687 12.6535 18.0964 13.2207 17.7913 13.613L17.7081 13.7072L12.7105 18.7038C12.3502 19.064 11.7833 19.0919 11.391 18.7873L11.2968 18.7042L6.29338 13.7076C5.90259 13.3173 5.90215 12.6842 6.29241 12.2934C6.65265 11.9327 7.21986 11.9045 7.61236 12.2093L7.70662 12.2924L11 15.5806V2.99561C11 2.48277 11.386 2.0601 11.8834 2.00233L12 1.99561L11.8834 2.00233Z"
|
|
32
|
+
fill="#222222"
|
|
33
|
+
/>
|
|
34
|
+
</g>
|
|
35
|
+
</svg>
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
export default IconArrowDownloadFilled
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconArrowEnter = ({
|
|
6
|
+
size,
|
|
7
|
+
type,
|
|
8
|
+
className = '',
|
|
9
|
+
onClick,
|
|
10
|
+
refHandler,
|
|
11
|
+
id,
|
|
12
|
+
dataId
|
|
13
|
+
}: ISVGIconProps): ReactElement => (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
className={classNames('svg-icon', {
|
|
17
|
+
[`svg-icon__size-${size}`]: size,
|
|
18
|
+
[`svg-icon__type-${type}`]: type,
|
|
19
|
+
[className]: className
|
|
20
|
+
})}
|
|
21
|
+
viewBox="0 0 24 24"
|
|
22
|
+
fill="none"
|
|
23
|
+
onClick={onClick}
|
|
24
|
+
ref={refHandler}
|
|
25
|
+
id={id}
|
|
26
|
+
data-id={dataId ? `${dataId}-svg-icon` : ''}
|
|
27
|
+
>
|
|
28
|
+
<path
|
|
29
|
+
d="M9.0002 20.4001C8.66883 20.4001 8.4002 20.1315 8.4002 19.8001C8.4002 19.4687 8.66883 19.2001 9.0002 19.2001H16.8002C18.1257 19.2001 19.2002 18.1256 19.2002 16.8001V7.2001C19.2002 5.87461 18.1257 4.8001 16.8002 4.8001H9.0002C8.66883 4.8001 8.4002 4.53147 8.4002 4.2001C8.4002 3.86873 8.66883 3.6001 9.0002 3.6001H16.8002C18.7884 3.6001 20.4002 5.21187 20.4002 7.2001V16.8001C20.4002 18.7883 18.7884 20.4001 16.8002 20.4001H9.0002ZM9.17593 7.37583C9.41025 7.14152 9.79014 7.14152 10.0245 7.37583L14.2245 11.5758C14.4588 11.8101 14.4588 12.19 14.2245 12.4244L10.0245 16.6244C9.79014 16.8587 9.41025 16.8587 9.17593 16.6244C8.94162 16.39 8.94162 16.0101 9.17593 15.7758L12.3517 12.6001H1.8002C1.46882 12.6001 1.2002 12.3315 1.2002 12.0001C1.2002 11.6687 1.46882 11.4001 1.8002 11.4001H12.3517L9.17593 8.22436C8.94162 7.99005 8.94162 7.61015 9.17593 7.37583Z"
|
|
30
|
+
fill="#222222"
|
|
31
|
+
/>
|
|
32
|
+
</svg>
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
export default IconArrowEnter
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconArrowEnterFilled = ({
|
|
6
|
+
size,
|
|
7
|
+
type,
|
|
8
|
+
className = '',
|
|
9
|
+
onClick,
|
|
10
|
+
refHandler,
|
|
11
|
+
id,
|
|
12
|
+
dataId
|
|
13
|
+
}: ISVGIconProps): ReactElement => (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
className={classNames('svg-icon', {
|
|
17
|
+
[`svg-icon__size-${size}`]: size,
|
|
18
|
+
[`svg-icon__type-${type}`]: type,
|
|
19
|
+
[className]: className
|
|
20
|
+
})}
|
|
21
|
+
viewBox="0 0 24 24"
|
|
22
|
+
fill="none"
|
|
23
|
+
onClick={onClick}
|
|
24
|
+
ref={refHandler}
|
|
25
|
+
id={id}
|
|
26
|
+
data-id={dataId ? `${dataId}-svg-icon` : ''}
|
|
27
|
+
>
|
|
28
|
+
<path
|
|
29
|
+
d="M9.30019 21C8.80314 21 8.4002 20.5971 8.4002 20.1C8.4002 19.6029 8.80314 19.2 9.30019 19.2H16.8002C18.1257 19.2 19.2002 18.1255 19.2002 16.8V7.2C19.2002 5.87452 18.1257 4.8 16.8002 4.8H9.30019C8.80314 4.8 8.4002 4.39706 8.4002 3.9C8.4002 3.40294 8.80314 3 9.30019 3H16.8002C19.1198 3 21.0002 4.8804 21.0002 7.2V16.8C21.0002 19.1196 19.1198 21 16.8002 21H9.30019ZM9.28974 7.43868C9.65498 7.10154 10.2244 7.12431 10.5615 7.48955L14.1615 11.3896C14.4798 11.7343 14.4798 12.2657 14.1615 12.6105L10.5615 16.5105C10.2244 16.8757 9.65498 16.8985 9.28974 16.5613C8.9245 16.2242 8.90173 15.6548 9.23887 15.2896L11.4446 12.9H2.1002C1.60314 12.9 1.2002 12.4971 1.2002 12C1.2002 11.5029 1.60314 11.1 2.1002 11.1H11.4446L9.23887 8.71046C8.90173 8.34522 8.9245 7.77583 9.28974 7.43868Z"
|
|
30
|
+
fill="#222222"
|
|
31
|
+
/>
|
|
32
|
+
</svg>
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
export default IconArrowEnterFilled
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconArrowExit = ({
|
|
6
|
+
size,
|
|
7
|
+
type,
|
|
8
|
+
className = '',
|
|
9
|
+
onClick,
|
|
10
|
+
refHandler,
|
|
11
|
+
id,
|
|
12
|
+
dataId
|
|
13
|
+
}: ISVGIconProps): ReactElement => (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
className={classNames('svg-icon', {
|
|
17
|
+
[`svg-icon__size-${size}`]: size,
|
|
18
|
+
[`svg-icon__type-${type}`]: type,
|
|
19
|
+
[className]: className
|
|
20
|
+
})}
|
|
21
|
+
viewBox="0 0 24 24"
|
|
22
|
+
fill="none"
|
|
23
|
+
onClick={onClick}
|
|
24
|
+
ref={refHandler}
|
|
25
|
+
id={id}
|
|
26
|
+
data-id={dataId ? `${dataId}-svg-icon` : ''}
|
|
27
|
+
>
|
|
28
|
+
<path
|
|
29
|
+
d="M15.0001 20.4001C15.3315 20.4001 15.6001 20.1315 15.6001 19.8001C15.6001 19.4687 15.3315 19.2001 15.0001 19.2001H7.2001C5.87461 19.2001 4.8001 18.1256 4.8001 16.8001V7.2001C4.8001 5.87461 5.87461 4.8001 7.2001 4.8001H15.0001C15.3315 4.8001 15.6001 4.53147 15.6001 4.2001C15.6001 3.86873 15.3315 3.6001 15.0001 3.6001H7.2001C5.21187 3.6001 3.6001 5.21187 3.6001 7.2001V16.8001C3.6001 18.7883 5.21187 20.4001 7.2001 20.4001H15.0001ZM16.3758 7.37583C16.6101 7.14152 16.99 7.14152 17.2244 7.37583L21.4244 11.5758C21.6587 11.8101 21.6587 12.19 21.4244 12.4244L17.2244 16.6244C16.99 16.8587 16.6101 16.8587 16.3758 16.6244C16.1415 16.39 16.1415 16.0101 16.3758 15.7758L19.5516 12.6001H9.0001C8.66873 12.6001 8.4001 12.3315 8.4001 12.0001C8.4001 11.6687 8.66873 11.4001 9.0001 11.4001H19.5516L16.3758 8.22436C16.1415 7.99005 16.1415 7.61015 16.3758 7.37583Z"
|
|
30
|
+
fill="#222222"
|
|
31
|
+
/>
|
|
32
|
+
</svg>
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
export default IconArrowExit
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconArrowExitFilled = ({
|
|
6
|
+
size,
|
|
7
|
+
type,
|
|
8
|
+
className = '',
|
|
9
|
+
onClick,
|
|
10
|
+
refHandler,
|
|
11
|
+
id,
|
|
12
|
+
dataId
|
|
13
|
+
}: ISVGIconProps): ReactElement => (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
className={classNames('svg-icon', {
|
|
17
|
+
[`svg-icon__size-${size}`]: size,
|
|
18
|
+
[`svg-icon__type-${type}`]: type,
|
|
19
|
+
[className]: className
|
|
20
|
+
})}
|
|
21
|
+
viewBox="0 0 24 24"
|
|
22
|
+
fill="none"
|
|
23
|
+
onClick={onClick}
|
|
24
|
+
ref={refHandler}
|
|
25
|
+
id={id}
|
|
26
|
+
data-id={dataId ? `${dataId}-svg-icon` : ''}
|
|
27
|
+
>
|
|
28
|
+
<path
|
|
29
|
+
d="M15.3001 21C15.7972 21 16.2001 20.5971 16.2001 20.1C16.2001 19.6029 15.7972 19.2 15.3001 19.2H7.8001C6.47461 19.2 5.4001 18.1255 5.4001 16.8V7.2C5.4001 5.87452 6.47461 4.8 7.8001 4.8H15.3001C15.7972 4.8 16.2001 4.39706 16.2001 3.9C16.2001 3.40294 15.7972 3 15.3001 3H7.8001C5.4805 3 3.6001 4.8804 3.6001 7.2V16.8C3.6001 19.1196 5.4805 21 7.8001 21H15.3001ZM16.4896 7.43868C16.8549 7.10154 17.4243 7.12431 17.7614 7.48955L21.3614 11.3896C21.6797 11.7343 21.6797 12.2657 21.3614 12.6105L17.7614 16.5105C17.4243 16.8757 16.8549 16.8985 16.4896 16.5613C16.1244 16.2242 16.1016 15.6548 16.4388 15.2896L18.6445 12.9H9.3001C8.80304 12.9 8.4001 12.4971 8.4001 12C8.4001 11.5029 8.80304 11.1 9.3001 11.1H18.6445L16.4388 8.71046C16.1016 8.34522 16.1244 7.77583 16.4896 7.43868Z"
|
|
30
|
+
fill="#222222"
|
|
31
|
+
/>
|
|
32
|
+
</svg>
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
export default IconArrowExitFilled
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconArrowExportLeftToRight = ({
|
|
6
|
+
size,
|
|
7
|
+
type,
|
|
8
|
+
className = '',
|
|
9
|
+
onClick,
|
|
10
|
+
refHandler,
|
|
11
|
+
id,
|
|
12
|
+
dataId
|
|
13
|
+
}: ISVGIconProps): ReactElement => (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
className={classNames('svg-icon', {
|
|
17
|
+
[`svg-icon__size-${size}`]: size,
|
|
18
|
+
[`svg-icon__type-${type}`]: type,
|
|
19
|
+
[className]: className
|
|
20
|
+
})}
|
|
21
|
+
viewBox="0 0 24 24"
|
|
22
|
+
fill="none"
|
|
23
|
+
onClick={onClick}
|
|
24
|
+
ref={refHandler}
|
|
25
|
+
id={id}
|
|
26
|
+
data-id={dataId ? `${dataId}-svg-icon` : ''}
|
|
27
|
+
>
|
|
28
|
+
<g id="Direction=LTR, Size=24, Theme=Regular">
|
|
29
|
+
<path
|
|
30
|
+
id="Shape"
|
|
31
|
+
d="M2.7525 4.5C3.1322 4.5 3.44594 4.78227 3.49554 5.14836L3.50237 5.25014L3.5 18.2542C3.49992 18.6684 3.16408 19.0041 2.74986 19.0041C2.37017 19.0041 2.05642 18.7218 2.00683 18.3557L2 18.2539L2.00237 5.24986C2.00244 4.83565 2.33829 4.5 2.7525 4.5ZM15.6471 6.30373L15.7197 6.21961C15.986 5.95338 16.4027 5.92921 16.6963 6.1471L16.7804 6.21972L21.777 11.2174C22.0431 11.4835 22.0674 11.8999 21.8498 12.1935L21.7773 12.2776L16.7807 17.2811C16.488 17.5742 16.0131 17.5745 15.72 17.2818C15.4536 17.0157 15.4291 16.5991 15.6467 16.3053L15.7193 16.2211L19.43 12.504L5.75295 12.5049C5.37326 12.5049 5.05946 12.2228 5.0098 11.8567L5.00295 11.7549C5.00295 11.3752 5.28511 11.0615 5.65118 11.0118L5.75295 11.0049L19.443 11.004L15.7196 7.28028C15.4534 7.01398 15.4292 6.59732 15.6471 6.30373L15.7197 6.21961L15.6471 6.30373Z"
|
|
32
|
+
fill="#222222"
|
|
33
|
+
/>
|
|
34
|
+
</g>
|
|
35
|
+
</svg>
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
export default IconArrowExportLeftToRight
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconArrowExportLeftToRightFilled = ({
|
|
6
|
+
size,
|
|
7
|
+
type,
|
|
8
|
+
className = '',
|
|
9
|
+
onClick,
|
|
10
|
+
refHandler,
|
|
11
|
+
id,
|
|
12
|
+
dataId
|
|
13
|
+
}: ISVGIconProps): ReactElement => (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
className={classNames('svg-icon', {
|
|
17
|
+
[`svg-icon__size-${size}`]: size,
|
|
18
|
+
[`svg-icon__type-${type}`]: type,
|
|
19
|
+
[className]: className
|
|
20
|
+
})}
|
|
21
|
+
viewBox="0 0 24 24"
|
|
22
|
+
fill="none"
|
|
23
|
+
onClick={onClick}
|
|
24
|
+
ref={refHandler}
|
|
25
|
+
id={id}
|
|
26
|
+
data-id={dataId ? `${dataId}-svg-icon` : ''}
|
|
27
|
+
>
|
|
28
|
+
<g id="Direction=LTR, Size=24, Theme=Filled">
|
|
29
|
+
<path
|
|
30
|
+
id="Shape"
|
|
31
|
+
d="M2.75 4.50391C3.1297 4.50391 3.44349 4.78606 3.49315 5.15214L3.5 5.25391V18.7525C3.5 19.1667 3.16421 19.5025 2.75 19.5025C2.3703 19.5025 2.05651 19.2204 2.00685 18.8543L2 18.7525V5.25391C2 4.83969 2.33579 4.50391 2.75 4.50391ZM15.2098 6.38704L15.293 6.29284C15.6535 5.9324 16.2207 5.90473 16.613 6.20979L16.7072 6.29299L21.7038 11.2906C22.064 11.651 22.0919 12.2178 21.7873 12.6101L21.7042 12.7043L16.7076 17.7077C16.3173 18.0985 15.6842 18.099 15.2934 17.7087C14.9326 17.3485 14.9045 16.7813 15.2093 16.3888L15.2924 16.2945L18.581 12.9999L6 13C5.48716 13 5.06449 12.614 5.00673 12.1166L5 12C5 11.4872 5.38604 11.0645 5.88338 11.0068L6 11L18.584 10.9999L15.2928 7.70706C14.9324 7.34654 14.9047 6.7793 15.2098 6.38704L15.293 6.29284L15.2098 6.38704Z"
|
|
32
|
+
fill="#222222"
|
|
33
|
+
/>
|
|
34
|
+
</g>
|
|
35
|
+
</svg>
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
export default IconArrowExportLeftToRightFilled
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconArrowExportRightToLeft = ({
|
|
6
|
+
size,
|
|
7
|
+
type,
|
|
8
|
+
className = '',
|
|
9
|
+
onClick,
|
|
10
|
+
refHandler,
|
|
11
|
+
id,
|
|
12
|
+
dataId
|
|
13
|
+
}: ISVGIconProps): ReactElement => (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
className={classNames('svg-icon', {
|
|
17
|
+
[`svg-icon__size-${size}`]: size,
|
|
18
|
+
[`svg-icon__type-${type}`]: type,
|
|
19
|
+
[className]: className
|
|
20
|
+
})}
|
|
21
|
+
viewBox="0 0 24 24"
|
|
22
|
+
fill="none"
|
|
23
|
+
onClick={onClick}
|
|
24
|
+
ref={refHandler}
|
|
25
|
+
id={id}
|
|
26
|
+
data-id={dataId ? `${dataId}-svg-icon` : ''}
|
|
27
|
+
>
|
|
28
|
+
<g id="Direction=RTL, Size=24, Theme=Regular">
|
|
29
|
+
<path
|
|
30
|
+
id="Shape"
|
|
31
|
+
d="M21.2446 4.5C20.8649 4.5 20.5511 4.78227 20.5015 5.14836L20.4947 5.25014L20.4971 18.2542C20.4971 18.6684 20.833 19.0041 21.2472 19.0041C21.6269 19.0041 21.9406 18.7218 21.9902 18.3557L21.9971 18.2539L21.9947 5.24986C21.9946 4.83565 21.6588 4.5 21.2446 4.5ZM8.34997 6.30373L8.27735 6.21961C8.01105 5.95338 7.59439 5.92921 7.3008 6.1471L7.21669 6.21972L2.22007 11.2174C1.95398 11.4835 1.92968 11.8999 2.14724 12.1935L2.21976 12.2776L7.21638 17.2811C7.50907 17.5742 7.98394 17.5745 8.27704 17.2818C8.54349 17.0157 8.56798 16.5991 8.35032 16.3053L8.27776 16.2211L4.56707 12.504L18.2441 12.5049C18.6238 12.5049 18.9376 12.2228 18.9873 11.8567L18.9941 11.7549C18.9941 11.3752 18.712 11.0615 18.3459 11.0118L18.2441 11.0049L4.55407 11.004L8.27746 7.28028C8.54369 7.01398 8.56786 6.59732 8.34997 6.30373L8.27735 6.21961L8.34997 6.30373Z"
|
|
32
|
+
fill="#222222"
|
|
33
|
+
/>
|
|
34
|
+
</g>
|
|
35
|
+
</svg>
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
export default IconArrowExportRightToLeft
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconArrowExportRightToLeftFilled = ({
|
|
6
|
+
size,
|
|
7
|
+
type,
|
|
8
|
+
className = '',
|
|
9
|
+
onClick,
|
|
10
|
+
refHandler,
|
|
11
|
+
id,
|
|
12
|
+
dataId
|
|
13
|
+
}: ISVGIconProps): ReactElement => (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
className={classNames('svg-icon', {
|
|
17
|
+
[`svg-icon__size-${size}`]: size,
|
|
18
|
+
[`svg-icon__type-${type}`]: type,
|
|
19
|
+
[className]: className
|
|
20
|
+
})}
|
|
21
|
+
viewBox="0 0 24 24"
|
|
22
|
+
fill="none"
|
|
23
|
+
onClick={onClick}
|
|
24
|
+
ref={refHandler}
|
|
25
|
+
id={id}
|
|
26
|
+
data-id={dataId ? `${dataId}-svg-icon` : ''}
|
|
27
|
+
>
|
|
28
|
+
<g id="Direction=RTL, Size=24, Theme=Filled">
|
|
29
|
+
<path
|
|
30
|
+
id="Shape"
|
|
31
|
+
d="M21.2471 4.50391C20.8674 4.50391 20.5536 4.78606 20.5039 5.15214L20.4971 5.25391V18.7525C20.4971 19.1667 20.8329 19.5025 21.2471 19.5025C21.6268 19.5025 21.9406 19.2204 21.9902 18.8543L21.9971 18.7525V5.25391C21.9971 4.83969 21.6613 4.50391 21.2471 4.50391ZM8.7873 6.38704L8.7041 6.29284C8.34358 5.9324 7.77635 5.90473 7.38409 6.20979L7.28989 6.29299L2.29328 11.2906C1.93303 11.651 1.90516 12.2178 2.20979 12.6101L2.29287 12.7043L7.28948 17.7077C7.67974 18.0985 8.3129 18.099 8.70369 17.7087C9.06442 17.3485 9.09254 16.7813 8.78778 16.3888L8.70466 16.2945L5.41607 12.9999L17.9971 13C18.5099 13 18.9326 12.614 18.9903 12.1166L18.9971 12C18.9971 11.4872 18.611 11.0645 18.1137 11.0068L17.9971 11L5.41307 10.9999L8.70425 7.70706C9.0647 7.34654 9.09237 6.7793 8.7873 6.38704L8.7041 6.29284L8.7873 6.38704Z"
|
|
32
|
+
fill="#222222"
|
|
33
|
+
/>
|
|
34
|
+
</g>
|
|
35
|
+
</svg>
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
export default IconArrowExportRightToLeftFilled
|