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 IconDismissFilled = ({
|
|
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="M4.2097 4.3871L4.29289 4.29289C4.65338 3.93241 5.22061 3.90468 5.6129 4.2097L5.70711 4.29289L12 10.585L18.2929 4.29289C18.6834 3.90237 19.3166 3.90237 19.7071 4.29289C20.0976 4.68342 20.0976 5.31658 19.7071 5.70711L13.415 12L19.7071 18.2929C20.0676 18.6534 20.0953 19.2206 19.7903 19.6129L19.7071 19.7071C19.3466 20.0676 18.7794 20.0953 18.3871 19.7903L18.2929 19.7071L12 13.415L5.70711 19.7071C5.31658 20.0976 4.68342 20.0976 4.29289 19.7071C3.90237 19.3166 3.90237 18.6834 4.29289 18.2929L10.585 12L4.29289 5.70711C3.93241 5.34662 3.90468 4.77939 4.2097 4.3871L4.29289 4.29289L4.2097 4.3871Z"
|
|
30
|
+
fill="#222222"
|
|
31
|
+
/>
|
|
32
|
+
</svg>
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
export default IconDismissFilled
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconDocument = ({
|
|
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="M18.5 20C18.5 20.275 18.276 20.5 18 20.5H6C5.724 20.5 5.5 20.275 5.5 20V4C5.5 3.725 5.724 3.5 6 3.5H12V8C12 9.104 12.896 10 14 10H18.5V20ZM13.5 4.621L17.378 8.5H14C13.724 8.5 13.5 8.275 13.5 8V4.621ZM19.414 8.414L13.585 2.586C13.559 2.56 13.527 2.54 13.5 2.516C13.429 2.452 13.359 2.389 13.281 2.336C13.241 2.309 13.195 2.291 13.153 2.268C13.082 2.228 13.012 2.184 12.937 2.152C12.74 2.07 12.528 2.029 12.313 2.014C12.266 2.011 12.22 2 12.172 2H12.171H12H6C4.896 2 4 2.896 4 4V20C4 21.104 4.896 22 6 22H18C19.104 22 20 21.104 20 20V10V9.828C20 9.298 19.789 8.789 19.414 8.414Z"
|
|
30
|
+
fill="#222222"
|
|
31
|
+
/>
|
|
32
|
+
</svg>
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
export default IconDocument
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconDocumentBulletList = ({
|
|
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="M7 12.25C7 11.8358 7.33579 11.5 7.75 11.5C8.16421 11.5 8.5 11.8358 8.5 12.25C8.5 12.6642 8.16421 13 7.75 13C7.33579 13 7 12.6642 7 12.25ZM7.75 14.5C7.33579 14.5 7 14.8358 7 15.25C7 15.6642 7.33579 16 7.75 16C8.16421 16 8.5 15.6642 8.5 15.25C8.5 14.8358 8.16421 14.5 7.75 14.5ZM7 18.25C7 17.8358 7.33579 17.5 7.75 17.5C8.16421 17.5 8.5 17.8358 8.5 18.25C8.5 18.6642 8.16421 19 7.75 19C7.33579 19 7 18.6642 7 18.25ZM10.75 11.5C10.3358 11.5 10 11.8358 10 12.25C10 12.6642 10.3358 13 10.75 13H16.25C16.6642 13 17 12.6642 17 12.25C17 11.8358 16.6642 11.5 16.25 11.5H10.75ZM10 15.25C10 14.8358 10.3358 14.5 10.75 14.5H16.25C16.6642 14.5 17 14.8358 17 15.25C17 15.6642 16.6642 16 16.25 16H10.75C10.3358 16 10 15.6642 10 15.25ZM10.75 17.5C10.3358 17.5 10 17.8358 10 18.25C10 18.6642 10.3358 19 10.75 19H16.25C16.6642 19 17 18.6642 17 18.25C17 17.8358 16.6642 17.5 16.25 17.5H10.75ZM19.414 8.414L13.585 2.586C13.57 2.57105 13.5531 2.55808 13.5363 2.54519C13.5238 2.53567 13.5115 2.5262 13.5 2.516C13.429 2.452 13.359 2.389 13.281 2.336C13.2557 2.31894 13.2281 2.30548 13.2005 2.29207C13.1845 2.28426 13.1685 2.27647 13.153 2.268C13.1363 2.25859 13.1197 2.24897 13.103 2.23933C13.0488 2.20797 12.9944 2.17648 12.937 2.152C12.74 2.07 12.528 2.029 12.313 2.014C12.2933 2.01274 12.2738 2.01008 12.2542 2.00741C12.2271 2.00371 12.1999 2 12.172 2H6C4.896 2 4 2.896 4 4V20C4 21.104 4.896 22 6 22H18C19.104 22 20 21.104 20 20V9.828C20 9.298 19.789 8.789 19.414 8.414ZM18.5 20C18.5 20.275 18.276 20.5 18 20.5H6C5.724 20.5 5.5 20.275 5.5 20V4C5.5 3.725 5.724 3.5 6 3.5H12V8C12 9.104 12.896 10 14 10H18.5V20ZM13.5 4.621L17.378 8.5H14C13.724 8.5 13.5 8.275 13.5 8V4.621Z"
|
|
32
|
+
fill="#222222"
|
|
33
|
+
/>
|
|
34
|
+
</g>
|
|
35
|
+
</svg>
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
export default IconDocumentBulletList
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconDocumentBulletListFilled = ({
|
|
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="M12 8V2H6C4.89543 2 4 2.89543 4 4V20C4 21.1046 4.89543 22 6 22H18C19.1046 22 20 21.1046 20 20V10H14C12.8954 10 12 9.10457 12 8ZM7 12.25C7 11.8358 7.33579 11.5 7.75 11.5C8.16421 11.5 8.5 11.8358 8.5 12.25C8.5 12.6642 8.16421 13 7.75 13C7.33579 13 7 12.6642 7 12.25ZM7 15.25C7 14.8358 7.33579 14.5 7.75 14.5C8.16421 14.5 8.5 14.8358 8.5 15.25C8.5 15.6642 8.16421 16 7.75 16C7.33579 16 7 15.6642 7 15.25ZM7 18.25C7 17.8358 7.33579 17.5 7.75 17.5C8.16421 17.5 8.5 17.8358 8.5 18.25C8.5 18.6642 8.16421 19 7.75 19C7.33579 19 7 18.6642 7 18.25ZM10 12.25C10 11.8358 10.3358 11.5 10.75 11.5H16.25C16.6642 11.5 17 11.8358 17 12.25C17 12.6642 16.6642 13 16.25 13H10.75C10.3358 13 10 12.6642 10 12.25ZM10 15.25C10 14.8358 10.3358 14.5 10.75 14.5H16.25C16.6642 14.5 17 14.8358 17 15.25C17 15.6642 16.6642 16 16.25 16H10.75C10.3358 16 10 15.6642 10 15.25ZM10 18.25C10 17.8358 10.3358 17.5 10.75 17.5H16.25C16.6642 17.5 17 17.8358 17 18.25C17 18.6642 16.6642 19 16.25 19H10.75C10.3358 19 10 18.6642 10 18.25ZM13.5 8V2.5L19.5 8.5H14C13.7239 8.5 13.5 8.27614 13.5 8Z"
|
|
32
|
+
fill="#222222"
|
|
33
|
+
/>
|
|
34
|
+
</g>
|
|
35
|
+
</svg>
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
export default IconDocumentBulletListFilled
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconDocumentEdit = ({
|
|
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="M6.25 3.5C5.83579 3.5 5.5 3.83579 5.5 4.25V19.75C5.5 20.1642 5.83579 20.5 6.25 20.5H10.0293C9.92216 21.0483 10.0375 21.5732 10.3007 22H6.25C5.00736 22 4 20.9926 4 19.75V4.25C4 3.00736 5.00736 2 6.25 2H12.3358C12.7999 2 13.245 2.18437 13.5732 2.51256L19.4874 8.42678C19.8156 8.75497 20 9.20009 20 9.66421V10H19.8698C19.7592 9.99447 19.6484 9.99447 19.5378 10H14C12.8954 10 12 9.10457 12 8V3.5H6.25ZM13.5 4.56066V8C13.5 8.27614 13.7239 8.5 14 8.5H17.4393L13.5 4.56066ZM19.7133 11H19.7154C20.3 11.0003 20.8845 11.2234 21.3305 11.6695C22.2231 12.5621 22.2231 14.0093 21.3305 14.9019L15.4281 20.8043C15.084 21.1485 14.6528 21.3926 14.1806 21.5106L12.3499 21.9683C11.5538 22.1674 10.8326 21.4462 11.0317 20.6501L11.4894 18.8194C11.6074 18.3472 11.8515 17.916 12.1957 17.5719L18.0981 11.6695C18.5441 11.2234 19.1287 11.0003 19.7133 11Z"
|
|
30
|
+
fill="#222222"
|
|
31
|
+
/>
|
|
32
|
+
</svg>
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
export default IconDocumentEdit
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconDocumentEditFilled = ({
|
|
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="M12 2V8C12 9.10457 12.8954 10 14 10H18.9209C18.324 10.2196 17.7756 10.5541 17.3621 10.9704L11.3114 17.0623C10.9598 17.4164 10.7086 17.8576 10.5836 18.3407L10.0588 20.3701C9.90491 20.9651 10.0168 21.5396 10.3007 22H5.5C4.67157 22 4 21.3284 4 20.5V3.5C4 2.67157 4.67157 2 5.5 2H12ZM13.5 2.5V8C13.5 8.27614 13.7239 8.5 14 8.5H19.5L13.5 2.5ZM12.1957 17.5719L18.0981 11.6695C18.9907 10.7768 20.4379 10.7768 21.3305 11.6695C22.2231 12.5621 22.2231 14.0093 21.3305 14.9019L15.4281 20.8043C15.084 21.1485 14.6528 21.3926 14.1806 21.5106L12.3499 21.9683C11.5538 22.1674 10.8326 21.4462 11.0317 20.6501L11.4894 18.8194C11.6074 18.3472 11.8515 17.916 12.1957 17.5719Z"
|
|
30
|
+
fill="#222222"
|
|
31
|
+
/>
|
|
32
|
+
</svg>
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
export default IconDocumentEditFilled
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconDocumentFilled = ({
|
|
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="M12 2V8C12 9.10457 12.8954 10 14 10H20V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V4C4 2.89543 4.89543 2 6 2H12ZM13.5 2.5V8C13.5 8.27614 13.7239 8.5 14 8.5H19.5L13.5 2.5Z"
|
|
30
|
+
fill="#222222"
|
|
31
|
+
/>
|
|
32
|
+
</svg>
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
export default IconDocumentFilled
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconEdit = ({
|
|
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="M20.9519 3.0481C19.5543 1.65058 17.2885 1.65064 15.8911 3.04825L3.94103 14.9997C3.5347 15.4061 3.2491 15.9172 3.116 16.4762L2.02041 21.0777C1.96009 21.3311 2.03552 21.5976 2.21968 21.7817C2.40385 21.9659 2.67037 22.0413 2.92373 21.981L7.52498 20.8855C8.08418 20.7523 8.59546 20.4666 9.00191 20.0601L20.952 8.10861C22.3493 6.71112 22.3493 4.4455 20.9519 3.0481ZM16.9518 4.10884C17.7634 3.29709 19.0795 3.29705 19.8912 4.10876C20.7028 4.9204 20.7029 6.23632 19.8913 7.04801L19 7.93946L16.0606 5.00012L16.9518 4.10884ZM15 6.06084L17.9394 9.00018L7.94119 18.9995C7.73104 19.2097 7.46668 19.3574 7.17755 19.4263L3.76191 20.2395L4.57521 16.8237C4.64402 16.5346 4.79168 16.2704 5.00175 16.0603L15 6.06084Z"
|
|
30
|
+
fill="#222222"
|
|
31
|
+
/>
|
|
32
|
+
</svg>
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
export default IconEdit
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconEditFilled = ({
|
|
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.8911 3.04825C17.2885 1.65064 19.5543 1.65058 20.9519 3.0481C22.3493 4.4455 22.3493 6.71112 20.952 8.10861L20.0602 9.00057L14.9995 3.93991L15.8911 3.04825ZM13.9389 5.00064L3.94103 14.9997C3.5347 15.4061 3.2491 15.9172 3.116 16.4762L2.02041 21.0777C1.96009 21.3311 2.03552 21.5976 2.21968 21.7817C2.40385 21.9659 2.67037 22.0413 2.92373 21.981L7.52498 20.8855C8.08418 20.7523 8.59546 20.4666 9.00191 20.0601L18.9996 10.0613L13.9389 5.00064Z"
|
|
30
|
+
fill="#222222"
|
|
31
|
+
/>
|
|
32
|
+
</svg>
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
export default IconEditFilled
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconErrorCircle = ({
|
|
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="M12 2C17.523 2 22 6.478 22 12C22 17.522 17.523 22 12 22C6.477 22 2 17.522 2 12C2 6.478 6.477 2 12 2ZM12 3.667C7.405 3.667 3.667 7.405 3.667 12C3.667 16.595 7.405 20.333 12 20.333C16.595 20.333 20.333 16.595 20.333 12C20.333 7.405 16.595 3.667 12 3.667ZM11.9987 14.5022C12.5502 14.5022 12.9973 14.9494 12.9973 15.5009C12.9973 16.0524 12.5502 16.4996 11.9987 16.4996C11.4471 16.4996 11 16.0524 11 15.5009C11 14.9494 11.4471 14.5022 11.9987 14.5022ZM11.9945 7C12.3742 6.9997 12.6882 7.2816 12.7381 7.64764L12.7451 7.7494L12.7487 12.251C12.749 12.6652 12.4135 13.0013 11.9993 13.0016C11.6196 13.0019 11.3055 12.72 11.2556 12.354L11.2487 12.2522L11.2451 7.7506C11.2447 7.33639 11.5802 7.00033 11.9945 7Z"
|
|
30
|
+
fill="#222222"
|
|
31
|
+
/>
|
|
32
|
+
</svg>
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
export default IconErrorCircle
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconErrorCircleFilled = ({
|
|
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="M12 2C17.523 2 22 6.478 22 12C22 17.522 17.523 22 12 22C6.477 22 2 17.522 2 12C2 6.478 6.477 2 12 2ZM12.0018 15.0037C11.4503 15.0037 11.0031 15.4508 11.0031 16.0024C11.0031 16.5539 11.4503 17.001 12.0018 17.001C12.5533 17.001 13.0005 16.5539 13.0005 16.0024C13.0005 15.4508 12.5533 15.0037 12.0018 15.0037ZM11.9996 7C11.4868 7.00018 11.0643 7.38638 11.0067 7.88374L11 8.00036L11.0018 13.0012L11.0086 13.1179C11.0665 13.6152 11.4893 14.0011 12.0022 14.0009C12.515 14.0007 12.9375 13.6145 12.9951 13.1171L13.0018 13.0005L13 7.99964L12.9932 7.88302C12.9353 7.3857 12.5125 6.99982 11.9996 7Z"
|
|
30
|
+
fill="#222222"
|
|
31
|
+
/>
|
|
32
|
+
</svg>
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
export default IconErrorCircleFilled
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconEur = ({
|
|
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="M14.7693 3.10963C13.223 2.76717 11.6061 2.96512 10.1881 3.67042C8.75349 4.37447 7.55109 5.54418 6.71346 7.01573L6.71074 7.02055C6.40011 7.57442 6.1442 8.15442 5.94513 8.75229H3.98047C3.49938 8.75229 3.10938 9.14228 3.10938 9.62335C3.10938 10.1044 3.49938 10.4944 3.98047 10.4944H5.534C5.46537 10.9741 5.43148 11.4597 5.43332 11.9476C5.4334 12.4349 5.46791 12.9199 5.53587 13.3979H3.98047C3.49938 13.3979 3.10938 13.7879 3.10938 14.269C3.10938 14.75 3.49938 15.14 3.98047 15.14H5.94283C6.14268 15.7454 6.40001 16.3279 6.71247 16.8764C7.55 18.3465 8.75228 19.5173 10.1881 20.2225C11.6064 20.9266 13.2229 21.1241 14.769 20.7822L14.7708 20.7818C16.3127 20.4376 17.7146 19.5754 18.8062 18.326C19.1227 17.9637 19.0855 17.4134 18.7232 17.0969C18.3609 16.7804 17.8106 16.8176 17.4941 17.1799C16.6277 18.1716 15.5445 18.8239 14.3921 19.0814C13.2342 19.3372 12.0235 19.1891 10.9615 18.6615L10.9577 18.6597C9.86246 18.1221 8.90749 17.2098 8.22624 16.014C8.0667 15.734 7.92426 15.4419 7.79967 15.14H13.2721C13.7532 15.14 14.1432 14.75 14.1432 14.269C14.1432 13.7879 13.7532 13.3979 13.2721 13.3979H7.29923C7.21748 12.9231 7.17551 12.4367 7.17551 11.9459L7.1755 11.9425C7.17358 11.4553 7.2148 10.9708 7.29774 10.4944H13.2721C13.7532 10.4944 14.1432 10.1044 14.1432 9.62335C14.1432 9.14228 13.7532 8.75229 13.2721 8.75229H7.80337C7.92745 8.45264 8.06945 8.15969 8.22894 7.87508C8.90995 6.67972 9.86414 5.76953 10.9575 5.23344L10.9622 5.2311C12.0237 4.70263 13.2343 4.55414 14.392 4.81038C15.5453 5.06781 16.6276 5.71993 17.4956 6.71232C17.8123 7.07443 18.3626 7.11124 18.7248 6.79453C19.0869 6.47782 19.1237 5.92753 18.807 5.56542C17.7146 4.3165 16.314 3.4542 14.7706 3.10992L14.7693 3.10963Z"
|
|
30
|
+
fill="#222222"
|
|
31
|
+
/>
|
|
32
|
+
</svg>
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
export default IconEur
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconEurFilled = ({
|
|
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="M14.7693 3.10963C13.223 2.76717 11.6061 2.96512 10.1881 3.67042C8.75349 4.37447 7.55109 5.54418 6.71346 7.01573L6.71074 7.02055C6.40011 7.57442 6.1442 8.15442 5.94513 8.75229H3.98047C3.49938 8.75229 3.10938 9.14228 3.10938 9.62335C3.10938 10.1044 3.49938 10.4944 3.98047 10.4944H5.534C5.46537 10.9741 5.43148 11.4597 5.43332 11.9476C5.4334 12.4349 5.46791 12.9199 5.53587 13.3979H3.98047C3.49938 13.3979 3.10938 13.7879 3.10938 14.269C3.10938 14.75 3.49938 15.14 3.98047 15.14H5.94283C6.14268 15.7454 6.40001 16.3279 6.71247 16.8764C7.55 18.3465 8.75228 19.5173 10.1881 20.2225C11.6064 20.9266 13.2229 21.1241 14.769 20.7822L14.7708 20.7818C16.3127 20.4376 17.7146 19.5754 18.8062 18.326C19.1227 17.9637 19.0855 17.4134 18.7232 17.0969C18.3609 16.7804 17.8106 16.8176 17.4941 17.1799C16.6277 18.1716 15.5445 18.8239 14.3921 19.0814C13.2342 19.3372 12.0235 19.1891 10.9615 18.6615L10.9577 18.6597C9.86246 18.1221 8.90749 17.2098 8.22624 16.014C8.0667 15.734 7.92426 15.4419 7.79967 15.14H13.2721C13.7532 15.14 14.1432 14.75 14.1432 14.269C14.1432 13.7879 13.7532 13.3979 13.2721 13.3979H7.29923C7.21748 12.9231 7.17551 12.4367 7.17551 11.9459L7.1755 11.9425C7.17358 11.4553 7.2148 10.9708 7.29774 10.4944H13.2721C13.7532 10.4944 14.1432 10.1044 14.1432 9.62335C14.1432 9.14228 13.7532 8.75229 13.2721 8.75229H7.80337C7.92745 8.45264 8.06945 8.15969 8.22894 7.87508C8.90995 6.67972 9.86414 5.76953 10.9575 5.23344L10.9622 5.2311C12.0237 4.70263 13.2343 4.55414 14.392 4.81038C15.5453 5.06781 16.6276 5.71993 17.4956 6.71232C17.8123 7.07443 18.3626 7.11124 18.7248 6.79453C19.0869 6.47782 19.1237 5.92753 18.807 5.56542C17.7146 4.3165 16.314 3.4542 14.7706 3.10992L14.7693 3.10963Z"
|
|
30
|
+
fill="#222222"
|
|
31
|
+
/>
|
|
32
|
+
</svg>
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
export default IconEurFilled
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconExpandUpLeft = ({
|
|
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=Up Left, Size=24, Theme=Regular">
|
|
29
|
+
<path
|
|
30
|
+
id="Shape"
|
|
31
|
+
d="M11 3.75C11 3.33579 10.6642 3 10.25 3H3.74951C3.3353 3 2.99951 3.33579 2.99951 3.75V10.25C2.99951 10.6642 3.3353 11 3.74951 11C4.16372 11 4.49951 10.6642 4.49951 10.25V5.56074L9.71966 10.7804C10.0126 11.0732 10.4874 11.0732 10.7803 10.7803C11.0732 10.4874 11.0732 10.0125 10.7803 9.71964L5.56009 4.5H10.25C10.6642 4.5 11 4.16421 11 3.75ZM19.5 6.25C19.5 5.2835 18.7165 4.5 17.75 4.5H13.75C13.3357 4.5 13 4.16421 13 3.75C13 3.33579 13.3357 3 13.75 3H17.75C19.5449 3 21 4.45507 21 6.25V17.75C21 19.5449 19.5449 21 17.75 21H6.24996C4.45504 21 2.99996 19.5449 2.99996 17.75V13.75C2.99996 13.3358 3.33575 13 3.74996 13C4.16418 13 4.49996 13.3358 4.49996 13.75V17.75C4.49996 18.7165 5.28346 19.5 6.24996 19.5H12V14.75C12 13.2312 13.2312 12 14.75 12H19.5V6.25ZM19.5 13.5H14.75C14.0596 13.5 13.5 14.0596 13.5 14.75V19.5H17.75C18.7165 19.5 19.5 18.7165 19.5 17.75V13.5Z"
|
|
32
|
+
fill="#222222"
|
|
33
|
+
/>
|
|
34
|
+
</g>
|
|
35
|
+
</svg>
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
export default IconExpandUpLeft
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconExpandUpLeftFilled = ({
|
|
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=Up Left, Size=24, Theme=Filled">
|
|
29
|
+
<path
|
|
30
|
+
id="Shape"
|
|
31
|
+
d="M11 3.75C11 3.33579 10.6642 3 10.25 3H3.74951C3.3353 3 2.99951 3.33579 2.99951 3.75V10.25C2.99951 10.6642 3.3353 11 3.74951 11C4.16372 11 4.49951 10.6642 4.49951 10.25V5.56074L9.71966 10.7804C10.0126 11.0732 10.4874 11.0732 10.7803 10.7803C11.0732 10.4874 11.0732 10.0125 10.7803 9.71964L5.56009 4.5H10.25C10.6642 4.5 11 4.16421 11 3.75ZM17.75 4.5C18.7165 4.5 19.5 5.2835 19.5 6.25V12H14.75C13.2312 12 12 13.2312 12 14.75V19.5H6.24996C5.28346 19.5 4.49996 18.7165 4.49996 17.75V13.75C4.49996 13.3358 4.16418 13 3.74996 13C3.33575 13 2.99996 13.3358 2.99996 13.75V17.75C2.99996 19.5449 4.45504 21 6.24996 21L17.25 21.0002L17.2839 21H17.75C19.5449 21 21 19.5449 21 17.75V6.25C21 4.45507 19.5449 3 17.75 3H13.75C13.3357 3 13 3.33579 13 3.75C13 4.16421 13.3357 4.5 13.75 4.5H17.75Z"
|
|
32
|
+
fill="#222222"
|
|
33
|
+
/>
|
|
34
|
+
</g>
|
|
35
|
+
</svg>
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
export default IconExpandUpLeftFilled
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconExpandUpRight = ({
|
|
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=Up Right, Size=24, Theme=Regular">
|
|
29
|
+
<path
|
|
30
|
+
id="Shape"
|
|
31
|
+
d="M4.5 6.25C4.5 5.2835 5.2835 4.5 6.25 4.5H10.25C10.6642 4.5 11 4.16421 11 3.75C11 3.33579 10.6642 3 10.25 3H6.25C4.45507 3 3 4.45507 3 6.25V17.75C3 19.5449 4.45507 21 6.25 21H17.75C19.5449 21 21 19.5449 21 17.75V13.75C21 13.3358 20.6642 13 20.25 13C19.8358 13 19.5 13.3358 19.5 13.75V17.75C19.5 18.7165 18.7165 19.5 17.75 19.5H12V14.75C12 13.2312 10.7688 12 9.25 12H4.5V6.25ZM4.5 13.5H9.25C9.94036 13.5 10.5 14.0596 10.5 14.75V19.5H6.25C5.2835 19.5 4.5 18.7165 4.5 17.75V13.5ZM13 3.75C13 3.33579 13.3358 3 13.75 3H20.2505C20.6647 3 21.0005 3.33579 21.0005 3.75V10.25C21.0005 10.6642 20.6647 11 20.2505 11C19.8362 11 19.5005 10.6642 19.5005 10.25V5.56074L14.2803 10.7804C13.9874 11.0732 13.5125 11.0732 13.2196 10.7803C12.9268 10.4874 12.9268 10.0125 13.2197 9.71964L18.4399 4.5H13.75C13.3358 4.5 13 4.16421 13 3.75Z"
|
|
32
|
+
fill="#222222"
|
|
33
|
+
/>
|
|
34
|
+
</g>
|
|
35
|
+
</svg>
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
export default IconExpandUpRight
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react'
|
|
2
|
+
import { ISVGIconProps } from './types'
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
|
|
5
|
+
export const IconExpandUpRightFilled = ({
|
|
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=Up Right, Size=24, Theme=Filled">
|
|
29
|
+
<path
|
|
30
|
+
id="Shape"
|
|
31
|
+
d="M6.25 4.5C5.2835 4.5 4.5 5.2835 4.5 6.25V12H9.25C10.7688 12 12 13.2312 12 14.75V19.5H17.75C18.7165 19.5 19.5 18.7165 19.5 17.75V13.75C19.5 13.3358 19.8358 13 20.25 13C20.6642 13 21 13.3358 21 13.75V17.75C21 19.5449 19.5449 21 17.75 21L6.75 21.0002L6.71603 21H6.25C4.45507 21 3 19.5449 3 17.75V6.25C3 4.45507 4.45507 3 6.25 3H10.25C10.6642 3 11 3.33579 11 3.75C11 4.16421 10.6642 4.5 10.25 4.5H6.25ZM13 3.75C13 3.33579 13.3358 3 13.75 3H20.2505C20.6647 3 21.0005 3.33579 21.0005 3.75V10.25C21.0005 10.6642 20.6647 11 20.2505 11C19.8362 11 19.5005 10.6642 19.5005 10.25V5.56074L14.2803 10.7804C13.9874 11.0732 13.5125 11.0732 13.2196 10.7803C12.9268 10.4874 12.9268 10.0125 13.2197 9.71964L18.4399 4.5H13.75C13.3358 4.5 13 4.16421 13 3.75Z"
|
|
32
|
+
fill="#222222"
|
|
33
|
+
/>
|
|
34
|
+
</g>
|
|
35
|
+
</svg>
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
export default IconExpandUpRightFilled
|