hrm_ui_lib 2.0.3 → 2.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/styles/styles.css +525 -0
- package/assets/styles/styles.scss +3 -1
- package/components/Alert/Alert.js +11 -52
- package/components/Alert/consts.js +12 -14
- package/components/Alert/index.js +1 -52
- package/components/Alert/types.js +1 -1
- package/components/Avatar/Avatar.js +21 -117
- package/components/Avatar/AvatarGroup.js +18 -117
- package/components/Avatar/index.js +2 -64
- package/components/Avatar/types.js +1 -1
- package/components/Badge/Badge.js +5 -22
- package/components/Badge/index.js +1 -6
- package/components/Badge/types.js +1 -1
- package/components/Breadcrumb/Breadcrumb.js +6 -23
- package/components/Breadcrumb/index.js +1 -2
- package/components/Breadcrumb/types.js +1 -1
- package/components/Button/Button.js +29 -52
- package/components/Button/consts.js +12 -14
- package/components/Button/index.js +1 -52
- package/components/Button/types.js +1 -1
- package/components/Checkbox/Checkbox.js +45 -52
- package/components/Checkbox/index.js +1 -52
- package/components/Checkbox/types.js +1 -1
- package/components/Chips/Chips.js +23 -65
- package/components/Chips/consts.js +10 -12
- package/components/Chips/index.js +1 -11
- package/components/Chips/types.js +5 -7
- package/components/Collapse/CollapseGroup/CollapseGroup.js +22 -73
- package/components/Collapse/CollapseItem/CollapseItem.js +11 -86
- package/components/Collapse/index.js +2 -16
- package/components/Collapse/types.js +1 -1
- package/components/Container/Container.js +4 -9
- package/components/Container/index.js +1 -2
- package/components/Container/types.js +1 -1
- package/components/Copy/Copy.js +15 -93
- package/components/Copy/index.js +1 -54
- package/components/Copy/types.js +1 -1
- package/components/Counter/Counter.js +54 -134
- package/components/Counter/index.js +1 -61
- package/components/Counter/types.js +1 -1
- package/components/DatePicker/CustomHeader/CustomHeader.js +16 -191
- package/components/DatePicker/CustomHeader/helpers.js +10 -16
- package/components/DatePicker/RangeDatePicker/RangeDatePicker.js +7 -129
- package/components/DatePicker/RangeDatePicker/RangeDatePickerDesktop.js +71 -172
- package/components/DatePicker/RangeDatePicker/RangeDatePickerMobile.js +86 -265
- package/components/DatePicker/RangeDatePicker/index.js +1 -124
- package/components/DatePicker/SimpleDatePicker/SimpleDatePicker.js +8 -128
- package/components/DatePicker/SimpleDatePicker/SimpleDatePickerDesktop.js +45 -202
- package/components/DatePicker/SimpleDatePicker/SimpleDatePickerMobile.js +44 -206
- package/components/DatePicker/SimpleDatePicker/index.js +1 -123
- package/components/DatePicker/TimePicker/MobileModalContent.js +33 -123
- package/components/DatePicker/TimePicker/TimePicker.js +7 -75
- package/components/DatePicker/TimePicker/TimePickerDesktop.js +42 -128
- package/components/DatePicker/TimePicker/TimePickerMobile.js +27 -125
- package/components/DatePicker/TimePicker/consts.js +5 -8
- package/components/DatePicker/TimePicker/helpers.js +9 -19
- package/components/DatePicker/TimePicker/index.js +1 -70
- package/components/DatePicker/hooks.js +33 -2171
- package/components/DatePicker/index.js +3 -134
- package/components/DatePicker/localization.js +43 -6
- package/components/DatePicker/types.js +5 -7
- package/components/Divider/Divider.js +8 -15
- package/components/Divider/index.js +1 -3
- package/components/Divider/types.js +1 -1
- package/components/Empty/Empty.js +9 -83
- package/components/Empty/index.js +1 -54
- package/components/Empty/types.js +1 -1
- package/components/FileUpload/DropzoneFileUpload/DropzoneFileUpload.js +67 -52
- package/components/FileUpload/DropzoneFileUpload/ErrorItem.js +21 -52
- package/components/FileUpload/DropzoneFileUpload/FilePreview.js +23 -52
- package/components/FileUpload/DropzoneFileUpload/PreviewItem.js +30 -52
- package/components/FileUpload/DropzoneFileUpload/helpers.js +79 -52
- package/components/FileUpload/DropzoneFileUpload/index.js +1 -52
- package/components/FileUpload/FileUpload.js +69 -192
- package/components/FileUpload/UploadItems.js +22 -101
- package/components/FileUpload/index.js +3 -61
- package/components/FileUpload/types.js +6 -10
- package/components/FormContainer/FormContainer.js +43 -136
- package/components/FormContainer/index.js +1 -55
- package/components/FormContainer/types.js +1 -1
- package/components/FormField/FormField.js +17 -112
- package/components/FormField/index.js +1 -56
- package/components/FormField/types.js +1 -1
- package/components/Heading/Heading.js +5 -27
- package/components/Heading/index.js +1 -5
- package/components/Heading/types.js +1 -1
- package/components/Image/Image.js +12 -32
- package/components/Image/index.js +1 -2
- package/components/Image/types.js +1 -1
- package/components/Input/Input.js +68 -236
- package/components/Input/index.js +1 -58
- package/components/Input/types.js +1 -1
- package/components/Link/Link.js +14 -40
- package/components/Link/index.js +1 -3
- package/components/Link/types.js +1 -1
- package/components/Menu/Menu.js +47 -161
- package/components/Menu/NestedMenu.js +47 -173
- package/components/Menu/index.js +2 -72
- package/components/Menu/types.js +1 -1
- package/components/Modal/Modal.js +70 -52
- package/components/Modal/ModalConfirmation.js +30 -137
- package/components/Modal/ModalContent.js +10 -52
- package/components/Modal/index.js +2 -53
- package/components/Modal/types.js +1 -1
- package/components/More/More.js +19 -85
- package/components/More/index.js +1 -53
- package/components/More/types.js +1 -1
- package/components/Pagination/Pagination.js +15 -56
- package/components/Pagination/consts.js +5 -7
- package/components/Pagination/index.js +1 -10
- package/components/Pagination/types.js +1 -1
- package/components/Popover/Popover.js +41 -52
- package/components/Popover/PopoverDesktop.js +16 -69
- package/components/Popover/PopoverMobile.js +8 -52
- package/components/Popover/index.js +1 -52
- package/components/Popover/types.js +1 -1
- package/components/Progress/Progress.js +21 -56
- package/components/Progress/index.js +1 -2
- package/components/Progress/types.js +1 -1
- package/components/ProgressStep/ProgressStep.js +9 -38
- package/components/ProgressStep/Step.js +51 -98
- package/components/ProgressStep/consts.js +7 -9
- package/components/ProgressStep/index.js +1 -12
- package/components/ProgressStep/types.js +5 -7
- package/components/Radio/Radio.js +19 -56
- package/components/Radio/RadioGroup.js +21 -111
- package/components/Radio/index.js +2 -55
- package/components/Radio/types.js +1 -1
- package/components/SVGIcons/IconAdd.js +7 -28
- package/components/SVGIcons/IconAddCircle.js +7 -31
- package/components/SVGIcons/IconAddCircleFilled.js +7 -31
- package/components/SVGIcons/IconAddFilled.js +7 -28
- package/components/SVGIcons/IconAlert.js +7 -31
- package/components/SVGIcons/IconAlertBadge.js +7 -31
- package/components/SVGIcons/IconAlertBadgeFilled.js +7 -31
- package/components/SVGIcons/IconAlertFilled.js +7 -31
- package/components/SVGIcons/IconAm.js +6 -57
- package/components/SVGIcons/IconAmd.js +7 -28
- package/components/SVGIcons/IconAmdFilled.js +7 -28
- package/components/SVGIcons/IconApple.js +7 -31
- package/components/SVGIcons/IconArrowDown.js +7 -31
- package/components/SVGIcons/IconArrowDownFilled.js +7 -31
- package/components/SVGIcons/IconArrowDownLeft.js +7 -31
- package/components/SVGIcons/IconArrowDownLeftFilled.js +7 -31
- package/components/SVGIcons/IconArrowDownload.js +7 -31
- package/components/SVGIcons/IconArrowDownloadFilled.js +7 -31
- package/components/SVGIcons/IconArrowEnter.js +7 -28
- package/components/SVGIcons/IconArrowEnterFilled.js +7 -28
- package/components/SVGIcons/IconArrowExit.js +7 -28
- package/components/SVGIcons/IconArrowExitFilled.js +7 -28
- package/components/SVGIcons/IconArrowExportLeftToRight.js +7 -31
- package/components/SVGIcons/IconArrowExportLeftToRightFilled.js +7 -31
- package/components/SVGIcons/IconArrowExportRightToLeft.js +7 -31
- package/components/SVGIcons/IconArrowExportRightToLeftFilled.js +7 -31
- package/components/SVGIcons/IconArrowExportUp.js +7 -31
- package/components/SVGIcons/IconArrowExportUpFilled.js +7 -31
- package/components/SVGIcons/IconArrowImport.js +7 -31
- package/components/SVGIcons/IconArrowImportFilled.js +7 -31
- package/components/SVGIcons/IconArrowLeft.js +7 -31
- package/components/SVGIcons/IconArrowLeftFilled.js +7 -31
- package/components/SVGIcons/IconArrowRepeatAll.js +7 -31
- package/components/SVGIcons/IconArrowRepeatAllFilled.js +7 -31
- package/components/SVGIcons/IconArrowReset.js +7 -31
- package/components/SVGIcons/IconArrowResetFilled.js +7 -31
- package/components/SVGIcons/IconArrowRight.js +7 -31
- package/components/SVGIcons/IconArrowRightFilled.js +7 -31
- package/components/SVGIcons/IconArrowSort.js +7 -28
- package/components/SVGIcons/IconArrowSortFilled.js +7 -28
- package/components/SVGIcons/IconArrowSync.js +7 -28
- package/components/SVGIcons/IconArrowSyncFilled.js +7 -28
- package/components/SVGIcons/IconArrowUp.js +7 -31
- package/components/SVGIcons/IconArrowUpFilled.js +7 -31
- package/components/SVGIcons/IconArrowUpLeft.js +7 -31
- package/components/SVGIcons/IconArrowUpLeftFilled.js +7 -31
- package/components/SVGIcons/IconArrowUpRight.js +7 -31
- package/components/SVGIcons/IconArrowUpRightFilled.js +7 -31
- package/components/SVGIcons/IconAttach.js +7 -31
- package/components/SVGIcons/IconAttachFilled.js +7 -31
- package/components/SVGIcons/IconBeach.js +7 -28
- package/components/SVGIcons/IconBeachFilled.js +7 -28
- package/components/SVGIcons/IconBook.js +7 -31
- package/components/SVGIcons/IconBookFilled.js +7 -31
- package/components/SVGIcons/IconBookmark.js +7 -31
- package/components/SVGIcons/IconBookmarkFilled.js +7 -31
- package/components/SVGIcons/IconBriefcase.js +7 -31
- package/components/SVGIcons/IconBriefcaseFilled.js +7 -31
- package/components/SVGIcons/IconBuilding.js +7 -54
- package/components/SVGIcons/IconBuildingBank.js +7 -28
- package/components/SVGIcons/IconBuildingBankFilled.js +7 -28
- package/components/SVGIcons/IconBuildingFilled.js +7 -31
- package/components/SVGIcons/IconBulletListAdd.js +7 -31
- package/components/SVGIcons/IconBulletListAddFilled.js +7 -31
- package/components/SVGIcons/IconCalculator.js +7 -31
- package/components/SVGIcons/IconCalculatorFilled.js +7 -31
- package/components/SVGIcons/IconCalendarClock.js +7 -28
- package/components/SVGIcons/IconCalendarClockFilled.js +7 -28
- package/components/SVGIcons/IconCalendarDay.js +7 -31
- package/components/SVGIcons/IconCalendarDayFilled.js +7 -31
- package/components/SVGIcons/IconCalendarEmpty.js +7 -28
- package/components/SVGIcons/IconCalendarLeft.js +7 -28
- package/components/SVGIcons/IconCalendarLeftFilled.js +7 -28
- package/components/SVGIcons/IconCalendarRight.js +7 -28
- package/components/SVGIcons/IconCalendarRightFilled.js +7 -28
- package/components/SVGIcons/IconCall.js +7 -31
- package/components/SVGIcons/IconCallFilled.js +7 -31
- package/components/SVGIcons/IconCard.js +7 -28
- package/components/SVGIcons/IconCardFilled.js +7 -28
- package/components/SVGIcons/IconCaretDown.js +7 -28
- package/components/SVGIcons/IconCaretDownFilled.js +7 -28
- package/components/SVGIcons/IconCaretDownRight.js +7 -28
- package/components/SVGIcons/IconCaretDownRightFilled.js +7 -28
- package/components/SVGIcons/IconCaretLeft.js +7 -28
- package/components/SVGIcons/IconCaretLeftFilled.js +7 -28
- package/components/SVGIcons/IconCaretRight.js +7 -28
- package/components/SVGIcons/IconCaretRightFilled.js +7 -28
- package/components/SVGIcons/IconCaretUp.js +7 -28
- package/components/SVGIcons/IconCaretUpFilled.js +7 -28
- package/components/SVGIcons/IconChat.js +7 -28
- package/components/SVGIcons/IconChatFilled.js +7 -28
- package/components/SVGIcons/IconChatMultiple.js +7 -28
- package/components/SVGIcons/IconChatMultipleFilled.js +7 -28
- package/components/SVGIcons/IconCheckboxArrowRight.js +7 -31
- package/components/SVGIcons/IconCheckboxArrowRightFilled.js +7 -31
- package/components/SVGIcons/IconCheckmark.js +7 -28
- package/components/SVGIcons/IconCheckmarkCircle.js +7 -28
- package/components/SVGIcons/IconCheckmarkCircleFilled.js +7 -28
- package/components/SVGIcons/IconCheckmarkFilled.js +7 -28
- package/components/SVGIcons/IconChevronDoubleLeft.d.ts +4 -0
- package/components/SVGIcons/IconChevronDoubleLeft.js +8 -0
- package/components/SVGIcons/IconChevronDoubleRight.d.ts +4 -0
- package/components/SVGIcons/IconChevronDoubleRight.js +8 -0
- package/components/SVGIcons/IconChevronDown.js +7 -28
- package/components/SVGIcons/IconChevronDownFilled.js +7 -28
- package/components/SVGIcons/IconChevronLeft.js +7 -28
- package/components/SVGIcons/IconChevronLeftFilled.js +7 -28
- package/components/SVGIcons/IconChevronRight.js +7 -28
- package/components/SVGIcons/IconChevronRightFilled.js +7 -28
- package/components/SVGIcons/IconChevronUp.js +7 -28
- package/components/SVGIcons/IconChevronUpDown.js +7 -31
- package/components/SVGIcons/IconChevronUpDownFilled.js +7 -31
- package/components/SVGIcons/IconChevronUpFilled.js +7 -28
- package/components/SVGIcons/IconClipboardDay.js +7 -28
- package/components/SVGIcons/IconClock.js +7 -31
- package/components/SVGIcons/IconClockDismiss.js +7 -28
- package/components/SVGIcons/IconClockDismissFilled.js +7 -28
- package/components/SVGIcons/IconClockFilled.js +7 -31
- package/components/SVGIcons/IconComment.js +7 -31
- package/components/SVGIcons/IconCommentFilled.js +7 -31
- package/components/SVGIcons/IconContractCard.js +7 -28
- package/components/SVGIcons/IconContractCardFilled.js +7 -28
- package/components/SVGIcons/IconCopy.js +7 -28
- package/components/SVGIcons/IconCopyFilled.js +7 -28
- package/components/SVGIcons/IconCubeTree.js +7 -28
- package/components/SVGIcons/IconCubeTreeFilled.js +7 -31
- package/components/SVGIcons/IconDatabase.js +7 -31
- package/components/SVGIcons/IconDatabaseFilled.js +7 -31
- package/components/SVGIcons/IconDelete.js +7 -28
- package/components/SVGIcons/IconDeleteFilled.js +7 -28
- package/components/SVGIcons/IconDeviceMeetingRoom.js +7 -28
- package/components/SVGIcons/IconDeviceMeetingRoomFilled.js +7 -28
- package/components/SVGIcons/IconDismiss.js +7 -28
- package/components/SVGIcons/IconDismissCircle.js +7 -31
- package/components/SVGIcons/IconDismissCircleFilled.js +7 -31
- package/components/SVGIcons/IconDismissFilled.js +7 -28
- package/components/SVGIcons/IconDocument.js +7 -28
- package/components/SVGIcons/IconDocumentBulletList.js +7 -31
- package/components/SVGIcons/IconDocumentBulletListFilled.js +7 -31
- package/components/SVGIcons/IconDocumentEdit.js +7 -28
- package/components/SVGIcons/IconDocumentEditFilled.js +7 -28
- package/components/SVGIcons/IconDocumentFilled.js +7 -28
- package/components/SVGIcons/IconDocumentPerson.js +7 -28
- package/components/SVGIcons/IconEdit.js +7 -28
- package/components/SVGIcons/IconEditFilled.js +7 -28
- package/components/SVGIcons/IconErrorCircle.js +7 -28
- package/components/SVGIcons/IconErrorCircleFilled.js +7 -28
- package/components/SVGIcons/IconEur.js +7 -28
- package/components/SVGIcons/IconEurFilled.js +7 -28
- package/components/SVGIcons/IconExpandUpLeft.js +7 -31
- package/components/SVGIcons/IconExpandUpLeftFilled.js +7 -31
- package/components/SVGIcons/IconExpandUpRight.js +7 -31
- package/components/SVGIcons/IconExpandUpRightFilled.js +7 -31
- package/components/SVGIcons/IconEyeOff.js +7 -31
- package/components/SVGIcons/IconEyeOffFilled.js +7 -31
- package/components/SVGIcons/IconEyeOn.js +7 -31
- package/components/SVGIcons/IconEyeOnFilled.js +7 -31
- package/components/SVGIcons/IconFacebook.js +7 -38
- package/components/SVGIcons/IconFilter.js +7 -28
- package/components/SVGIcons/IconFilterFilled.js +7 -28
- package/components/SVGIcons/IconFlag.js +7 -31
- package/components/SVGIcons/IconFlagFilled.js +7 -31
- package/components/SVGIcons/IconFolderLink.js +7 -28
- package/components/SVGIcons/IconFolderLinkFilled.js +7 -28
- package/components/SVGIcons/IconFood.js +7 -28
- package/components/SVGIcons/IconFoodFilled.js +7 -28
- package/components/SVGIcons/IconGb.js +6 -71
- package/components/SVGIcons/IconGlobe.js +7 -28
- package/components/SVGIcons/IconGlobeFilled.js +7 -28
- package/components/SVGIcons/IconGoogle.js +7 -40
- package/components/SVGIcons/IconHandOpenHeart.js +7 -31
- package/components/SVGIcons/IconHandOpenHeartFilled.js +7 -31
- package/components/SVGIcons/IconHeart.js +7 -31
- package/components/SVGIcons/IconHeartFilled.js +7 -31
- package/components/SVGIcons/IconHistory.js +7 -31
- package/components/SVGIcons/IconHistoryFilled.js +7 -31
- package/components/SVGIcons/IconHome.js +7 -31
- package/components/SVGIcons/IconHomeFilled.js +7 -31
- package/components/SVGIcons/IconImage.js +7 -31
- package/components/SVGIcons/IconImageFilled.js +7 -31
- package/components/SVGIcons/IconInfo.js +7 -28
- package/components/SVGIcons/IconInfoFilled.js +7 -28
- package/components/SVGIcons/IconInstagram.js +7 -39
- package/components/SVGIcons/IconKeyReset.js +7 -31
- package/components/SVGIcons/IconKeyResetFilled.js +7 -31
- package/components/SVGIcons/IconLink.js +7 -31
- package/components/SVGIcons/IconLinkFilled.js +7 -31
- package/components/SVGIcons/IconLinkedin.js +7 -31
- package/components/SVGIcons/IconList.js +7 -28
- package/components/SVGIcons/IconListFilled.js +7 -31
- package/components/SVGIcons/IconLocation.js +7 -31
- package/components/SVGIcons/IconLocationFilled.js +7 -31
- package/components/SVGIcons/IconLockClosed.js +7 -31
- package/components/SVGIcons/IconLockClosedFilled.js +7 -31
- package/components/SVGIcons/IconLockOpen.js +7 -31
- package/components/SVGIcons/IconLockOpenFilled.js +7 -31
- package/components/SVGIcons/IconMail.js +7 -31
- package/components/SVGIcons/IconMailAdd.js +7 -31
- package/components/SVGIcons/IconMailAddFilled.js +7 -31
- package/components/SVGIcons/IconMailArrowForward.js +7 -31
- package/components/SVGIcons/IconMailArrowForwardFilled.js +7 -31
- package/components/SVGIcons/IconMailFilled.js +7 -31
- package/components/SVGIcons/IconMailLink.js +7 -31
- package/components/SVGIcons/IconMailLinkFilled.js +7 -31
- package/components/SVGIcons/IconMedium.js +7 -31
- package/components/SVGIcons/IconMore.js +7 -31
- package/components/SVGIcons/IconMoreFilled.js +7 -31
- package/components/SVGIcons/IconMoreVertical.js +7 -31
- package/components/SVGIcons/IconMoreVerticalFilled.js +7 -31
- package/components/SVGIcons/IconNavigation.js +7 -31
- package/components/SVGIcons/IconNavigationFilled.js +7 -31
- package/components/SVGIcons/IconNotebook.js +7 -31
- package/components/SVGIcons/IconNotebookAdd.js +7 -47
- package/components/SVGIcons/IconNotebookAddFilled.js +7 -44
- package/components/SVGIcons/IconNotebookFilled.js +7 -31
- package/components/SVGIcons/IconOnlyEmployee.js +7 -28
- package/components/SVGIcons/IconOpen.js +7 -31
- package/components/SVGIcons/IconOpenFilled.js +7 -31
- package/components/SVGIcons/IconPatient.js +7 -28
- package/components/SVGIcons/IconPatientFilled.js +7 -28
- package/components/SVGIcons/IconPeople.js +7 -28
- package/components/SVGIcons/IconPeopleAdd.js +7 -31
- package/components/SVGIcons/IconPeopleAddFilled.js +7 -31
- package/components/SVGIcons/IconPeopleFilled.js +7 -31
- package/components/SVGIcons/IconPercent.js +7 -33
- package/components/SVGIcons/IconPerson.js +7 -31
- package/components/SVGIcons/IconPersonAccount.js +7 -28
- package/components/SVGIcons/IconPersonAccountFilled.js +7 -28
- package/components/SVGIcons/IconPersonAdd.js +7 -31
- package/components/SVGIcons/IconPersonAddFilled.js +7 -31
- package/components/SVGIcons/IconPersonArrowLeft.js +7 -28
- package/components/SVGIcons/IconPersonArrowLeftFilled.js +7 -28
- package/components/SVGIcons/IconPersonArrowRight.js +7 -28
- package/components/SVGIcons/IconPersonArrowRightFilled.js +7 -28
- package/components/SVGIcons/IconPersonBoard.js +7 -28
- package/components/SVGIcons/IconPersonFilled.js +7 -31
- package/components/SVGIcons/IconPersonMinus.js +7 -28
- package/components/SVGIcons/IconPersonStar.js +7 -31
- package/components/SVGIcons/IconPersonStarFilled.js +7 -31
- package/components/SVGIcons/IconPersonSubtract.js +7 -31
- package/components/SVGIcons/IconPersonSubtractFilled.js +7 -31
- package/components/SVGIcons/IconPhone.js +7 -31
- package/components/SVGIcons/IconPhoneFilled.js +7 -31
- package/components/SVGIcons/IconPlugConnected.js +7 -28
- package/components/SVGIcons/IconPos.js +7 -33
- package/components/SVGIcons/IconPosFilled.js +7 -33
- package/components/SVGIcons/IconProhibited.js +7 -31
- package/components/SVGIcons/IconProhibitedFilled.js +7 -31
- package/components/SVGIcons/IconProjectProduct.js +7 -28
- package/components/SVGIcons/IconQuestion.js +7 -31
- package/components/SVGIcons/IconQuestionFilled.js +7 -31
- package/components/SVGIcons/IconRedo.js +7 -31
- package/components/SVGIcons/IconRedoFilled.js +7 -31
- package/components/SVGIcons/IconRu.js +6 -60
- package/components/SVGIcons/IconRub.js +7 -28
- package/components/SVGIcons/IconRubFilled.js +7 -28
- package/components/SVGIcons/IconSave.js +7 -31
- package/components/SVGIcons/IconSaveFilled.js +7 -31
- package/components/SVGIcons/IconSavings.js +7 -31
- package/components/SVGIcons/IconSavingsFilled.js +7 -31
- package/components/SVGIcons/IconSearch.js +7 -31
- package/components/SVGIcons/IconSearchFilled.js +7 -31
- package/components/SVGIcons/IconSelectAllOff.js +7 -31
- package/components/SVGIcons/IconSelectAllOffFilled.js +7 -31
- package/components/SVGIcons/IconSelectAllOn.js +7 -31
- package/components/SVGIcons/IconSelectAllOnFilled.js +7 -31
- package/components/SVGIcons/IconSend.js +7 -31
- package/components/SVGIcons/IconSendFilled.js +7 -31
- package/components/SVGIcons/IconSettings.js +7 -28
- package/components/SVGIcons/IconSettingsFilled.js +7 -31
- package/components/SVGIcons/IconShare.js +7 -31
- package/components/SVGIcons/IconShareAndroid.js +7 -31
- package/components/SVGIcons/IconShareAndroidFilled.js +7 -31
- package/components/SVGIcons/IconShareFilled.js +7 -31
- package/components/SVGIcons/IconSignOut.js +7 -31
- package/components/SVGIcons/IconSignOutFilled.js +7 -31
- package/components/SVGIcons/IconSpinner.js +7 -31
- package/components/SVGIcons/IconSpinnerFilled.js +7 -31
- package/components/SVGIcons/IconStatus.js +7 -31
- package/components/SVGIcons/IconStatusFilled.js +7 -31
- package/components/SVGIcons/IconSubtract.js +7 -31
- package/components/SVGIcons/IconSubtractCircle.js +7 -31
- package/components/SVGIcons/IconSubtractCircleFilled.js +7 -31
- package/components/SVGIcons/IconSubtractFilled.js +7 -31
- package/components/SVGIcons/IconTableCellEdit.js +7 -35
- package/components/SVGIcons/IconTableCellEditFilled.js +7 -41
- package/components/SVGIcons/IconTelegram.js +7 -40
- package/components/SVGIcons/IconTimer.js +7 -31
- package/components/SVGIcons/IconTimerFilled.js +7 -31
- package/components/SVGIcons/IconTwitter.js +7 -31
- package/components/SVGIcons/IconUndo.js +7 -31
- package/components/SVGIcons/IconUndoFilled.js +7 -31
- package/components/SVGIcons/IconUnitsEmployee.js +7 -28
- package/components/SVGIcons/IconUpload.js +7 -28
- package/components/SVGIcons/IconUsd.js +7 -28
- package/components/SVGIcons/IconUsdFilled.js +7 -28
- package/components/SVGIcons/IconUserMinus.js +7 -31
- package/components/SVGIcons/IconVideo.js +7 -28
- package/components/SVGIcons/IconVideoFilled.js +7 -28
- package/components/SVGIcons/IconWallet.js +7 -31
- package/components/SVGIcons/IconWalletFilled.js +7 -31
- package/components/SVGIcons/IconWarning.js +7 -28
- package/components/SVGIcons/IconWarningFilled.js +7 -28
- package/components/SVGIcons/IconYoutube.js +7 -31
- package/components/SVGIcons/index.d.ts +2 -0
- package/components/SVGIcons/index.js +302 -303
- package/components/SVGIcons/types.js +1 -1
- package/components/Select/ButtonSelect/ButtonSelect.js +42 -195
- package/components/Select/FilterSelect/FilterDropdown.js +14 -95
- package/components/Select/FilterSelect/FilterGroupDropdown.js +18 -82
- package/components/Select/FilterSelect/FilterSelect.js +69 -199
- package/components/Select/MultiSelect/DesktopWrapper.js +18 -55
- package/components/Select/MultiSelect/MobileWrapper.js +12 -77
- package/components/Select/MultiSelect/MultiBase/MultiBase.js +60 -211
- package/components/Select/MultiSelect/MultiSelect.js +66 -244
- package/components/Select/MultiSelect/MultiSelectGrouped/MultiSelectGrouped.js +94 -264
- package/components/Select/MultiSelect/MultiSelectWithTabs/MultiSelectWithTabs.js +76 -251
- package/components/Select/MultiSelect/OptionsWrapper.js +64 -175
- package/components/Select/NestedSelect/NestedSelect.js +55 -197
- package/components/Select/ProfileDropdown/index.js +12 -82
- package/components/Select/Select/Select.js +85 -254
- package/components/Select/Select/SelectDesktop/index.js +66 -219
- package/components/Select/Select/SelectMobile/MobileTopContent.js +17 -90
- package/components/Select/Select/SelectMobile/index.js +49 -194
- package/components/Select/Select/helpers.js +8 -9
- package/components/Select/SharedComponents/Actions.js +13 -115
- package/components/Select/SharedComponents/ButtonSelectWrapper/Button/Button.js +8 -43
- package/components/Select/SharedComponents/ButtonSelectWrapper/ButtonSelectWrapper.js +27 -130
- package/components/Select/SharedComponents/ContentTop.js +70 -177
- package/components/Select/SharedComponents/Footer.js +10 -97
- package/components/Select/SharedComponents/InputSelectWrapper/InputSelectWrapper.js +49 -161
- package/components/Select/SharedComponents/Loading.js +5 -16
- package/components/Select/SharedComponents/index.js +6 -92
- package/components/Select/constants.js +7 -9
- package/components/Select/index.js +6 -114
- package/components/Select/localization.js +28 -30
- package/components/Select/types.js +1 -1
- package/components/SideSheet/Footer/Footer.js +13 -99
- package/components/SideSheet/SideSheet.js +55 -208
- package/components/SideSheet/index.js +1 -56
- package/components/SideSheet/types.js +1 -1
- package/components/Snackbar/Snackbar.js +29 -123
- package/components/Snackbar/consts.js +11 -13
- package/components/Snackbar/index.js +1 -54
- package/components/Snackbar/types.js +1 -1
- package/components/Status/Status.js +16 -51
- package/components/Status/index.js +1 -8
- package/components/Status/types.js +1 -1
- package/components/Stepper/Stepper.js +28 -44
- package/components/Stepper/index.js +1 -3
- package/components/Stepper/types.js +1 -1
- package/components/Switcher/Switcher.js +17 -114
- package/components/Switcher/index.js +1 -55
- package/components/Switcher/types.js +1 -1
- package/components/Tab/Tab.js +18 -35
- package/components/Tab/TabItem.js +11 -52
- package/components/Tab/index.js +1 -11
- package/components/Tab/types.js +1 -1
- package/components/Table/Header.js +19 -121
- package/components/Table/IndeterminateCheckbox.js +13 -76
- package/components/Table/Row.js +16 -92
- package/components/Table/Table.js +60 -160
- package/components/Table/index.js +1 -61
- package/components/Table/types.js +1 -1
- package/components/Table/utils.js +17 -76
- package/components/TableV2/AdvancedPagination.d.ts +8 -0
- package/components/TableV2/AdvancedPagination.js +62 -0
- package/components/TableV2/ColumnHeader.d.ts +9 -0
- package/components/TableV2/ColumnHeader.js +32 -0
- package/components/TableV2/ColumnSettings.d.ts +9 -0
- package/components/TableV2/ColumnSettings.js +33 -0
- package/components/TableV2/IndeterminateCheckbox.d.ts +13 -0
- package/components/TableV2/IndeterminateCheckbox.js +16 -0
- package/components/TableV2/Table.d.ts +3 -0
- package/components/TableV2/Table.js +123 -0
- package/components/TableV2/constants/index.d.ts +6 -0
- package/components/TableV2/constants/index.js +27 -0
- package/components/TableV2/hooks/useTableColumnSettings.d.ts +2 -0
- package/components/TableV2/hooks/useTableColumnSettings.js +17 -0
- package/components/TableV2/hooks/useTableControl.d.ts +11 -0
- package/components/TableV2/hooks/useTableControl.js +182 -0
- package/components/TableV2/index.d.ts +3 -0
- package/components/TableV2/index.js +3 -0
- package/components/TableV2/loadTableSettings.d.ts +2 -0
- package/components/TableV2/loadTableSettings.js +9 -0
- package/components/TableV2/types.d.ts +70 -0
- package/components/TableV2/types.js +1 -0
- package/components/Text/Text.js +5 -34
- package/components/Text/index.js +1 -5
- package/components/Text/types.js +1 -1
- package/components/Textarea/Textarea.js +36 -140
- package/components/Textarea/index.js +1 -56
- package/components/Textarea/types.js +1 -1
- package/components/Tooltip/Tooltip.js +49 -99
- package/components/Tooltip/index.js +1 -18
- package/components/Tooltip/types.js +11 -13
- package/consts/index.js +86 -65
- package/context/FormContextProvider.js +4 -10
- package/context/index.js +2 -5
- package/context/types.js +6 -10
- package/helperComponents/AnimatePresenceWrapper/AnimatePresenceWrapper.js +4 -12
- package/helperComponents/AnimatePresenceWrapper/index.js +1 -3
- package/helperComponents/CodeBlock/CodeBlock.js +4 -178
- package/helperComponents/CodeBlock/index.js +1 -3
- package/helperComponents/ErrorMessage/ErrorMessage.js +7 -26
- package/helperComponents/ErrorMessage/index.js +1 -8
- package/helperComponents/ErrorMessage/types.js +1 -1
- package/helperComponents/GoToWebPage/GoToWebPage.js +5 -66
- package/helperComponents/IconDynamicComponent/IconDynamicComponent.js +11 -25
- package/helperComponents/IconDynamicComponent/constants.js +10 -31
- package/helperComponents/IconDynamicComponent/index.js +1 -3
- package/helperComponents/Label/Label.js +8 -28
- package/helperComponents/Label/index.js +1 -6
- package/helperComponents/Label/types.js +1 -1
- package/helperComponents/Loader/Loader.js +4 -14
- package/helperComponents/Loader/index.js +1 -2
- package/helperComponents/Loader/types.js +1 -1
- package/helperComponents/OptionItem/OptionItem.js +27 -148
- package/helperComponents/OptionItem/index.js +1 -64
- package/helperComponents/OptionItem/types.js +1 -1
- package/helperComponents/index.js +6 -65
- package/helpers/check-authorization.js +57 -111
- package/helpers/download-file.js +7 -9
- package/helpers/format-date.js +14 -42
- package/helpers/get-module-prefix.js +3 -5
- package/helpers/index.js +7 -59
- package/helpers/isDeepEqual.js +11 -17
- package/helpers/locale.js +10 -15
- package/helpers/storage.js +17 -18
- package/hooks/index.js +12 -21
- package/hooks/useChangePositionsOnScroll.js +28 -32
- package/hooks/useDispatchEventOnScroll.js +8 -13
- package/hooks/useFormContext.js +3 -8
- package/hooks/useFormProps.js +3 -8
- package/hooks/useGetElemPositions.js +14 -16
- package/hooks/useGetElemSizes.js +11 -13
- package/hooks/useGetHasBottomSpace.js +13 -24
- package/hooks/useGetIsMobile.js +33 -45
- package/hooks/useGetTooltipPosition.js +66 -82
- package/hooks/useGetTooltipStyles.js +45 -87
- package/hooks/useHideBodyScroll.js +25 -34
- package/hooks/useHideOnScroll.js +19 -24
- package/hooks/useOnOutsideClick.js +33 -46
- package/hooks/useScreenSize.js +24 -34
- package/index.d.ts +1 -0
- package/index.js +46 -453
- package/package.json +5 -1
- package/type/file-upload.js +6 -8
- package/type/index.js +4 -4
- package/type/locale.js +12 -14
- package/type/notification.js +7 -9
- package/type/status-code.js +7 -9
- package/utils/helpers.js +63 -77
- /package/{Alert-V_kH4Snn.js → Alert-sShHxUYN.js} +0 -0
|
@@ -1,34 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
2
|
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
onClick = _ref.onClick,
|
|
11
|
-
refHandler = _ref.refHandler,
|
|
12
|
-
id = _ref.id,
|
|
13
|
-
dataId = _ref.dataId;
|
|
14
|
-
return /*#__PURE__*/React.createElement("svg", {
|
|
15
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
-
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
17
|
-
viewBox: "0 0 24 24",
|
|
18
|
-
fill: "none",
|
|
19
|
-
onClick: onClick,
|
|
20
|
-
ref: refHandler,
|
|
21
|
-
id: id,
|
|
22
|
-
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
23
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
24
|
-
id: "Theme=Filled"
|
|
25
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
26
|
-
id: "Shape",
|
|
27
|
-
fillRule: "evenodd",
|
|
28
|
-
clipRule: "evenodd",
|
|
29
|
-
d: "M14.9212 3.38397H9.07847L9.07847 10.664H14.9212V3.38397ZM9.07847 2C8.31412 2 7.6945 2.61962 7.6945 3.38397V4.23949H7.00995C6.24565 4.23949 5.62598 4.85913 5.62598 5.62346V20.616C5.62598 21.3804 6.24565 22 7.00995 22H16.9904C17.7546 22 18.3743 21.3804 18.3743 20.616V5.62346C18.3743 4.85913 17.7546 4.23949 16.9904 4.23949H16.3051V3.38397C16.3051 2.61962 15.6855 2 14.9212 2H9.07847ZM9.22714 15.7519C9.6108 15.7519 9.92183 15.4408 9.92183 15.0572C9.92183 14.6735 9.6108 14.3625 9.22714 14.3625C8.84347 14.3625 8.53245 14.6735 8.53245 15.0572C8.53245 15.4408 8.84347 15.7519 9.22714 15.7519ZM12.6952 15.0572C12.6952 15.4408 12.3842 15.7519 12.0005 15.7519C11.6168 15.7519 11.3058 15.4408 11.3058 15.0572C11.3058 14.6735 11.6168 14.3625 12.0005 14.3625C12.3842 14.3625 12.6952 14.6735 12.6952 15.0572ZM12.0005 18.2799C12.3842 18.2799 12.6952 17.9689 12.6952 17.5852C12.6952 17.2015 12.3842 16.8905 12.0005 16.8905C11.6168 16.8905 11.3058 17.2015 11.3058 17.5852C11.3058 17.9689 11.6168 18.2799 12.0005 18.2799ZM14.7738 15.7519C15.1575 15.7519 15.4685 15.4408 15.4685 15.0572C15.4685 14.6735 15.1575 14.3625 14.7738 14.3625C14.3902 14.3625 14.0791 14.6735 14.0791 15.0572C14.0791 15.4408 14.3902 15.7519 14.7738 15.7519ZM14.7738 18.2799C15.1575 18.2799 15.4685 17.9689 15.4685 17.5852C15.4685 17.2015 15.1575 16.8905 14.7738 16.8905C14.3902 16.8905 14.0791 17.2015 14.0791 17.5852C14.0791 17.9689 14.3902 18.2799 14.7738 18.2799ZM9.22714 18.2799C9.6108 18.2799 9.92183 17.9689 9.92183 17.5852C9.92183 17.2015 9.6108 16.8905 9.22714 16.8905C8.84347 16.8905 8.53245 17.2015 8.53245 17.5852C8.53245 17.9689 8.84347 18.2799 9.22714 18.2799Z",
|
|
30
|
-
fill: "#222222"
|
|
31
|
-
})));
|
|
32
|
-
};
|
|
33
|
-
|
|
34
|
-
export { IconPosFilled, IconPosFilled as default };
|
|
3
|
+
export const IconPosFilled = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
|
|
4
|
+
[`svg-icon__size-${size}`]: size,
|
|
5
|
+
[`svg-icon__type-${type}`]: type,
|
|
6
|
+
[className]: className
|
|
7
|
+
}), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("g", { id: "Theme=Filled", children: _jsx("path", { id: "Shape", fillRule: "evenodd", clipRule: "evenodd", d: "M14.9212 3.38397H9.07847L9.07847 10.664H14.9212V3.38397ZM9.07847 2C8.31412 2 7.6945 2.61962 7.6945 3.38397V4.23949H7.00995C6.24565 4.23949 5.62598 4.85913 5.62598 5.62346V20.616C5.62598 21.3804 6.24565 22 7.00995 22H16.9904C17.7546 22 18.3743 21.3804 18.3743 20.616V5.62346C18.3743 4.85913 17.7546 4.23949 16.9904 4.23949H16.3051V3.38397C16.3051 2.61962 15.6855 2 14.9212 2H9.07847ZM9.22714 15.7519C9.6108 15.7519 9.92183 15.4408 9.92183 15.0572C9.92183 14.6735 9.6108 14.3625 9.22714 14.3625C8.84347 14.3625 8.53245 14.6735 8.53245 15.0572C8.53245 15.4408 8.84347 15.7519 9.22714 15.7519ZM12.6952 15.0572C12.6952 15.4408 12.3842 15.7519 12.0005 15.7519C11.6168 15.7519 11.3058 15.4408 11.3058 15.0572C11.3058 14.6735 11.6168 14.3625 12.0005 14.3625C12.3842 14.3625 12.6952 14.6735 12.6952 15.0572ZM12.0005 18.2799C12.3842 18.2799 12.6952 17.9689 12.6952 17.5852C12.6952 17.2015 12.3842 16.8905 12.0005 16.8905C11.6168 16.8905 11.3058 17.2015 11.3058 17.5852C11.3058 17.9689 11.6168 18.2799 12.0005 18.2799ZM14.7738 15.7519C15.1575 15.7519 15.4685 15.4408 15.4685 15.0572C15.4685 14.6735 15.1575 14.3625 14.7738 14.3625C14.3902 14.3625 14.0791 14.6735 14.0791 15.0572C14.0791 15.4408 14.3902 15.7519 14.7738 15.7519ZM14.7738 18.2799C15.1575 18.2799 15.4685 17.9689 15.4685 17.5852C15.4685 17.2015 15.1575 16.8905 14.7738 16.8905C14.3902 16.8905 14.0791 17.2015 14.0791 17.5852C14.0791 17.9689 14.3902 18.2799 14.7738 18.2799ZM9.22714 18.2799C9.6108 18.2799 9.92183 17.9689 9.92183 17.5852C9.92183 17.2015 9.6108 16.8905 9.22714 16.8905C8.84347 16.8905 8.53245 17.2015 8.53245 17.5852C8.53245 17.9689 8.84347 18.2799 9.22714 18.2799Z", fill: "#222222" }) }) }));
|
|
8
|
+
export default IconPosFilled;
|
|
@@ -1,32 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
2
|
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
onClick = _ref.onClick,
|
|
11
|
-
refHandler = _ref.refHandler,
|
|
12
|
-
id = _ref.id,
|
|
13
|
-
dataId = _ref.dataId;
|
|
14
|
-
return /*#__PURE__*/React.createElement("svg", {
|
|
15
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
-
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
17
|
-
viewBox: "0 0 24 24",
|
|
18
|
-
fill: "none",
|
|
19
|
-
onClick: onClick,
|
|
20
|
-
ref: refHandler,
|
|
21
|
-
id: id,
|
|
22
|
-
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
23
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
24
|
-
id: "Size=24, Theme=Regular"
|
|
25
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
26
|
-
id: "Shape",
|
|
27
|
-
d: "M11.9941 2C17.517 2 21.9941 6.47715 21.9941 12C21.9941 17.5228 17.517 22 11.9941 22C6.47129 22 1.99414 17.5228 1.99414 12C1.99414 6.47715 6.47129 2 11.9941 2ZM18.5115 6.54309L6.53723 18.5173C8.01369 19.7549 9.9169 20.5 11.9941 20.5C16.6886 20.5 20.4941 16.6944 20.4941 12C20.4941 9.92276 19.749 8.01955 18.5115 6.54309ZM11.9941 3.5C7.29972 3.5 3.49414 7.30558 3.49414 12C3.49414 14.0772 4.23927 15.9804 5.47682 17.4569L17.4511 5.48268C15.9746 4.24513 14.0714 3.5 11.9941 3.5Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconProhibited, IconProhibited as default };
|
|
3
|
+
export const IconProhibited = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
|
|
4
|
+
[`svg-icon__size-${size}`]: size,
|
|
5
|
+
[`svg-icon__type-${type}`]: type,
|
|
6
|
+
[className]: className
|
|
7
|
+
}), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("g", { id: "Size=24, Theme=Regular", children: _jsx("path", { id: "Shape", d: "M11.9941 2C17.517 2 21.9941 6.47715 21.9941 12C21.9941 17.5228 17.517 22 11.9941 22C6.47129 22 1.99414 17.5228 1.99414 12C1.99414 6.47715 6.47129 2 11.9941 2ZM18.5115 6.54309L6.53723 18.5173C8.01369 19.7549 9.9169 20.5 11.9941 20.5C16.6886 20.5 20.4941 16.6944 20.4941 12C20.4941 9.92276 19.749 8.01955 18.5115 6.54309ZM11.9941 3.5C7.29972 3.5 3.49414 7.30558 3.49414 12C3.49414 14.0772 4.23927 15.9804 5.47682 17.4569L17.4511 5.48268C15.9746 4.24513 14.0714 3.5 11.9941 3.5Z", fill: "#222222" }) }) }));
|
|
8
|
+
export default IconProhibited;
|
|
@@ -1,32 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
2
|
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
onClick = _ref.onClick,
|
|
11
|
-
refHandler = _ref.refHandler,
|
|
12
|
-
id = _ref.id,
|
|
13
|
-
dataId = _ref.dataId;
|
|
14
|
-
return /*#__PURE__*/React.createElement("svg", {
|
|
15
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
-
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
17
|
-
viewBox: "0 0 24 24",
|
|
18
|
-
fill: "none",
|
|
19
|
-
onClick: onClick,
|
|
20
|
-
ref: refHandler,
|
|
21
|
-
id: id,
|
|
22
|
-
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
23
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
24
|
-
id: "Size=24, Theme=Filled"
|
|
25
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
26
|
-
id: "Shape",
|
|
27
|
-
d: "M11.9941 2C17.517 2 21.9941 6.47715 21.9941 12C21.9941 17.5228 17.517 22 11.9941 22C6.47129 22 1.99414 17.5228 1.99414 12C1.99414 6.47715 6.47129 2 11.9941 2ZM18.1072 7.6538L7.64794 18.1131C8.87406 18.9864 10.3741 19.5 11.9941 19.5C16.1363 19.5 19.4941 16.1421 19.4941 12C19.4941 10.38 18.9805 8.87992 18.1072 7.6538ZM11.9941 4.5C7.85201 4.5 4.49414 7.85786 4.49414 12C4.49414 13.62 5.00778 15.1201 5.88109 16.3462L16.3403 5.88695C15.1142 5.01364 13.6142 4.5 11.9941 4.5Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconProhibitedFilled, IconProhibitedFilled as default };
|
|
3
|
+
export const IconProhibitedFilled = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
|
|
4
|
+
[`svg-icon__size-${size}`]: size,
|
|
5
|
+
[`svg-icon__type-${type}`]: type,
|
|
6
|
+
[className]: className
|
|
7
|
+
}), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("g", { id: "Size=24, Theme=Filled", children: _jsx("path", { id: "Shape", d: "M11.9941 2C17.517 2 21.9941 6.47715 21.9941 12C21.9941 17.5228 17.517 22 11.9941 22C6.47129 22 1.99414 17.5228 1.99414 12C1.99414 6.47715 6.47129 2 11.9941 2ZM18.1072 7.6538L7.64794 18.1131C8.87406 18.9864 10.3741 19.5 11.9941 19.5C16.1363 19.5 19.4941 16.1421 19.4941 12C19.4941 10.38 18.9805 8.87992 18.1072 7.6538ZM11.9941 4.5C7.85201 4.5 4.49414 7.85786 4.49414 12C4.49414 13.62 5.00778 15.1201 5.88109 16.3462L16.3403 5.88695C15.1142 5.01364 13.6142 4.5 11.9941 4.5Z", fill: "#222222" }) }) }));
|
|
8
|
+
export default IconProhibitedFilled;
|
|
@@ -1,29 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
2
|
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
onClick = _ref.onClick,
|
|
11
|
-
refHandler = _ref.refHandler,
|
|
12
|
-
id = _ref.id,
|
|
13
|
-
dataId = _ref.dataId;
|
|
14
|
-
return /*#__PURE__*/React.createElement("svg", {
|
|
15
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
-
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
17
|
-
viewBox: "0 0 24 24",
|
|
18
|
-
fill: "none",
|
|
19
|
-
onClick: onClick,
|
|
20
|
-
ref: refHandler,
|
|
21
|
-
id: id,
|
|
22
|
-
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
23
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
24
|
-
d: "M11.471 2.06803C10.9763 2.17677 10.65 2.39968 10.4597 2.75852C10.3782 2.90532 10.3564 3.09562 10.3401 3.70456L10.3184 4.46573L9.90517 4.61797C9.67138 4.69952 9.31798 4.84632 9.10593 4.94963L8.72534 5.12905L8.17621 4.59622C7.74669 4.18301 7.5727 4.05252 7.38785 4.00359C6.89308 3.86767 6.43094 4.04165 5.75675 4.61797C4.96839 5.29216 4.51712 5.92828 4.46819 6.45023C4.43013 6.85257 4.59867 7.16791 5.15868 7.72249L5.64258 8.20094L5.43597 8.64677C5.32179 8.886 5.16956 9.25028 5.10431 9.45145L4.97926 9.81029L4.21265 9.83204C3.49497 9.84835 3.43516 9.85922 3.19593 10.0006C2.69573 10.2942 2.5 10.8488 2.5 11.996C2.5 13.1432 2.69573 13.6977 3.19593 13.9913C3.43516 14.1327 3.49497 14.1436 4.21265 14.1599L4.97383 14.1816L5.12606 14.5948C5.20762 14.8286 5.35442 15.182 5.45772 15.3941L5.63714 15.7747L5.10431 16.3238C4.6911 16.7533 4.56062 16.9273 4.51168 17.1122C4.37576 17.6124 4.54974 18.0691 5.1315 18.7541C5.55015 19.238 6.11016 19.7219 6.46356 19.8905C6.99095 20.146 7.54008 20.0427 7.9696 19.6023C8.08378 19.4881 8.19796 19.3902 8.2197 19.3902C8.24145 19.3902 8.2632 19.9285 8.2632 20.5809V21.7771L8.40456 21.8858C8.54592 22 8.58398 22 12.504 22C16.4241 22 16.4622 22 16.6035 21.8858L16.7449 21.7771V20.5483V19.325L17.0657 19.6186C17.7344 20.2439 18.3162 20.1732 19.2622 19.3685C20.0288 18.7052 20.491 18.0528 20.5399 17.5417C20.578 17.1393 20.4094 16.824 19.8494 16.2694L19.3655 15.791L19.5721 15.3451C19.6863 15.1059 19.8385 14.7416 19.9038 14.5405L20.0288 14.1816L20.7954 14.1599C21.4805 14.1436 21.5784 14.1327 21.785 14.0131C22.2852 13.7249 22.4592 13.2845 22.4972 12.2352C22.5407 10.9357 22.3504 10.3159 21.8176 10.0006C21.5729 9.85922 21.5131 9.84835 20.7954 9.83204L20.0343 9.81029L19.882 9.39708C19.8005 9.16329 19.6537 8.80445 19.5504 8.59784L19.371 8.21725L19.8929 7.67355C20.3224 7.23316 20.4366 7.08092 20.491 6.87432C20.578 6.56985 20.5399 6.25994 20.3822 5.94459C20.1539 5.49332 19.4525 4.71584 18.9414 4.35156C18.0933 3.74262 17.5931 3.8133 16.7503 4.67234L16.2991 5.13448L15.8532 4.92788C15.614 4.8137 15.2497 4.66147 15.0486 4.59622L14.6897 4.47117L14.668 3.70456C14.6517 2.98688 14.6408 2.92707 14.4994 2.68784C14.32 2.37793 13.9775 2.16045 13.5153 2.06259C13.1021 1.9756 11.8679 1.98103 11.471 2.06803ZM13.5697 2.98688C13.6621 3.03581 13.7546 3.11736 13.7763 3.16086C13.7926 3.20979 13.8089 3.63388 13.8089 4.10146C13.8144 4.74302 13.8307 4.98225 13.885 5.05293C13.9285 5.1073 14.2548 5.24866 14.6082 5.36827C14.9616 5.48789 15.4889 5.7108 15.7771 5.86304C16.1958 6.08052 16.3317 6.12945 16.4567 6.09683C16.5437 6.07508 16.8645 5.80867 17.2342 5.43895C17.6257 5.05293 17.9084 4.81914 17.9791 4.81914C18.3162 4.81914 19.5449 6.02615 19.6537 6.46654C19.6917 6.60247 19.6319 6.67315 19.0665 7.25491C18.7022 7.63006 18.4195 7.96171 18.3977 8.04871C18.3705 8.16832 18.4195 8.30968 18.637 8.72289C18.7892 9.01105 19.0121 9.53844 19.1317 9.89184C19.2513 10.2452 19.3927 10.5715 19.4471 10.615C19.5178 10.6693 19.7624 10.6856 20.404 10.6911C20.877 10.6911 21.3065 10.7128 21.3609 10.7454C21.5566 10.8488 21.611 11.1097 21.611 11.996C21.611 12.8822 21.5566 13.1432 21.3609 13.2465C21.3065 13.2791 20.877 13.3008 20.404 13.3008C19.7624 13.3063 19.5178 13.3226 19.4471 13.3769C19.3927 13.4204 19.2513 13.7467 19.1317 14.1001C19.0121 14.4535 18.7892 14.9809 18.637 15.269C18.4195 15.6877 18.3705 15.8236 18.4032 15.9486C18.4249 16.0356 18.6913 16.3564 19.061 16.7261C19.4471 17.1176 19.6809 17.4003 19.6809 17.471C19.6809 17.8081 18.4739 19.0368 18.0335 19.1456C17.8975 19.1836 17.8269 19.1293 17.3158 18.6291C17.0059 18.3192 16.7612 18.0473 16.7775 18.0256C16.8319 17.9331 16.6796 17.2263 16.5328 16.9055C16.4459 16.7261 16.2556 16.4488 16.1088 16.2966L15.8424 16.0193L16.136 15.7366C16.8047 15.0787 17.3375 14.1381 17.5713 13.2138C17.7399 12.5451 17.7399 11.3544 17.5713 10.7291C17.2614 9.58737 16.5709 8.55978 15.6412 7.85841C13.8252 6.48285 11.4547 6.42848 9.54089 7.71705C8.83408 8.1955 8.08378 9.08717 7.73581 9.86466C7.54552 10.2996 7.34979 11.0825 7.30629 11.6208C7.19212 13.0725 7.79562 14.6764 8.84496 15.7094L9.16574 16.0193L8.89933 16.2966C8.75253 16.4488 8.56223 16.7261 8.47524 16.9055C8.32844 17.2263 8.17077 17.9549 8.23602 18.0201C8.29582 18.0799 7.15406 19.1728 7.03444 19.1728C6.65929 19.1728 5.32723 17.8135 5.32723 17.4275C5.32723 17.3949 5.60452 17.0795 5.94705 16.7316C6.30589 16.3619 6.58861 16.0302 6.61036 15.9432C6.63754 15.8236 6.58861 15.6822 6.37113 15.269C6.2189 14.9809 5.99598 14.4535 5.87637 14.1001C5.75675 13.7467 5.61539 13.4204 5.56102 13.3769C5.49034 13.3226 5.24568 13.3063 4.59324 13.3008C3.57109 13.3008 3.51672 13.2791 3.42972 12.8659C3.35361 12.507 3.35361 11.4849 3.42972 11.126C3.51672 10.7128 3.57109 10.6911 4.59324 10.6911C5.24568 10.6856 5.49034 10.6693 5.56102 10.615C5.61539 10.5715 5.75675 10.2452 5.87637 9.89184C5.99598 9.53844 6.2189 9.01105 6.37113 8.72289C6.58861 8.30424 6.63754 8.16832 6.60492 8.04327C6.58317 7.95628 6.31676 7.6355 5.94705 7.26578C5.56646 6.87975 5.32723 6.59159 5.32723 6.52635C5.32723 6.14576 6.68648 4.81914 7.0725 4.81914C7.10512 4.81914 7.42047 5.09642 7.76844 5.43895C8.13815 5.79779 8.46981 6.08052 8.5568 6.10227C8.67641 6.12945 8.81777 6.08052 9.23098 5.86304C9.51914 5.7108 10.0465 5.48789 10.3999 5.36827C10.7533 5.24866 11.0796 5.1073 11.1231 5.05293C11.1774 4.98225 11.1937 4.73758 11.1992 4.07971C11.1992 3.0793 11.2264 3.01406 11.6069 2.92163C11.7266 2.88901 12.1778 2.8727 12.6128 2.87814C13.2272 2.88901 13.4392 2.91619 13.5697 2.98688ZM13.2652 7.72249C14.1406 7.88016 14.8746 8.27162 15.5542 8.94581C16.6688 10.055 17.082 11.5175 16.7123 13.0181C16.5111 13.8282 16.0707 14.5731 15.4183 15.1875C14.9887 15.5952 14.88 15.6442 14.532 15.5517C14.4124 15.5191 14.4179 15.5082 14.6245 15.269C15.141 14.6873 15.402 13.8173 15.2932 13.0562C15.0486 11.3598 13.2978 10.2344 11.6831 10.74C10.3673 11.1532 9.4974 12.5342 9.72031 13.8608C9.80187 14.3284 10.0792 14.9265 10.3836 15.269C10.5902 15.5082 10.5957 15.5191 10.4761 15.5517C10.1879 15.6279 10.0302 15.5844 9.7475 15.3506C8.93195 14.6873 8.40456 13.7467 8.22514 12.643C8.11096 11.947 8.17621 11.213 8.41544 10.5443C8.64379 9.89184 8.88302 9.52756 9.45934 8.94581C9.91604 8.4891 10.0411 8.39667 10.5467 8.14657C11.5091 7.67899 12.3083 7.55394 13.2652 7.72249ZM13.3033 11.6697C14.1678 12.0666 14.6408 13.0453 14.3852 13.9206C14.2656 14.3339 14.1025 14.5785 13.76 14.8939C12.727 15.8182 11.0741 15.3397 10.6446 13.9968C10.3619 13.1105 10.7914 12.1264 11.6396 11.6969C12.1833 11.4196 12.7324 11.4142 13.3033 11.6697ZM14.4559 16.4217C14.7115 16.476 15.0051 16.563 15.1084 16.6174C15.3748 16.7533 15.6303 17.0306 15.7608 17.3242C15.8641 17.5525 15.875 17.6776 15.875 19.3468V21.1301H12.504H9.13312V19.3468C9.13312 17.6776 9.14399 17.5525 9.24729 17.3242C9.37778 17.0306 9.63332 16.7533 9.89973 16.6174C10.0683 16.5304 10.5848 16.4108 11.172 16.3238C11.2644 16.3129 11.9332 16.3075 12.6672 16.3129C13.673 16.3238 14.1134 16.351 14.4559 16.4217Z",
|
|
25
|
-
fill: "#555555"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconProjectProduct, IconProjectProduct as default };
|
|
3
|
+
export const IconProjectProduct = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
|
|
4
|
+
[`svg-icon__size-${size}`]: size,
|
|
5
|
+
[`svg-icon__type-${type}`]: type,
|
|
6
|
+
[className]: className
|
|
7
|
+
}), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("path", { d: "M11.471 2.06803C10.9763 2.17677 10.65 2.39968 10.4597 2.75852C10.3782 2.90532 10.3564 3.09562 10.3401 3.70456L10.3184 4.46573L9.90517 4.61797C9.67138 4.69952 9.31798 4.84632 9.10593 4.94963L8.72534 5.12905L8.17621 4.59622C7.74669 4.18301 7.5727 4.05252 7.38785 4.00359C6.89308 3.86767 6.43094 4.04165 5.75675 4.61797C4.96839 5.29216 4.51712 5.92828 4.46819 6.45023C4.43013 6.85257 4.59867 7.16791 5.15868 7.72249L5.64258 8.20094L5.43597 8.64677C5.32179 8.886 5.16956 9.25028 5.10431 9.45145L4.97926 9.81029L4.21265 9.83204C3.49497 9.84835 3.43516 9.85922 3.19593 10.0006C2.69573 10.2942 2.5 10.8488 2.5 11.996C2.5 13.1432 2.69573 13.6977 3.19593 13.9913C3.43516 14.1327 3.49497 14.1436 4.21265 14.1599L4.97383 14.1816L5.12606 14.5948C5.20762 14.8286 5.35442 15.182 5.45772 15.3941L5.63714 15.7747L5.10431 16.3238C4.6911 16.7533 4.56062 16.9273 4.51168 17.1122C4.37576 17.6124 4.54974 18.0691 5.1315 18.7541C5.55015 19.238 6.11016 19.7219 6.46356 19.8905C6.99095 20.146 7.54008 20.0427 7.9696 19.6023C8.08378 19.4881 8.19796 19.3902 8.2197 19.3902C8.24145 19.3902 8.2632 19.9285 8.2632 20.5809V21.7771L8.40456 21.8858C8.54592 22 8.58398 22 12.504 22C16.4241 22 16.4622 22 16.6035 21.8858L16.7449 21.7771V20.5483V19.325L17.0657 19.6186C17.7344 20.2439 18.3162 20.1732 19.2622 19.3685C20.0288 18.7052 20.491 18.0528 20.5399 17.5417C20.578 17.1393 20.4094 16.824 19.8494 16.2694L19.3655 15.791L19.5721 15.3451C19.6863 15.1059 19.8385 14.7416 19.9038 14.5405L20.0288 14.1816L20.7954 14.1599C21.4805 14.1436 21.5784 14.1327 21.785 14.0131C22.2852 13.7249 22.4592 13.2845 22.4972 12.2352C22.5407 10.9357 22.3504 10.3159 21.8176 10.0006C21.5729 9.85922 21.5131 9.84835 20.7954 9.83204L20.0343 9.81029L19.882 9.39708C19.8005 9.16329 19.6537 8.80445 19.5504 8.59784L19.371 8.21725L19.8929 7.67355C20.3224 7.23316 20.4366 7.08092 20.491 6.87432C20.578 6.56985 20.5399 6.25994 20.3822 5.94459C20.1539 5.49332 19.4525 4.71584 18.9414 4.35156C18.0933 3.74262 17.5931 3.8133 16.7503 4.67234L16.2991 5.13448L15.8532 4.92788C15.614 4.8137 15.2497 4.66147 15.0486 4.59622L14.6897 4.47117L14.668 3.70456C14.6517 2.98688 14.6408 2.92707 14.4994 2.68784C14.32 2.37793 13.9775 2.16045 13.5153 2.06259C13.1021 1.9756 11.8679 1.98103 11.471 2.06803ZM13.5697 2.98688C13.6621 3.03581 13.7546 3.11736 13.7763 3.16086C13.7926 3.20979 13.8089 3.63388 13.8089 4.10146C13.8144 4.74302 13.8307 4.98225 13.885 5.05293C13.9285 5.1073 14.2548 5.24866 14.6082 5.36827C14.9616 5.48789 15.4889 5.7108 15.7771 5.86304C16.1958 6.08052 16.3317 6.12945 16.4567 6.09683C16.5437 6.07508 16.8645 5.80867 17.2342 5.43895C17.6257 5.05293 17.9084 4.81914 17.9791 4.81914C18.3162 4.81914 19.5449 6.02615 19.6537 6.46654C19.6917 6.60247 19.6319 6.67315 19.0665 7.25491C18.7022 7.63006 18.4195 7.96171 18.3977 8.04871C18.3705 8.16832 18.4195 8.30968 18.637 8.72289C18.7892 9.01105 19.0121 9.53844 19.1317 9.89184C19.2513 10.2452 19.3927 10.5715 19.4471 10.615C19.5178 10.6693 19.7624 10.6856 20.404 10.6911C20.877 10.6911 21.3065 10.7128 21.3609 10.7454C21.5566 10.8488 21.611 11.1097 21.611 11.996C21.611 12.8822 21.5566 13.1432 21.3609 13.2465C21.3065 13.2791 20.877 13.3008 20.404 13.3008C19.7624 13.3063 19.5178 13.3226 19.4471 13.3769C19.3927 13.4204 19.2513 13.7467 19.1317 14.1001C19.0121 14.4535 18.7892 14.9809 18.637 15.269C18.4195 15.6877 18.3705 15.8236 18.4032 15.9486C18.4249 16.0356 18.6913 16.3564 19.061 16.7261C19.4471 17.1176 19.6809 17.4003 19.6809 17.471C19.6809 17.8081 18.4739 19.0368 18.0335 19.1456C17.8975 19.1836 17.8269 19.1293 17.3158 18.6291C17.0059 18.3192 16.7612 18.0473 16.7775 18.0256C16.8319 17.9331 16.6796 17.2263 16.5328 16.9055C16.4459 16.7261 16.2556 16.4488 16.1088 16.2966L15.8424 16.0193L16.136 15.7366C16.8047 15.0787 17.3375 14.1381 17.5713 13.2138C17.7399 12.5451 17.7399 11.3544 17.5713 10.7291C17.2614 9.58737 16.5709 8.55978 15.6412 7.85841C13.8252 6.48285 11.4547 6.42848 9.54089 7.71705C8.83408 8.1955 8.08378 9.08717 7.73581 9.86466C7.54552 10.2996 7.34979 11.0825 7.30629 11.6208C7.19212 13.0725 7.79562 14.6764 8.84496 15.7094L9.16574 16.0193L8.89933 16.2966C8.75253 16.4488 8.56223 16.7261 8.47524 16.9055C8.32844 17.2263 8.17077 17.9549 8.23602 18.0201C8.29582 18.0799 7.15406 19.1728 7.03444 19.1728C6.65929 19.1728 5.32723 17.8135 5.32723 17.4275C5.32723 17.3949 5.60452 17.0795 5.94705 16.7316C6.30589 16.3619 6.58861 16.0302 6.61036 15.9432C6.63754 15.8236 6.58861 15.6822 6.37113 15.269C6.2189 14.9809 5.99598 14.4535 5.87637 14.1001C5.75675 13.7467 5.61539 13.4204 5.56102 13.3769C5.49034 13.3226 5.24568 13.3063 4.59324 13.3008C3.57109 13.3008 3.51672 13.2791 3.42972 12.8659C3.35361 12.507 3.35361 11.4849 3.42972 11.126C3.51672 10.7128 3.57109 10.6911 4.59324 10.6911C5.24568 10.6856 5.49034 10.6693 5.56102 10.615C5.61539 10.5715 5.75675 10.2452 5.87637 9.89184C5.99598 9.53844 6.2189 9.01105 6.37113 8.72289C6.58861 8.30424 6.63754 8.16832 6.60492 8.04327C6.58317 7.95628 6.31676 7.6355 5.94705 7.26578C5.56646 6.87975 5.32723 6.59159 5.32723 6.52635C5.32723 6.14576 6.68648 4.81914 7.0725 4.81914C7.10512 4.81914 7.42047 5.09642 7.76844 5.43895C8.13815 5.79779 8.46981 6.08052 8.5568 6.10227C8.67641 6.12945 8.81777 6.08052 9.23098 5.86304C9.51914 5.7108 10.0465 5.48789 10.3999 5.36827C10.7533 5.24866 11.0796 5.1073 11.1231 5.05293C11.1774 4.98225 11.1937 4.73758 11.1992 4.07971C11.1992 3.0793 11.2264 3.01406 11.6069 2.92163C11.7266 2.88901 12.1778 2.8727 12.6128 2.87814C13.2272 2.88901 13.4392 2.91619 13.5697 2.98688ZM13.2652 7.72249C14.1406 7.88016 14.8746 8.27162 15.5542 8.94581C16.6688 10.055 17.082 11.5175 16.7123 13.0181C16.5111 13.8282 16.0707 14.5731 15.4183 15.1875C14.9887 15.5952 14.88 15.6442 14.532 15.5517C14.4124 15.5191 14.4179 15.5082 14.6245 15.269C15.141 14.6873 15.402 13.8173 15.2932 13.0562C15.0486 11.3598 13.2978 10.2344 11.6831 10.74C10.3673 11.1532 9.4974 12.5342 9.72031 13.8608C9.80187 14.3284 10.0792 14.9265 10.3836 15.269C10.5902 15.5082 10.5957 15.5191 10.4761 15.5517C10.1879 15.6279 10.0302 15.5844 9.7475 15.3506C8.93195 14.6873 8.40456 13.7467 8.22514 12.643C8.11096 11.947 8.17621 11.213 8.41544 10.5443C8.64379 9.89184 8.88302 9.52756 9.45934 8.94581C9.91604 8.4891 10.0411 8.39667 10.5467 8.14657C11.5091 7.67899 12.3083 7.55394 13.2652 7.72249ZM13.3033 11.6697C14.1678 12.0666 14.6408 13.0453 14.3852 13.9206C14.2656 14.3339 14.1025 14.5785 13.76 14.8939C12.727 15.8182 11.0741 15.3397 10.6446 13.9968C10.3619 13.1105 10.7914 12.1264 11.6396 11.6969C12.1833 11.4196 12.7324 11.4142 13.3033 11.6697ZM14.4559 16.4217C14.7115 16.476 15.0051 16.563 15.1084 16.6174C15.3748 16.7533 15.6303 17.0306 15.7608 17.3242C15.8641 17.5525 15.875 17.6776 15.875 19.3468V21.1301H12.504H9.13312V19.3468C9.13312 17.6776 9.14399 17.5525 9.24729 17.3242C9.37778 17.0306 9.63332 16.7533 9.89973 16.6174C10.0683 16.5304 10.5848 16.4108 11.172 16.3238C11.2644 16.3129 11.9332 16.3075 12.6672 16.3129C13.673 16.3238 14.1134 16.351 14.4559 16.4217Z", fill: "#555555" }) }));
|
|
8
|
+
export default IconProjectProduct;
|
|
@@ -1,32 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
2
|
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
onClick = _ref.onClick,
|
|
11
|
-
refHandler = _ref.refHandler,
|
|
12
|
-
id = _ref.id,
|
|
13
|
-
dataId = _ref.dataId;
|
|
14
|
-
return /*#__PURE__*/React.createElement("svg", {
|
|
15
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
-
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
17
|
-
viewBox: "0 0 24 24",
|
|
18
|
-
fill: "none",
|
|
19
|
-
onClick: onClick,
|
|
20
|
-
ref: refHandler,
|
|
21
|
-
id: id,
|
|
22
|
-
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
23
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
24
|
-
id: "Size=24, Theme=Regular"
|
|
25
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
26
|
-
id: "Shape",
|
|
27
|
-
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.667ZM12 15.5C12.5523 15.5 13 15.9477 13 16.5C13 17.0523 12.5523 17.5 12 17.5C11.4477 17.5 11 17.0523 11 16.5C11 15.9477 11.4477 15.5 12 15.5ZM12 6.75C13.5188 6.75 14.75 7.98122 14.75 9.5C14.75 10.5108 14.4525 11.074 13.6989 11.8586L13.5303 12.0303C12.9084 12.6522 12.75 12.9163 12.75 13.5C12.75 13.9142 12.4142 14.25 12 14.25C11.5858 14.25 11.25 13.9142 11.25 13.5C11.25 12.4892 11.5475 11.926 12.3011 11.1414L12.4697 10.9697C13.0916 10.3478 13.25 10.0837 13.25 9.5C13.25 8.80964 12.6904 8.25 12 8.25C11.3528 8.25 10.8205 8.74187 10.7565 9.37219L10.75 9.5C10.75 9.91421 10.4142 10.25 10 10.25C9.58579 10.25 9.25 9.91421 9.25 9.5C9.25 7.98122 10.4812 6.75 12 6.75Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconQuestion, IconQuestion as default };
|
|
3
|
+
export const IconQuestion = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
|
|
4
|
+
[`svg-icon__size-${size}`]: size,
|
|
5
|
+
[`svg-icon__type-${type}`]: type,
|
|
6
|
+
[className]: className
|
|
7
|
+
}), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("g", { id: "Size=24, Theme=Regular", children: _jsx("path", { id: "Shape", 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.667ZM12 15.5C12.5523 15.5 13 15.9477 13 16.5C13 17.0523 12.5523 17.5 12 17.5C11.4477 17.5 11 17.0523 11 16.5C11 15.9477 11.4477 15.5 12 15.5ZM12 6.75C13.5188 6.75 14.75 7.98122 14.75 9.5C14.75 10.5108 14.4525 11.074 13.6989 11.8586L13.5303 12.0303C12.9084 12.6522 12.75 12.9163 12.75 13.5C12.75 13.9142 12.4142 14.25 12 14.25C11.5858 14.25 11.25 13.9142 11.25 13.5C11.25 12.4892 11.5475 11.926 12.3011 11.1414L12.4697 10.9697C13.0916 10.3478 13.25 10.0837 13.25 9.5C13.25 8.80964 12.6904 8.25 12 8.25C11.3528 8.25 10.8205 8.74187 10.7565 9.37219L10.75 9.5C10.75 9.91421 10.4142 10.25 10 10.25C9.58579 10.25 9.25 9.91421 9.25 9.5C9.25 7.98122 10.4812 6.75 12 6.75Z", fill: "#222222" }) }) }));
|
|
8
|
+
export default IconQuestion;
|
|
@@ -1,32 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
2
|
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
onClick = _ref.onClick,
|
|
11
|
-
refHandler = _ref.refHandler,
|
|
12
|
-
id = _ref.id,
|
|
13
|
-
dataId = _ref.dataId;
|
|
14
|
-
return /*#__PURE__*/React.createElement("svg", {
|
|
15
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
-
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
17
|
-
viewBox: "0 0 24 24",
|
|
18
|
-
fill: "none",
|
|
19
|
-
onClick: onClick,
|
|
20
|
-
ref: refHandler,
|
|
21
|
-
id: id,
|
|
22
|
-
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
23
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
24
|
-
id: "Size=24, Theme=Filled"
|
|
25
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
26
|
-
id: "Shape",
|
|
27
|
-
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 15.5C11.4477 15.5 11 15.9477 11 16.5C11 17.0523 11.4477 17.5 12 17.5C12.5523 17.5 13 17.0523 13 16.5C13 15.9477 12.5523 15.5 12 15.5ZM12 6.75C10.4812 6.75 9.25 7.98122 9.25 9.5C9.25 9.91421 9.58579 10.25 10 10.25C10.3797 10.25 10.6935 9.96785 10.7432 9.60177L10.75 9.5C10.75 8.80964 11.3096 8.25 12 8.25C12.6904 8.25 13.25 8.80964 13.25 9.5C13.25 10.0388 13.115 10.3053 12.6051 10.8322L12.4697 10.9697C11.5916 11.8478 11.25 12.4171 11.25 13.5C11.25 13.9142 11.5858 14.25 12 14.25C12.4142 14.25 12.75 13.9142 12.75 13.5C12.75 12.9612 12.885 12.6947 13.3949 12.1678L13.5303 12.0303C14.4084 11.1522 14.75 10.5829 14.75 9.5C14.75 7.98122 13.5188 6.75 12 6.75Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconQuestionFilled, IconQuestionFilled as default };
|
|
3
|
+
export const IconQuestionFilled = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
|
|
4
|
+
[`svg-icon__size-${size}`]: size,
|
|
5
|
+
[`svg-icon__type-${type}`]: type,
|
|
6
|
+
[className]: className
|
|
7
|
+
}), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("g", { id: "Size=24, Theme=Filled", children: _jsx("path", { id: "Shape", 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 15.5C11.4477 15.5 11 15.9477 11 16.5C11 17.0523 11.4477 17.5 12 17.5C12.5523 17.5 13 17.0523 13 16.5C13 15.9477 12.5523 15.5 12 15.5ZM12 6.75C10.4812 6.75 9.25 7.98122 9.25 9.5C9.25 9.91421 9.58579 10.25 10 10.25C10.3797 10.25 10.6935 9.96785 10.7432 9.60177L10.75 9.5C10.75 8.80964 11.3096 8.25 12 8.25C12.6904 8.25 13.25 8.80964 13.25 9.5C13.25 10.0388 13.115 10.3053 12.6051 10.8322L12.4697 10.9697C11.5916 11.8478 11.25 12.4171 11.25 13.5C11.25 13.9142 11.5858 14.25 12 14.25C12.4142 14.25 12.75 13.9142 12.75 13.5C12.75 12.9612 12.885 12.6947 13.3949 12.1678L13.5303 12.0303C14.4084 11.1522 14.75 10.5829 14.75 9.5C14.75 7.98122 13.5188 6.75 12 6.75Z", fill: "#222222" }) }) }));
|
|
8
|
+
export default IconQuestionFilled;
|
|
@@ -1,32 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
2
|
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
onClick = _ref.onClick,
|
|
11
|
-
refHandler = _ref.refHandler,
|
|
12
|
-
id = _ref.id,
|
|
13
|
-
dataId = _ref.dataId;
|
|
14
|
-
return /*#__PURE__*/React.createElement("svg", {
|
|
15
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
-
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
17
|
-
viewBox: "0 0 24 24",
|
|
18
|
-
fill: "none",
|
|
19
|
-
onClick: onClick,
|
|
20
|
-
ref: refHandler,
|
|
21
|
-
id: id,
|
|
22
|
-
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
23
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
24
|
-
id: "Size=24, Theme=Regular"
|
|
25
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
26
|
-
id: "Shape",
|
|
27
|
-
d: "M19.2501 2C18.8704 2 18.5566 2.28215 18.507 2.64823L18.5001 2.75V8.44L13.9258 3.88014C11.4838 1.43819 7.56165 1.37863 5.0475 3.70146L4.86162 3.88014C2.35863 6.38313 2.35863 10.4413 4.86162 12.9443L13.7068 21.7835C13.9998 22.0762 14.4745 22.0759 14.7674 21.783C15.0603 21.4901 15.06 21.0151 14.767 20.7223L5.92228 11.8836C4.00507 9.96641 4.00507 6.85801 5.92228 4.9408C7.78139 3.08169 10.7606 3.02535 12.6883 4.77248L12.8659 4.94156L17.4381 9.5L11.7501 9.50018C11.3704 9.50018 11.0566 9.78234 11.007 10.1484L11.0001 10.2502C11.0001 10.6299 11.2823 10.9437 11.6483 10.9933L11.7501 11.0002H19.2501C19.6298 11.0002 19.9436 10.718 19.9933 10.352L20.0001 10.2502V2.75C20.0001 2.33579 19.6643 2 19.2501 2Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconRedo, IconRedo as default };
|
|
3
|
+
export const IconRedo = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
|
|
4
|
+
[`svg-icon__size-${size}`]: size,
|
|
5
|
+
[`svg-icon__type-${type}`]: type,
|
|
6
|
+
[className]: className
|
|
7
|
+
}), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("g", { id: "Size=24, Theme=Regular", children: _jsx("path", { id: "Shape", d: "M19.2501 2C18.8704 2 18.5566 2.28215 18.507 2.64823L18.5001 2.75V8.44L13.9258 3.88014C11.4838 1.43819 7.56165 1.37863 5.0475 3.70146L4.86162 3.88014C2.35863 6.38313 2.35863 10.4413 4.86162 12.9443L13.7068 21.7835C13.9998 22.0762 14.4745 22.0759 14.7674 21.783C15.0603 21.4901 15.06 21.0151 14.767 20.7223L5.92228 11.8836C4.00507 9.96641 4.00507 6.85801 5.92228 4.9408C7.78139 3.08169 10.7606 3.02535 12.6883 4.77248L12.8659 4.94156L17.4381 9.5L11.7501 9.50018C11.3704 9.50018 11.0566 9.78234 11.007 10.1484L11.0001 10.2502C11.0001 10.6299 11.2823 10.9437 11.6483 10.9933L11.7501 11.0002H19.2501C19.6298 11.0002 19.9436 10.718 19.9933 10.352L20.0001 10.2502V2.75C20.0001 2.33579 19.6643 2 19.2501 2Z", fill: "#222222" }) }) }));
|
|
8
|
+
export default IconRedo;
|
|
@@ -1,32 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
2
|
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
onClick = _ref.onClick,
|
|
11
|
-
refHandler = _ref.refHandler,
|
|
12
|
-
id = _ref.id,
|
|
13
|
-
dataId = _ref.dataId;
|
|
14
|
-
return /*#__PURE__*/React.createElement("svg", {
|
|
15
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
-
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
17
|
-
viewBox: "0 0 24 24",
|
|
18
|
-
fill: "none",
|
|
19
|
-
onClick: onClick,
|
|
20
|
-
ref: refHandler,
|
|
21
|
-
id: id,
|
|
22
|
-
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
23
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
24
|
-
id: "Size=24, Theme=Filled"
|
|
25
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
26
|
-
id: "Shape",
|
|
27
|
-
d: "M18.0001 7.58649L14.359 3.9514C11.7578 1.35018 7.54042 1.35018 4.9392 3.9514C2.33798 6.55262 2.33798 10.77 4.9392 13.3713L13.2777 21.7082C13.6683 22.0987 14.3014 22.0985 14.6919 21.708C15.0824 21.3175 15.0822 20.6842 14.6916 20.2938L6.35341 11.957C4.53324 10.1369 4.53324 7.18579 6.35341 5.36562C8.1167 3.60233 10.9413 3.54722 12.7714 5.20074L12.9453 5.36609L16.5851 8.99949L12.0001 9.00002C11.4873 9.00002 11.0646 9.38606 11.0069 9.8834L11.0001 10C11.0001 10.5129 11.3862 10.9355 11.8835 10.9933L12.0001 11H19.0001C19.513 11 19.9356 10.614 19.9934 10.1166L20.0001 10V3.00284C20.0001 2.45055 19.5524 2.00284 19.0001 2.00284C18.4873 2.00284 18.0646 2.38888 18.0069 2.88622L18.0001 3.00284V7.58649L14.359 3.9514L18.0001 7.58649Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconRedoFilled, IconRedoFilled as default };
|
|
3
|
+
export const IconRedoFilled = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
|
|
4
|
+
[`svg-icon__size-${size}`]: size,
|
|
5
|
+
[`svg-icon__type-${type}`]: type,
|
|
6
|
+
[className]: className
|
|
7
|
+
}), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("g", { id: "Size=24, Theme=Filled", children: _jsx("path", { id: "Shape", d: "M18.0001 7.58649L14.359 3.9514C11.7578 1.35018 7.54042 1.35018 4.9392 3.9514C2.33798 6.55262 2.33798 10.77 4.9392 13.3713L13.2777 21.7082C13.6683 22.0987 14.3014 22.0985 14.6919 21.708C15.0824 21.3175 15.0822 20.6842 14.6916 20.2938L6.35341 11.957C4.53324 10.1369 4.53324 7.18579 6.35341 5.36562C8.1167 3.60233 10.9413 3.54722 12.7714 5.20074L12.9453 5.36609L16.5851 8.99949L12.0001 9.00002C11.4873 9.00002 11.0646 9.38606 11.0069 9.8834L11.0001 10C11.0001 10.5129 11.3862 10.9355 11.8835 10.9933L12.0001 11H19.0001C19.513 11 19.9356 10.614 19.9934 10.1166L20.0001 10V3.00284C20.0001 2.45055 19.5524 2.00284 19.0001 2.00284C18.4873 2.00284 18.0646 2.38888 18.0069 2.88622L18.0001 3.00284V7.58649L14.359 3.9514L18.0001 7.58649Z", fill: "#222222" }) }) }));
|
|
8
|
+
export default IconRedoFilled;
|
|
@@ -1,61 +1,7 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
2
|
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
onClick = _ref.onClick,
|
|
10
|
-
refHandler = _ref.refHandler,
|
|
11
|
-
id = _ref.id,
|
|
12
|
-
dataId = _ref.dataId;
|
|
13
|
-
return /*#__PURE__*/React.createElement("svg", {
|
|
14
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
-
className: classNames('svg-icon', _defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), className, className)),
|
|
16
|
-
viewBox: "0 0 24 24",
|
|
17
|
-
fill: "none",
|
|
18
|
-
onClick: onClick,
|
|
19
|
-
ref: refHandler,
|
|
20
|
-
id: id,
|
|
21
|
-
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
22
|
-
}, /*#__PURE__*/React.createElement("rect", {
|
|
23
|
-
x: "0.25",
|
|
24
|
-
y: "3.67999",
|
|
25
|
-
width: "23.5",
|
|
26
|
-
height: "16.6429",
|
|
27
|
-
rx: "1.75",
|
|
28
|
-
fill: "white",
|
|
29
|
-
stroke: "#F5F5F5",
|
|
30
|
-
strokeWidth: "0.5"
|
|
31
|
-
}), /*#__PURE__*/React.createElement("mask", {
|
|
32
|
-
id: "mask0_1993_2464",
|
|
33
|
-
style: {
|
|
34
|
-
maskType: 'luminance'
|
|
35
|
-
},
|
|
36
|
-
maskUnits: "userSpaceOnUse",
|
|
37
|
-
x: "0",
|
|
38
|
-
y: "3",
|
|
39
|
-
width: "24",
|
|
40
|
-
height: "18"
|
|
41
|
-
}, /*#__PURE__*/React.createElement("rect", {
|
|
42
|
-
x: "0.25",
|
|
43
|
-
y: "3.67999",
|
|
44
|
-
width: "23.5",
|
|
45
|
-
height: "16.6429",
|
|
46
|
-
rx: "1.75",
|
|
47
|
-
fill: "white",
|
|
48
|
-
stroke: "white",
|
|
49
|
-
strokeWidth: "0.5"
|
|
50
|
-
})), /*#__PURE__*/React.createElement("g", {
|
|
51
|
-
mask: "url(#mask0_1993_2464)"
|
|
52
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
53
|
-
d: "M0 14.8586H24V9.14435H0V14.8586Z",
|
|
54
|
-
fill: "#0C47B7"
|
|
55
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
56
|
-
d: "M0 20.573H24V14.8587H0V20.573Z",
|
|
57
|
-
fill: "#E53B35"
|
|
58
|
-
})));
|
|
59
|
-
};
|
|
60
|
-
|
|
61
|
-
export { IconRu, IconRu as default };
|
|
3
|
+
export const IconRu = ({ size, className = '', onClick, refHandler, id, dataId }) => (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
|
|
4
|
+
[`svg-icon__size-${size}`]: size,
|
|
5
|
+
[className]: className
|
|
6
|
+
}), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: [_jsx("rect", { x: "0.25", y: "3.67999", width: "23.5", height: "16.6429", rx: "1.75", fill: "white", stroke: "#F5F5F5", strokeWidth: "0.5" }), _jsx("mask", { id: "mask0_1993_2464", style: { maskType: 'luminance' }, maskUnits: "userSpaceOnUse", x: "0", y: "3", width: "24", height: "18", children: _jsx("rect", { x: "0.25", y: "3.67999", width: "23.5", height: "16.6429", rx: "1.75", fill: "white", stroke: "white", strokeWidth: "0.5" }) }), _jsxs("g", { mask: "url(#mask0_1993_2464)", children: [_jsx("path", { d: "M0 14.8586H24V9.14435H0V14.8586Z", fill: "#0C47B7" }), _jsx("path", { d: "M0 20.573H24V14.8587H0V20.573Z", fill: "#E53B35" })] })] }));
|
|
7
|
+
export default IconRu;
|
|
@@ -1,29 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
2
|
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
onClick = _ref.onClick,
|
|
11
|
-
refHandler = _ref.refHandler,
|
|
12
|
-
id = _ref.id,
|
|
13
|
-
dataId = _ref.dataId;
|
|
14
|
-
return /*#__PURE__*/React.createElement("svg", {
|
|
15
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
-
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
17
|
-
viewBox: "0 0 24 24",
|
|
18
|
-
fill: "none",
|
|
19
|
-
onClick: onClick,
|
|
20
|
-
ref: refHandler,
|
|
21
|
-
id: id,
|
|
22
|
-
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
23
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
24
|
-
d: "M6.55036 9.83908C6.5835 9.83908 6.61036 9.81222 6.61036 9.77908V3.68231C6.61036 3.23442 6.97344 2.87134 7.42133 2.87134H14.3891C15.5281 2.87134 16.6205 3.32383 17.426 4.12927C18.2314 4.93471 18.6839 6.02711 18.6839 7.16618C18.6839 8.30524 18.2314 9.39765 17.426 10.2031C16.6205 11.0085 15.5281 11.461 14.3891 11.461H8.2923C8.25916 11.461 8.2323 11.4879 8.2323 11.521V14.4243C8.2323 14.4575 8.25916 14.4843 8.2923 14.4843H14.3891C14.837 14.4843 15.2 14.8474 15.2 15.2953C15.2 15.7432 14.837 16.1063 14.3891 16.1063H8.2923C8.25916 16.1063 8.2323 16.1331 8.2323 16.1663V19.9404C8.2323 20.3883 7.86921 20.7513 7.42133 20.7513C6.97344 20.7513 6.61036 20.3883 6.61036 19.9404V16.1663C6.61036 16.1331 6.5835 16.1063 6.55036 16.1063H5.09875C4.65086 16.1063 4.28778 15.7432 4.28778 15.2953C4.28778 14.8474 4.65086 14.4843 5.09875 14.4843H6.55036C6.5835 14.4843 6.61036 14.4575 6.61036 14.4243V11.521C6.61036 11.4879 6.5835 11.461 6.55036 11.461H5.09875C4.65086 11.461 4.28778 11.0979 4.28778 10.65C4.28778 10.2022 4.65086 9.83908 5.09875 9.83908H6.55036ZM8.2323 9.77908C8.2323 9.81222 8.25916 9.83908 8.2923 9.83908H14.3891C15.098 9.83908 15.7778 9.55747 16.2791 9.05621C16.7804 8.55494 17.062 7.87507 17.062 7.16618C17.062 6.45728 16.7804 5.77742 16.2791 5.27615C15.7778 4.77488 15.098 4.49327 14.3891 4.49327H8.2923C8.25916 4.49327 8.2323 4.52014 8.2323 4.55327V9.77908Z",
|
|
25
|
-
fill: "#222222"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconRub, IconRub as default };
|
|
3
|
+
export const IconRub = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
|
|
4
|
+
[`svg-icon__size-${size}`]: size,
|
|
5
|
+
[`svg-icon__type-${type}`]: type,
|
|
6
|
+
[className]: className
|
|
7
|
+
}), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("path", { d: "M6.55036 9.83908C6.5835 9.83908 6.61036 9.81222 6.61036 9.77908V3.68231C6.61036 3.23442 6.97344 2.87134 7.42133 2.87134H14.3891C15.5281 2.87134 16.6205 3.32383 17.426 4.12927C18.2314 4.93471 18.6839 6.02711 18.6839 7.16618C18.6839 8.30524 18.2314 9.39765 17.426 10.2031C16.6205 11.0085 15.5281 11.461 14.3891 11.461H8.2923C8.25916 11.461 8.2323 11.4879 8.2323 11.521V14.4243C8.2323 14.4575 8.25916 14.4843 8.2923 14.4843H14.3891C14.837 14.4843 15.2 14.8474 15.2 15.2953C15.2 15.7432 14.837 16.1063 14.3891 16.1063H8.2923C8.25916 16.1063 8.2323 16.1331 8.2323 16.1663V19.9404C8.2323 20.3883 7.86921 20.7513 7.42133 20.7513C6.97344 20.7513 6.61036 20.3883 6.61036 19.9404V16.1663C6.61036 16.1331 6.5835 16.1063 6.55036 16.1063H5.09875C4.65086 16.1063 4.28778 15.7432 4.28778 15.2953C4.28778 14.8474 4.65086 14.4843 5.09875 14.4843H6.55036C6.5835 14.4843 6.61036 14.4575 6.61036 14.4243V11.521C6.61036 11.4879 6.5835 11.461 6.55036 11.461H5.09875C4.65086 11.461 4.28778 11.0979 4.28778 10.65C4.28778 10.2022 4.65086 9.83908 5.09875 9.83908H6.55036ZM8.2323 9.77908C8.2323 9.81222 8.25916 9.83908 8.2923 9.83908H14.3891C15.098 9.83908 15.7778 9.55747 16.2791 9.05621C16.7804 8.55494 17.062 7.87507 17.062 7.16618C17.062 6.45728 16.7804 5.77742 16.2791 5.27615C15.7778 4.77488 15.098 4.49327 14.3891 4.49327H8.2923C8.25916 4.49327 8.2323 4.52014 8.2323 4.55327V9.77908Z", fill: "#222222" }) }));
|
|
8
|
+
export default IconRub;
|
|
@@ -1,29 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
2
|
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
onClick = _ref.onClick,
|
|
11
|
-
refHandler = _ref.refHandler,
|
|
12
|
-
id = _ref.id,
|
|
13
|
-
dataId = _ref.dataId;
|
|
14
|
-
return /*#__PURE__*/React.createElement("svg", {
|
|
15
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
-
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
17
|
-
viewBox: "0 0 24 24",
|
|
18
|
-
fill: "none",
|
|
19
|
-
onClick: onClick,
|
|
20
|
-
ref: refHandler,
|
|
21
|
-
id: id,
|
|
22
|
-
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
23
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
24
|
-
d: "M6.55042 9.83908C6.58356 9.83908 6.61042 9.81222 6.61042 9.77908V3.68231C6.61042 3.23442 6.97351 2.87134 7.42139 2.87134H14.3891C15.5282 2.87134 16.6206 3.32383 17.426 4.12927C18.2315 4.93471 18.684 6.02711 18.684 7.16618C18.684 8.30524 18.2315 9.39765 17.426 10.2031C16.6206 11.0085 15.5282 11.461 14.3891 11.461H8.29236C8.25922 11.461 8.23236 11.4879 8.23236 11.521V14.4243C8.23236 14.4575 8.25922 14.4843 8.29236 14.4843H14.3891C14.837 14.4843 15.2001 14.8474 15.2001 15.2953C15.2001 15.7432 14.837 16.1063 14.3891 16.1063H8.29236C8.25922 16.1063 8.23236 16.1331 8.23236 16.1663V19.9404C8.23236 20.3883 7.86928 20.7513 7.42139 20.7513C6.97351 20.7513 6.61042 20.3883 6.61042 19.9404V16.1663C6.61042 16.1331 6.58356 16.1063 6.55042 16.1063H5.09881C4.65092 16.1063 4.28784 15.7432 4.28784 15.2953C4.28784 14.8474 4.65092 14.4843 5.09881 14.4843H6.55042C6.58356 14.4843 6.61042 14.4575 6.61042 14.4243V11.521C6.61042 11.4879 6.58356 11.461 6.55042 11.461H5.09881C4.65092 11.461 4.28784 11.0979 4.28784 10.65C4.28784 10.2022 4.65092 9.83908 5.09881 9.83908H6.55042ZM8.23236 9.77908C8.23236 9.81222 8.25922 9.83908 8.29236 9.83908H14.3891C15.098 9.83908 15.7779 9.55747 16.2792 9.05621C16.7804 8.55494 17.062 7.87507 17.062 7.16618C17.062 6.45728 16.7804 5.77742 16.2792 5.27615C15.7779 4.77488 15.098 4.49327 14.3891 4.49327H8.29236C8.25922 4.49327 8.23236 4.52014 8.23236 4.55327V9.77908Z",
|
|
25
|
-
fill: "#222222"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconRubFilled, IconRubFilled as default };
|
|
3
|
+
export const IconRubFilled = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
|
|
4
|
+
[`svg-icon__size-${size}`]: size,
|
|
5
|
+
[`svg-icon__type-${type}`]: type,
|
|
6
|
+
[className]: className
|
|
7
|
+
}), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("path", { d: "M6.55042 9.83908C6.58356 9.83908 6.61042 9.81222 6.61042 9.77908V3.68231C6.61042 3.23442 6.97351 2.87134 7.42139 2.87134H14.3891C15.5282 2.87134 16.6206 3.32383 17.426 4.12927C18.2315 4.93471 18.684 6.02711 18.684 7.16618C18.684 8.30524 18.2315 9.39765 17.426 10.2031C16.6206 11.0085 15.5282 11.461 14.3891 11.461H8.29236C8.25922 11.461 8.23236 11.4879 8.23236 11.521V14.4243C8.23236 14.4575 8.25922 14.4843 8.29236 14.4843H14.3891C14.837 14.4843 15.2001 14.8474 15.2001 15.2953C15.2001 15.7432 14.837 16.1063 14.3891 16.1063H8.29236C8.25922 16.1063 8.23236 16.1331 8.23236 16.1663V19.9404C8.23236 20.3883 7.86928 20.7513 7.42139 20.7513C6.97351 20.7513 6.61042 20.3883 6.61042 19.9404V16.1663C6.61042 16.1331 6.58356 16.1063 6.55042 16.1063H5.09881C4.65092 16.1063 4.28784 15.7432 4.28784 15.2953C4.28784 14.8474 4.65092 14.4843 5.09881 14.4843H6.55042C6.58356 14.4843 6.61042 14.4575 6.61042 14.4243V11.521C6.61042 11.4879 6.58356 11.461 6.55042 11.461H5.09881C4.65092 11.461 4.28784 11.0979 4.28784 10.65C4.28784 10.2022 4.65092 9.83908 5.09881 9.83908H6.55042ZM8.23236 9.77908C8.23236 9.81222 8.25922 9.83908 8.29236 9.83908H14.3891C15.098 9.83908 15.7779 9.55747 16.2792 9.05621C16.7804 8.55494 17.062 7.87507 17.062 7.16618C17.062 6.45728 16.7804 5.77742 16.2792 5.27615C15.7779 4.77488 15.098 4.49327 14.3891 4.49327H8.29236C8.25922 4.49327 8.23236 4.52014 8.23236 4.55327V9.77908Z", fill: "#222222" }) }));
|
|
8
|
+
export default IconRubFilled;
|
|
@@ -1,32 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
2
|
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
onClick = _ref.onClick,
|
|
11
|
-
refHandler = _ref.refHandler,
|
|
12
|
-
id = _ref.id,
|
|
13
|
-
dataId = _ref.dataId;
|
|
14
|
-
return /*#__PURE__*/React.createElement("svg", {
|
|
15
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
-
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
17
|
-
viewBox: "0 0 24 24",
|
|
18
|
-
fill: "none",
|
|
19
|
-
onClick: onClick,
|
|
20
|
-
ref: refHandler,
|
|
21
|
-
id: id,
|
|
22
|
-
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
23
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
24
|
-
id: "Size=24, Theme=Regular"
|
|
25
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
26
|
-
id: "Shape",
|
|
27
|
-
d: "M3 5.75C3 4.23122 4.23122 3 5.75 3H15.7145C16.5764 3 17.4031 3.34241 18.0126 3.9519L20.0481 5.98744C20.6576 6.59693 21 7.42358 21 8.28553V18.25C21 19.7688 19.7688 21 18.25 21H5.75C4.23122 21 3 19.7688 3 18.25V5.75ZM5.75 4.5C5.05964 4.5 4.5 5.05964 4.5 5.75V18.25C4.5 18.9404 5.05964 19.5 5.75 19.5H6V14.25C6 13.0074 7.00736 12 8.25 12H15.75C16.9926 12 18 13.0074 18 14.25V19.5H18.25C18.9404 19.5 19.5 18.9404 19.5 18.25V8.28553C19.5 7.8214 19.3156 7.37629 18.9874 7.0481L16.9519 5.01256C16.6918 4.75246 16.3582 4.58269 16 4.52344V7.25C16 8.49264 14.9926 9.5 13.75 9.5H9.25C8.00736 9.5 7 8.49264 7 7.25V4.5H5.75ZM16.5 19.5V14.25C16.5 13.8358 16.1642 13.5 15.75 13.5H8.25C7.83579 13.5 7.5 13.8358 7.5 14.25V19.5H16.5ZM8.5 4.5V7.25C8.5 7.66421 8.83579 8 9.25 8H13.75C14.1642 8 14.5 7.66421 14.5 7.25V4.5H8.5Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconSave, IconSave as default };
|
|
3
|
+
export const IconSave = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
|
|
4
|
+
[`svg-icon__size-${size}`]: size,
|
|
5
|
+
[`svg-icon__type-${type}`]: type,
|
|
6
|
+
[className]: className
|
|
7
|
+
}), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("g", { id: "Size=24, Theme=Regular", children: _jsx("path", { id: "Shape", d: "M3 5.75C3 4.23122 4.23122 3 5.75 3H15.7145C16.5764 3 17.4031 3.34241 18.0126 3.9519L20.0481 5.98744C20.6576 6.59693 21 7.42358 21 8.28553V18.25C21 19.7688 19.7688 21 18.25 21H5.75C4.23122 21 3 19.7688 3 18.25V5.75ZM5.75 4.5C5.05964 4.5 4.5 5.05964 4.5 5.75V18.25C4.5 18.9404 5.05964 19.5 5.75 19.5H6V14.25C6 13.0074 7.00736 12 8.25 12H15.75C16.9926 12 18 13.0074 18 14.25V19.5H18.25C18.9404 19.5 19.5 18.9404 19.5 18.25V8.28553C19.5 7.8214 19.3156 7.37629 18.9874 7.0481L16.9519 5.01256C16.6918 4.75246 16.3582 4.58269 16 4.52344V7.25C16 8.49264 14.9926 9.5 13.75 9.5H9.25C8.00736 9.5 7 8.49264 7 7.25V4.5H5.75ZM16.5 19.5V14.25C16.5 13.8358 16.1642 13.5 15.75 13.5H8.25C7.83579 13.5 7.5 13.8358 7.5 14.25V19.5H16.5ZM8.5 4.5V7.25C8.5 7.66421 8.83579 8 9.25 8H13.75C14.1642 8 14.5 7.66421 14.5 7.25V4.5H8.5Z", fill: "#222222" }) }) }));
|
|
8
|
+
export default IconSave;
|
|
@@ -1,32 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
2
|
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
onClick = _ref.onClick,
|
|
11
|
-
refHandler = _ref.refHandler,
|
|
12
|
-
id = _ref.id,
|
|
13
|
-
dataId = _ref.dataId;
|
|
14
|
-
return /*#__PURE__*/React.createElement("svg", {
|
|
15
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
-
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
17
|
-
viewBox: "0 0 24 24",
|
|
18
|
-
fill: "none",
|
|
19
|
-
onClick: onClick,
|
|
20
|
-
ref: refHandler,
|
|
21
|
-
id: id,
|
|
22
|
-
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
23
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
24
|
-
id: "Size=24, Theme=Filled"
|
|
25
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
26
|
-
id: "Shape",
|
|
27
|
-
d: "M6.75 3H5.75C4.23122 3 3 4.23122 3 5.75V18.25C3 19.7688 4.23122 21 5.75 21H6V15C6 13.7574 7.00736 12.75 8.25 12.75H15.75C16.9926 12.75 18 13.7574 18 15V21H18.25C19.7688 21 21 19.7688 21 18.25V8.28553C21 7.42358 20.6576 6.59693 20.0481 5.98744L18.0126 3.9519C17.4114 3.35079 16.5991 3.00947 15.75 3.00019V7.5C15.75 8.74264 14.7426 9.75 13.5 9.75H9C7.75736 9.75 6.75 8.74264 6.75 7.5V3ZM14.25 3V7.5C14.25 7.91421 13.9142 8.25 13.5 8.25H9C8.58579 8.25 8.25 7.91421 8.25 7.5V3H14.25ZM16.5 21V15C16.5 14.5858 16.1642 14.25 15.75 14.25H8.25C7.83579 14.25 7.5 14.5858 7.5 15V21H16.5Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconSaveFilled, IconSaveFilled as default };
|
|
3
|
+
export const IconSaveFilled = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
|
|
4
|
+
[`svg-icon__size-${size}`]: size,
|
|
5
|
+
[`svg-icon__type-${type}`]: type,
|
|
6
|
+
[className]: className
|
|
7
|
+
}), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("g", { id: "Size=24, Theme=Filled", children: _jsx("path", { id: "Shape", d: "M6.75 3H5.75C4.23122 3 3 4.23122 3 5.75V18.25C3 19.7688 4.23122 21 5.75 21H6V15C6 13.7574 7.00736 12.75 8.25 12.75H15.75C16.9926 12.75 18 13.7574 18 15V21H18.25C19.7688 21 21 19.7688 21 18.25V8.28553C21 7.42358 20.6576 6.59693 20.0481 5.98744L18.0126 3.9519C17.4114 3.35079 16.5991 3.00947 15.75 3.00019V7.5C15.75 8.74264 14.7426 9.75 13.5 9.75H9C7.75736 9.75 6.75 8.74264 6.75 7.5V3ZM14.25 3V7.5C14.25 7.91421 13.9142 8.25 13.5 8.25H9C8.58579 8.25 8.25 7.91421 8.25 7.5V3H14.25ZM16.5 21V15C16.5 14.5858 16.1642 14.25 15.75 14.25H8.25C7.83579 14.25 7.5 14.5858 7.5 15V21H16.5Z", fill: "#222222" }) }) }));
|
|
8
|
+
export default IconSaveFilled;
|