hrm_ui_lib 2.1.0 → 2.2.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/assets/styles/styles.css +61 -5
- package/assets/styles/styles.scss +1 -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/BadgeV2/BadgeV2.d.ts +3 -0
- package/components/BadgeV2/BadgeV2.js +9 -0
- package/components/BadgeV2/index.d.ts +1 -0
- package/components/BadgeV2/index.js +1 -0
- package/components/BadgeV2/types.d.ts +42 -0
- package/components/BadgeV2/types.js +31 -0
- 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.js +7 -28
- package/components/SVGIcons/IconChevronDoubleRight.js +7 -28
- 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.js +302 -305
- 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.js +61 -270
- package/components/TableV2/ColumnHeader.js +29 -61
- package/components/TableV2/ColumnSettings.js +31 -162
- package/components/TableV2/IndeterminateCheckbox.js +13 -84
- package/components/TableV2/Table.js +114 -310
- package/components/TableV2/constants/index.js +26 -22
- package/components/TableV2/hooks/useTableColumnSettings.js +16 -19
- package/components/TableV2/hooks/useTableControl.js +176 -297
- package/components/TableV2/index.js +3 -131
- package/components/TableV2/loadTableSettings.js +8 -17
- package/components/TableV2/types.js +1 -1
- 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 +47 -468
- package/package.json +1 -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-BslI0aA0.js → Alert-CNizbUJ6.js} +0 -0
|
@@ -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: "M13.1326 11.4502C12.9089 11.2265 12.5463 11.2265 12.3226 11.4502L8.9089 14.8639C8.55748 15.2153 7.98772 15.2153 7.6363 14.8639C7.28488 14.5125 7.28488 13.9427 7.6363 13.5913L12.2069 9.02069C12.4945 8.73312 12.9607 8.73312 13.2483 9.02069L17.8189 13.5913C18.1703 13.9427 18.1703 14.5125 17.8189 14.8639C17.4675 15.2153 16.8977 15.2153 16.5463 14.8639L13.1326 11.4502Z",
|
|
25
|
-
fill: "#0E121B"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconChevronUp, IconChevronUp as default };
|
|
3
|
+
export const IconChevronUp = ({ 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: "M13.1326 11.4502C12.9089 11.2265 12.5463 11.2265 12.3226 11.4502L8.9089 14.8639C8.55748 15.2153 7.98772 15.2153 7.6363 14.8639C7.28488 14.5125 7.28488 13.9427 7.6363 13.5913L12.2069 9.02069C12.4945 8.73312 12.9607 8.73312 13.2483 9.02069L17.8189 13.5913C18.1703 13.9427 18.1703 14.5125 17.8189 14.8639C17.4675 15.2153 16.8977 15.2153 16.5463 14.8639L13.1326 11.4502Z", fill: "#0E121B" }) }));
|
|
8
|
+
export default IconChevronUp;
|
|
@@ -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: "M13.0094 2.23017C12.868 2.08311 12.6728 2 12.4688 2C12.2647 2 12.0695 2.08311 11.9281 2.23017L5.67813 8.73017C5.39103 9.02875 5.40034 9.50353 5.69892 9.79062C5.9975 10.0777 6.47228 10.0684 6.75938 9.76983L12.4688 3.83208L18.1781 9.76983C18.4652 10.0684 18.94 10.0777 19.2386 9.79062C19.5372 9.50353 19.5465 9.02875 19.2594 8.73017L13.0094 2.23017ZM13.0094 21.7698C12.868 21.9169 12.6728 22 12.4688 22C12.2647 22 12.0695 21.9169 11.9281 21.7698L5.67813 15.2698C5.39103 14.9713 5.40034 14.4965 5.69892 14.2094C5.9975 13.9223 6.47228 13.9316 6.75938 14.2302L12.4688 20.1679L18.1781 14.2302C18.4652 13.9316 18.94 13.9223 19.2386 14.2094C19.5372 14.4965 19.5465 14.9713 19.2594 15.2698L13.0094 21.7698Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconChevronUpDown, IconChevronUpDown as default };
|
|
3
|
+
export const IconChevronUpDown = ({ 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: "M13.0094 2.23017C12.868 2.08311 12.6728 2 12.4688 2C12.2647 2 12.0695 2.08311 11.9281 2.23017L5.67813 8.73017C5.39103 9.02875 5.40034 9.50353 5.69892 9.79062C5.9975 10.0777 6.47228 10.0684 6.75938 9.76983L12.4688 3.83208L18.1781 9.76983C18.4652 10.0684 18.94 10.0777 19.2386 9.79062C19.5372 9.50353 19.5465 9.02875 19.2594 8.73017L13.0094 2.23017ZM13.0094 21.7698C12.868 21.9169 12.6728 22 12.4688 22C12.2647 22 12.0695 21.9169 11.9281 21.7698L5.67813 15.2698C5.39103 14.9713 5.40034 14.4965 5.69892 14.2094C5.9975 13.9223 6.47228 13.9316 6.75938 14.2302L12.4688 20.1679L18.1781 14.2302C18.4652 13.9316 18.94 13.9223 19.2386 14.2094C19.5372 14.4965 19.5465 14.9713 19.2594 15.2698L13.0094 21.7698Z", fill: "#222222" }) }) }));
|
|
8
|
+
export default IconChevronUpDown;
|
|
@@ -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: "M19.259 8.3871C19.5641 8.77939 19.5363 9.34662 19.1759 9.70711C18.7853 10.0976 18.1522 10.0976 17.7616 9.70711L12.4688 4.41421L7.17586 9.70711L7.08165 9.79029C6.68936 10.0953 6.12213 10.0676 5.76164 9.70711C5.37112 9.31658 5.37112 8.68342 5.76164 8.29289L11.7616 2.29289L11.8559 2.2097C12.2481 1.90468 12.8154 1.93241 13.1759 2.29289L19.1759 8.29289L19.259 8.3871ZM5.67846 15.6129C5.37343 15.2206 5.40116 14.6534 5.76164 14.2929C6.15217 13.9024 6.78533 13.9024 7.17586 14.2929L12.4688 19.5858L17.7616 14.2929L17.8558 14.2097C18.2481 13.9047 18.8154 13.9324 19.1759 14.2929C19.5664 14.6834 19.5664 15.3166 19.1759 15.7071L13.1759 21.7071L13.0816 21.7903C12.6894 22.0953 12.1221 22.0676 11.7616 21.7071L5.76164 15.7071L5.67846 15.6129Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconChevronUpDownFilled, IconChevronUpDownFilled as default };
|
|
3
|
+
export const IconChevronUpDownFilled = ({ 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: "M19.259 8.3871C19.5641 8.77939 19.5363 9.34662 19.1759 9.70711C18.7853 10.0976 18.1522 10.0976 17.7616 9.70711L12.4688 4.41421L7.17586 9.70711L7.08165 9.79029C6.68936 10.0953 6.12213 10.0676 5.76164 9.70711C5.37112 9.31658 5.37112 8.68342 5.76164 8.29289L11.7616 2.29289L11.8559 2.2097C12.2481 1.90468 12.8154 1.93241 13.1759 2.29289L19.1759 8.29289L19.259 8.3871ZM5.67846 15.6129C5.37343 15.2206 5.40116 14.6534 5.76164 14.2929C6.15217 13.9024 6.78533 13.9024 7.17586 14.2929L12.4688 19.5858L17.7616 14.2929L17.8558 14.2097C18.2481 13.9047 18.8154 13.9324 19.1759 14.2929C19.5664 14.6834 19.5664 15.3166 19.1759 15.7071L13.1759 21.7071L13.0816 21.7903C12.6894 22.0953 12.1221 22.0676 11.7616 21.7071L5.76164 15.7071L5.67846 15.6129Z", fill: "#222222" }) }) }));
|
|
8
|
+
export default IconChevronUpDownFilled;
|
|
@@ -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: "M4.40227 15.7071C4.79279 16.0976 5.42596 16.0976 5.81648 15.7071L12.1094 9.41421L18.4023 15.7071C18.7928 16.0976 19.426 16.0976 19.8165 15.7071C20.207 15.3166 20.207 14.6834 19.8165 14.2929L12.8165 7.29289C12.426 6.90237 11.7928 6.90237 11.4023 7.29289L4.40227 14.2929C4.01174 14.6834 4.01174 15.3166 4.40227 15.7071Z",
|
|
25
|
-
fill: "#222222"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconChevronUpFilled, IconChevronUpFilled as default };
|
|
3
|
+
export const IconChevronUpFilled = ({ 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: "M4.40227 15.7071C4.79279 16.0976 5.42596 16.0976 5.81648 15.7071L12.1094 9.41421L18.4023 15.7071C18.7928 16.0976 19.426 16.0976 19.8165 15.7071C20.207 15.3166 20.207 14.6834 19.8165 14.2929L12.8165 7.29289C12.426 6.90237 11.7928 6.90237 11.4023 7.29289L4.40227 14.2929C4.01174 14.6834 4.01174 15.3166 4.40227 15.7071Z", fill: "#222222" }) }));
|
|
8
|
+
export default IconChevronUpFilled;
|
|
@@ -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: "M8 9.75C8 9.33579 8.33579 9 8.75 9H15.25C15.6642 9 16 9.33579 16 9.75C16 10.1642 15.6642 10.5 15.25 10.5H8.75C8.33579 10.5 8 10.1642 8 9.75ZM9.75 12C8.7835 12 8 12.7835 8 13.75V16.25C8 17.2165 8.7835 18 9.75 18H14.25C15.2165 18 16 17.2165 16 16.25V13.75C16 12.7835 15.2165 12 14.25 12H9.75ZM9.5 13.75C9.5 13.6119 9.61193 13.5 9.75 13.5H14.25C14.3881 13.5 14.5 13.6119 14.5 13.75V16.25C14.5 16.3881 14.3881 16.5 14.25 16.5H9.75C9.61193 16.5 9.5 16.3881 9.5 16.25V13.75ZM13.75 2C14.9089 2 15.8631 2.8761 15.9865 4.00209C15.9864 4.0012 15.9863 4.00032 15.9862 3.99944L17.75 4C18.9926 4 20 5.00736 20 6.25V19.75C20 20.9926 18.9926 22 17.75 22H6.25C5.00736 22 4 20.9926 4 19.75V6.25C4 5.00736 5.00736 4 6.25 4L8.01379 3.99944C8.13841 2.87472 9.09205 2 10.25 2H13.75ZM15.9948 4.09595L16 4.25C16 4.19822 15.9983 4.14685 15.9948 4.09595ZM13.75 6.5H10.25C9.46997 6.5 8.78264 6.10307 8.379 5.50016L6.25 5.5C5.83579 5.5 5.5 5.83579 5.5 6.25V19.75C5.5 20.1642 5.83579 20.5 6.25 20.5H17.75C18.1642 20.5 18.5 20.1642 18.5 19.75V6.25C18.5 5.83579 18.1642 5.5 17.75 5.5L15.621 5.5002C15.2173 6.1031 14.53 6.5 13.75 6.5ZM13.75 3.5H10.25C9.83579 3.5 9.5 3.83579 9.5 4.25C9.5 4.66421 9.83579 5 10.25 5H13.75C14.1642 5 14.5 4.66421 14.5 4.25C14.5 3.83579 14.1642 3.5 13.75 3.5Z",
|
|
25
|
-
fill: "#222222"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconClipboardDay, IconClipboardDay as default };
|
|
3
|
+
export const IconClipboardDay = ({ 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: "M8 9.75C8 9.33579 8.33579 9 8.75 9H15.25C15.6642 9 16 9.33579 16 9.75C16 10.1642 15.6642 10.5 15.25 10.5H8.75C8.33579 10.5 8 10.1642 8 9.75ZM9.75 12C8.7835 12 8 12.7835 8 13.75V16.25C8 17.2165 8.7835 18 9.75 18H14.25C15.2165 18 16 17.2165 16 16.25V13.75C16 12.7835 15.2165 12 14.25 12H9.75ZM9.5 13.75C9.5 13.6119 9.61193 13.5 9.75 13.5H14.25C14.3881 13.5 14.5 13.6119 14.5 13.75V16.25C14.5 16.3881 14.3881 16.5 14.25 16.5H9.75C9.61193 16.5 9.5 16.3881 9.5 16.25V13.75ZM13.75 2C14.9089 2 15.8631 2.8761 15.9865 4.00209C15.9864 4.0012 15.9863 4.00032 15.9862 3.99944L17.75 4C18.9926 4 20 5.00736 20 6.25V19.75C20 20.9926 18.9926 22 17.75 22H6.25C5.00736 22 4 20.9926 4 19.75V6.25C4 5.00736 5.00736 4 6.25 4L8.01379 3.99944C8.13841 2.87472 9.09205 2 10.25 2H13.75ZM15.9948 4.09595L16 4.25C16 4.19822 15.9983 4.14685 15.9948 4.09595ZM13.75 6.5H10.25C9.46997 6.5 8.78264 6.10307 8.379 5.50016L6.25 5.5C5.83579 5.5 5.5 5.83579 5.5 6.25V19.75C5.5 20.1642 5.83579 20.5 6.25 20.5H17.75C18.1642 20.5 18.5 20.1642 18.5 19.75V6.25C18.5 5.83579 18.1642 5.5 17.75 5.5L15.621 5.5002C15.2173 6.1031 14.53 6.5 13.75 6.5ZM13.75 3.5H10.25C9.83579 3.5 9.5 3.83579 9.5 4.25C9.5 4.66421 9.83579 5 10.25 5H13.75C14.1642 5 14.5 4.66421 14.5 4.25C14.5 3.83579 14.1642 3.5 13.75 3.5Z", fill: "#222222" }) }));
|
|
8
|
+
export default IconClipboardDay;
|
|
@@ -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.0469 2C17.5699 2 22.0469 6.478 22.0469 12C22.0469 17.522 17.5699 22 12.0469 22C6.52388 22 2.04688 17.522 2.04688 12C2.04688 6.478 6.52388 2 12.0469 2ZM12.0469 3.667C7.45188 3.667 3.71388 7.405 3.71388 12C3.71388 16.595 7.45188 20.333 12.0469 20.333C16.6419 20.333 20.3799 16.595 20.3799 12C20.3799 7.405 16.6419 3.667 12.0469 3.667ZM11.2969 6C11.6764 6 11.9903 6.28233 12.04 6.64827L12.0469 6.75V12H15.2969C15.7109 12 16.0469 12.336 16.0469 12.75C16.0469 13.1295 15.7645 13.4435 15.3986 13.4931L15.2969 13.5H11.2969C10.9174 13.5 10.6034 13.2177 10.5537 12.8517L10.5469 12.75V6.75C10.5469 6.336 10.8829 6 11.2969 6Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconClock, IconClock as default };
|
|
3
|
+
export const IconClock = ({ 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.0469 2C17.5699 2 22.0469 6.478 22.0469 12C22.0469 17.522 17.5699 22 12.0469 22C6.52388 22 2.04688 17.522 2.04688 12C2.04688 6.478 6.52388 2 12.0469 2ZM12.0469 3.667C7.45188 3.667 3.71388 7.405 3.71388 12C3.71388 16.595 7.45188 20.333 12.0469 20.333C16.6419 20.333 20.3799 16.595 20.3799 12C20.3799 7.405 16.6419 3.667 12.0469 3.667ZM11.2969 6C11.6764 6 11.9903 6.28233 12.04 6.64827L12.0469 6.75V12H15.2969C15.7109 12 16.0469 12.336 16.0469 12.75C16.0469 13.1295 15.7645 13.4435 15.3986 13.4931L15.2969 13.5H11.2969C10.9174 13.5 10.6034 13.2177 10.5537 12.8517L10.5469 12.75V6.75C10.5469 6.336 10.8829 6 11.2969 6Z", fill: "#222222" }) }) }));
|
|
8
|
+
export default IconClock;
|
|
@@ -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.90625 12C9.94382 12 12.4062 14.4624 12.4062 17.5C12.4062 20.5376 9.94382 23 6.90625 23C3.86868 23 1.40625 20.5376 1.40625 17.5C1.40625 14.4624 3.86868 12 6.90625 12ZM13.4062 1C18.9292 1 23.4062 5.478 23.4062 11C23.4062 16.522 18.9292 21 13.4062 21C13.0714 21 12.7405 20.9835 12.4141 20.9514C12.7287 20.452 12.976 19.9075 13.1452 19.3297L13.4062 19.333C18.0012 19.333 21.7393 15.595 21.7393 11C21.7393 6.405 18.0012 2.667 13.4062 2.667C8.81125 2.667 5.07325 6.405 5.07325 11L5.07729 11.2614C4.49862 11.4303 3.95407 11.6776 3.45509 11.9909C3.4227 11.6657 3.40625 11.3347 3.40625 11C3.40625 5.478 7.88325 1 13.4062 1ZM4.12194 14.5886L4.0527 14.6464L3.99484 14.7157C3.87672 14.8862 3.87672 15.1138 3.99484 15.2843L4.0527 15.3536L6.19925 17.5L4.0527 19.6464L3.99484 19.7157C3.87672 19.8862 3.87672 20.1138 3.99484 20.2843L4.0527 20.3536L4.12194 20.4114C4.29245 20.5295 4.52005 20.5295 4.69056 20.4114L4.7598 20.3536L6.90625 18.207L9.0527 20.3536L9.12194 20.4114C9.29245 20.5295 9.52005 20.5295 9.69056 20.4114L9.7598 20.3536L9.81766 20.2843C9.93578 20.1138 9.93578 19.8862 9.81766 19.7157L9.7598 19.6464L7.61325 17.5L9.7598 15.3536L9.81766 15.2843C9.93578 15.1138 9.93578 14.8862 9.81766 14.7157L9.7598 14.6464L9.69056 14.5886C9.52005 14.4705 9.29245 14.4705 9.12194 14.5886L9.0527 14.6464L6.90625 16.793L4.7598 14.6464L4.69056 14.5886C4.5444 14.4873 4.35632 14.4729 4.19818 14.5452L4.12194 14.5886ZM12.6562 5C13.0358 5 13.3497 5.28233 13.3994 5.64827L13.4062 5.75V11H16.6562C17.0702 11 17.4062 11.336 17.4062 11.75C17.4062 12.1295 17.1239 12.4435 16.758 12.4931L16.6562 12.5H12.6562C12.2767 12.5 11.9628 12.2177 11.9131 11.8517L11.9062 11.75V5.75C11.9062 5.336 12.2423 5 12.6562 5Z",
|
|
25
|
-
fill: "#222222"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconClockDismiss, IconClockDismiss as default };
|
|
3
|
+
export const IconClockDismiss = ({ 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.90625 12C9.94382 12 12.4062 14.4624 12.4062 17.5C12.4062 20.5376 9.94382 23 6.90625 23C3.86868 23 1.40625 20.5376 1.40625 17.5C1.40625 14.4624 3.86868 12 6.90625 12ZM13.4062 1C18.9292 1 23.4062 5.478 23.4062 11C23.4062 16.522 18.9292 21 13.4062 21C13.0714 21 12.7405 20.9835 12.4141 20.9514C12.7287 20.452 12.976 19.9075 13.1452 19.3297L13.4062 19.333C18.0012 19.333 21.7393 15.595 21.7393 11C21.7393 6.405 18.0012 2.667 13.4062 2.667C8.81125 2.667 5.07325 6.405 5.07325 11L5.07729 11.2614C4.49862 11.4303 3.95407 11.6776 3.45509 11.9909C3.4227 11.6657 3.40625 11.3347 3.40625 11C3.40625 5.478 7.88325 1 13.4062 1ZM4.12194 14.5886L4.0527 14.6464L3.99484 14.7157C3.87672 14.8862 3.87672 15.1138 3.99484 15.2843L4.0527 15.3536L6.19925 17.5L4.0527 19.6464L3.99484 19.7157C3.87672 19.8862 3.87672 20.1138 3.99484 20.2843L4.0527 20.3536L4.12194 20.4114C4.29245 20.5295 4.52005 20.5295 4.69056 20.4114L4.7598 20.3536L6.90625 18.207L9.0527 20.3536L9.12194 20.4114C9.29245 20.5295 9.52005 20.5295 9.69056 20.4114L9.7598 20.3536L9.81766 20.2843C9.93578 20.1138 9.93578 19.8862 9.81766 19.7157L9.7598 19.6464L7.61325 17.5L9.7598 15.3536L9.81766 15.2843C9.93578 15.1138 9.93578 14.8862 9.81766 14.7157L9.7598 14.6464L9.69056 14.5886C9.52005 14.4705 9.29245 14.4705 9.12194 14.5886L9.0527 14.6464L6.90625 16.793L4.7598 14.6464L4.69056 14.5886C4.5444 14.4873 4.35632 14.4729 4.19818 14.5452L4.12194 14.5886ZM12.6562 5C13.0358 5 13.3497 5.28233 13.3994 5.64827L13.4062 5.75V11H16.6562C17.0702 11 17.4062 11.336 17.4062 11.75C17.4062 12.1295 17.1239 12.4435 16.758 12.4931L16.6562 12.5H12.6562C12.2767 12.5 11.9628 12.2177 11.9131 11.8517L11.9062 11.75V5.75C11.9062 5.336 12.2423 5 12.6562 5Z", fill: "#222222" }) }));
|
|
8
|
+
export default IconClockDismiss;
|
|
@@ -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.90625 12C9.94382 12 12.4062 14.4624 12.4062 17.5C12.4062 20.5376 9.94382 23 6.90625 23C3.86868 23 1.40625 20.5376 1.40625 17.5C1.40625 14.4624 3.86868 12 6.90625 12ZM13.4062 1C18.9292 1 23.4062 5.478 23.4062 11C23.4062 16.522 18.9292 21 13.4062 21C13.0714 21 12.7405 20.9835 12.4141 20.9514C13.0433 19.9509 13.4062 18.7678 13.4062 17.5C13.4062 13.9101 10.4961 11 6.90625 11C5.63831 11 4.45516 11.363 3.45509 11.9909C3.4227 11.6657 3.40625 11.3347 3.40625 11C3.40625 5.478 7.88325 1 13.4062 1ZM4.12194 14.5886L4.0527 14.6464L3.99484 14.7157C3.87672 14.8862 3.87672 15.1138 3.99484 15.2843L4.0527 15.3536L6.19925 17.5L4.0527 19.6464L3.99484 19.7157C3.87672 19.8862 3.87672 20.1138 3.99484 20.2843L4.0527 20.3536L4.12194 20.4114C4.29245 20.5295 4.52005 20.5295 4.69056 20.4114L4.7598 20.3536L6.90625 18.207L9.0527 20.3536L9.12194 20.4114C9.29245 20.5295 9.52005 20.5295 9.69056 20.4114L9.7598 20.3536L9.81766 20.2843C9.93578 20.1138 9.93578 19.8862 9.81766 19.7157L9.7598 19.6464L7.61325 17.5L9.7598 15.3536L9.81766 15.2843C9.93578 15.1138 9.93578 14.8862 9.81766 14.7157L9.7598 14.6464L9.69056 14.5886C9.52005 14.4705 9.29245 14.4705 9.12194 14.5886L9.0527 14.6464L6.90625 16.793L4.7598 14.6464L4.69056 14.5886C4.5444 14.4873 4.35632 14.4729 4.19818 14.5452L4.12194 14.5886ZM12.6562 5C12.2423 5 11.9062 5.336 11.9062 5.75L11.9018 11.2531C11.9018 11.6671 12.2378 12.0031 12.6518 12.0031H16.6518C17.0658 12.0031 17.4018 11.6671 17.4018 11.2531C17.4018 10.8391 17.0658 10.5031 16.6518 10.5031H13.4018L13.4062 5.75C13.4062 5.336 13.0702 5 12.6562 5Z",
|
|
25
|
-
fill: "#222222"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconClockDismissFilled, IconClockDismissFilled as default };
|
|
3
|
+
export const IconClockDismissFilled = ({ 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.90625 12C9.94382 12 12.4062 14.4624 12.4062 17.5C12.4062 20.5376 9.94382 23 6.90625 23C3.86868 23 1.40625 20.5376 1.40625 17.5C1.40625 14.4624 3.86868 12 6.90625 12ZM13.4062 1C18.9292 1 23.4062 5.478 23.4062 11C23.4062 16.522 18.9292 21 13.4062 21C13.0714 21 12.7405 20.9835 12.4141 20.9514C13.0433 19.9509 13.4062 18.7678 13.4062 17.5C13.4062 13.9101 10.4961 11 6.90625 11C5.63831 11 4.45516 11.363 3.45509 11.9909C3.4227 11.6657 3.40625 11.3347 3.40625 11C3.40625 5.478 7.88325 1 13.4062 1ZM4.12194 14.5886L4.0527 14.6464L3.99484 14.7157C3.87672 14.8862 3.87672 15.1138 3.99484 15.2843L4.0527 15.3536L6.19925 17.5L4.0527 19.6464L3.99484 19.7157C3.87672 19.8862 3.87672 20.1138 3.99484 20.2843L4.0527 20.3536L4.12194 20.4114C4.29245 20.5295 4.52005 20.5295 4.69056 20.4114L4.7598 20.3536L6.90625 18.207L9.0527 20.3536L9.12194 20.4114C9.29245 20.5295 9.52005 20.5295 9.69056 20.4114L9.7598 20.3536L9.81766 20.2843C9.93578 20.1138 9.93578 19.8862 9.81766 19.7157L9.7598 19.6464L7.61325 17.5L9.7598 15.3536L9.81766 15.2843C9.93578 15.1138 9.93578 14.8862 9.81766 14.7157L9.7598 14.6464L9.69056 14.5886C9.52005 14.4705 9.29245 14.4705 9.12194 14.5886L9.0527 14.6464L6.90625 16.793L4.7598 14.6464L4.69056 14.5886C4.5444 14.4873 4.35632 14.4729 4.19818 14.5452L4.12194 14.5886ZM12.6562 5C12.2423 5 11.9062 5.336 11.9062 5.75L11.9018 11.2531C11.9018 11.6671 12.2378 12.0031 12.6518 12.0031H16.6518C17.0658 12.0031 17.4018 11.6671 17.4018 11.2531C17.4018 10.8391 17.0658 10.5031 16.6518 10.5031H13.4018L13.4062 5.75C13.4062 5.336 13.0702 5 12.6562 5Z", fill: "#222222" }) }));
|
|
8
|
+
export default IconClockDismissFilled;
|
|
@@ -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: "M15.2969 13.5H11.2969C10.8829 13.5 10.5469 13.164 10.5469 12.75V6.75C10.5469 6.336 10.8829 6 11.2969 6C11.7109 6 12.0469 6.336 12.0469 6.75V12H15.2969C15.7109 12 16.0469 12.336 16.0469 12.75C16.0469 13.164 15.7109 13.5 15.2969 13.5ZM12.0469 2C6.52488 2 2.04688 6.478 2.04688 12C2.04688 17.522 6.52488 22 12.0469 22C17.5689 22 22.0469 17.522 22.0469 12C22.0469 6.478 17.5689 2 12.0469 2Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconClockFilled, IconClockFilled as default };
|
|
3
|
+
export const IconClockFilled = ({ 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: "M15.2969 13.5H11.2969C10.8829 13.5 10.5469 13.164 10.5469 12.75V6.75C10.5469 6.336 10.8829 6 11.2969 6C11.7109 6 12.0469 6.336 12.0469 6.75V12H15.2969C15.7109 12 16.0469 12.336 16.0469 12.75C16.0469 13.164 15.7109 13.5 15.2969 13.5ZM12.0469 2C6.52488 2 2.04688 6.478 2.04688 12C2.04688 17.522 6.52488 22 12.0469 22C17.5689 22 22.0469 17.522 22.0469 12C22.0469 6.478 17.5689 2 12.0469 2Z", fill: "#222222" }) }) }));
|
|
8
|
+
export default IconClockFilled;
|
|
@@ -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: "M5.96875 18C4.17382 18 2.71875 16.5449 2.71875 14.75V6.25C2.71875 4.45507 4.17382 3 5.96875 3H19.4688C21.2637 3 22.7188 4.45507 22.7188 6.25V14.75C22.7188 16.5449 21.2637 18 19.4688 18H13.7312L8.71743 21.7507C8.1646 22.1642 7.38125 22.0512 6.96776 21.4984C6.80611 21.2822 6.71875 21.0196 6.71875 20.7499L6.71796 18H5.96875ZM13.2323 16.5H19.4688C20.4352 16.5 21.2188 15.7165 21.2188 14.75V6.25C21.2188 5.2835 20.4352 4.5 19.4688 4.5H5.96875C5.00225 4.5 4.21875 5.2835 4.21875 6.25V14.75C4.21875 15.7165 5.00225 16.5 5.96875 16.5H8.21754L8.21775 17.2498L8.21861 20.2506L13.2323 16.5Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconComment, IconComment as default };
|
|
3
|
+
export const IconComment = ({ 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: "M5.96875 18C4.17382 18 2.71875 16.5449 2.71875 14.75V6.25C2.71875 4.45507 4.17382 3 5.96875 3H19.4688C21.2637 3 22.7188 4.45507 22.7188 6.25V14.75C22.7188 16.5449 21.2637 18 19.4688 18H13.7312L8.71743 21.7507C8.1646 22.1642 7.38125 22.0512 6.96776 21.4984C6.80611 21.2822 6.71875 21.0196 6.71875 20.7499L6.71796 18H5.96875ZM13.2323 16.5H19.4688C20.4352 16.5 21.2188 15.7165 21.2188 14.75V6.25C21.2188 5.2835 20.4352 4.5 19.4688 4.5H5.96875C5.00225 4.5 4.21875 5.2835 4.21875 6.25V14.75C4.21875 15.7165 5.00225 16.5 5.96875 16.5H8.21754L8.21775 17.2498L8.21861 20.2506L13.2323 16.5Z", fill: "#222222" }) }) }));
|
|
8
|
+
export default IconComment;
|
|
@@ -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: "M5.96875 3C4.17382 3 2.71875 4.45507 2.71875 6.25V14.75C2.71875 16.5449 4.17383 18 5.96875 18H6.71875V20.75C6.71875 21.7801 7.8947 22.368 8.71875 21.75L13.7188 18H19.4688C21.2637 18 22.7188 16.5449 22.7188 14.75V6.25C22.7188 4.45507 21.2637 3 19.4688 3H5.96875Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconCommentFilled, IconCommentFilled as default };
|
|
3
|
+
export const IconCommentFilled = ({ 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: "M5.96875 3C4.17382 3 2.71875 4.45507 2.71875 6.25V14.75C2.71875 16.5449 4.17383 18 5.96875 18H6.71875V20.75C6.71875 21.7801 7.8947 22.368 8.71875 21.75L13.7188 18H19.4688C21.2637 18 22.7188 16.5449 22.7188 14.75V6.25C22.7188 4.45507 21.2637 3 19.4688 3H5.96875Z", fill: "#222222" }) }) }));
|
|
8
|
+
export default IconCommentFilled;
|
|
@@ -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: "M20.0078 4C21.2505 4 22.2578 5.00736 22.2578 6.25V17.7546C22.2578 18.9972 21.2505 20.0046 20.0078 20.0046H4.50781C3.26517 20.0046 2.25781 18.9972 2.25781 17.7546V6.25C2.25781 5.00736 3.26517 4 4.50781 4H20.0078ZM20.0078 5.5H4.50781C4.0936 5.5 3.75781 5.83579 3.75781 6.25V17.7546C3.75781 18.1688 4.0936 18.5046 4.50781 18.5046H20.0078C20.422 18.5046 20.7578 18.1688 20.7578 17.7546V6.25C20.7578 5.83579 20.422 5.5 20.0078 5.5ZM10.0078 12.5C10.422 12.5 10.7578 12.8358 10.7578 13.25V13.7427L10.7499 13.8513C10.5871 14.9642 9.65549 15.5009 8.25776 15.5009C6.85995 15.5009 5.92829 14.9637 5.76568 13.8501L5.75781 13.7418V13.25C5.75781 12.8358 6.0936 12.5 6.50781 12.5H10.0078ZM13.5101 12.9961H18.0078C18.422 12.9961 18.7578 13.3319 18.7578 13.7461C18.7578 14.1258 18.4757 14.4396 18.1096 14.4893L18.0078 14.4961H13.5101C13.0959 14.4961 12.7601 14.1604 12.7601 13.7461C12.7601 13.3664 13.0423 13.0526 13.4083 13.003L13.5101 12.9961H18.0078H13.5101ZM8.25781 8.50218C9.08623 8.50218 9.75779 9.17374 9.75779 10.0022C9.75779 10.8306 9.08623 11.5021 8.25781 11.5021C7.4294 11.5021 6.75784 10.8306 6.75784 10.0022C6.75784 9.17374 7.4294 8.50218 8.25781 8.50218ZM13.5101 9.5H18.0078C18.422 9.5 18.7578 9.83579 18.7578 10.25C18.7578 10.6297 18.4757 10.9435 18.1096 10.9932L18.0078 11H13.5101C13.0959 11 12.7601 10.6642 12.7601 10.25C12.7601 9.8703 13.0423 9.55651 13.4083 9.50685L13.5101 9.5H18.0078H13.5101Z",
|
|
25
|
-
fill: "#222222"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconContractCard, IconContractCard as default };
|
|
3
|
+
export const IconContractCard = ({ 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: "M20.0078 4C21.2505 4 22.2578 5.00736 22.2578 6.25V17.7546C22.2578 18.9972 21.2505 20.0046 20.0078 20.0046H4.50781C3.26517 20.0046 2.25781 18.9972 2.25781 17.7546V6.25C2.25781 5.00736 3.26517 4 4.50781 4H20.0078ZM20.0078 5.5H4.50781C4.0936 5.5 3.75781 5.83579 3.75781 6.25V17.7546C3.75781 18.1688 4.0936 18.5046 4.50781 18.5046H20.0078C20.422 18.5046 20.7578 18.1688 20.7578 17.7546V6.25C20.7578 5.83579 20.422 5.5 20.0078 5.5ZM10.0078 12.5C10.422 12.5 10.7578 12.8358 10.7578 13.25V13.7427L10.7499 13.8513C10.5871 14.9642 9.65549 15.5009 8.25776 15.5009C6.85995 15.5009 5.92829 14.9637 5.76568 13.8501L5.75781 13.7418V13.25C5.75781 12.8358 6.0936 12.5 6.50781 12.5H10.0078ZM13.5101 12.9961H18.0078C18.422 12.9961 18.7578 13.3319 18.7578 13.7461C18.7578 14.1258 18.4757 14.4396 18.1096 14.4893L18.0078 14.4961H13.5101C13.0959 14.4961 12.7601 14.1604 12.7601 13.7461C12.7601 13.3664 13.0423 13.0526 13.4083 13.003L13.5101 12.9961H18.0078H13.5101ZM8.25781 8.50218C9.08623 8.50218 9.75779 9.17374 9.75779 10.0022C9.75779 10.8306 9.08623 11.5021 8.25781 11.5021C7.4294 11.5021 6.75784 10.8306 6.75784 10.0022C6.75784 9.17374 7.4294 8.50218 8.25781 8.50218ZM13.5101 9.5H18.0078C18.422 9.5 18.7578 9.83579 18.7578 10.25C18.7578 10.6297 18.4757 10.9435 18.1096 10.9932L18.0078 11H13.5101C13.0959 11 12.7601 10.6642 12.7601 10.25C12.7601 9.8703 13.0423 9.55651 13.4083 9.50685L13.5101 9.5H18.0078H13.5101Z", fill: "#222222" }) }));
|
|
8
|
+
export default IconContractCard;
|
|
@@ -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: "M20.0078 4C21.2505 4 22.2578 5.00736 22.2578 6.25V17.7546C22.2578 18.9972 21.2505 20.0046 20.0078 20.0046H4.50781C3.26517 20.0046 2.25781 18.9972 2.25781 17.7546V6.25C2.25781 5.00736 3.26517 4 4.50781 4H20.0078ZM10.0078 12.5H6.50781C6.12812 12.5 5.81432 12.7822 5.76466 13.1482L5.75781 13.25V13.7418L5.76568 13.8501C5.92829 14.9637 6.85995 15.5009 8.25776 15.5009C9.58893 15.5009 10.4973 15.0141 10.7215 14.0064L10.7499 13.8513L10.7578 13.7427V13.25C10.7578 12.8703 10.4757 12.5565 10.1096 12.5068L10.0078 12.5ZM18.0078 12.9961H13.5101L13.4083 13.003C13.0423 13.0526 12.7601 13.3664 12.7601 13.7461C12.7601 14.1258 13.0423 14.4396 13.4083 14.4893L13.5101 14.4961H18.0078L18.1096 14.4893C18.4757 14.4396 18.7578 14.1258 18.7578 13.7461C18.7578 13.3664 18.4757 13.0526 18.1096 13.003L18.0078 12.9961ZM8.25781 8.50218C7.4294 8.50218 6.75784 9.17374 6.75784 10.0022C6.75784 10.8306 7.4294 11.5021 8.25781 11.5021C9.08623 11.5021 9.75779 10.8306 9.75779 10.0022C9.75779 9.17374 9.08623 8.50218 8.25781 8.50218ZM18.0078 9.5H13.5101L13.4083 9.50685C13.0423 9.55651 12.7601 9.8703 12.7601 10.25C12.7601 10.6297 13.0423 10.9435 13.4083 10.9932L13.5101 11H18.0078L18.1096 10.9932C18.4757 10.9435 18.7578 10.6297 18.7578 10.25C18.7578 9.8703 18.4757 9.55651 18.1096 9.50685L18.0078 9.5Z",
|
|
25
|
-
fill: "#222222"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconContractCardFilled, IconContractCardFilled as default };
|
|
3
|
+
export const IconContractCardFilled = ({ 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: "M20.0078 4C21.2505 4 22.2578 5.00736 22.2578 6.25V17.7546C22.2578 18.9972 21.2505 20.0046 20.0078 20.0046H4.50781C3.26517 20.0046 2.25781 18.9972 2.25781 17.7546V6.25C2.25781 5.00736 3.26517 4 4.50781 4H20.0078ZM10.0078 12.5H6.50781C6.12812 12.5 5.81432 12.7822 5.76466 13.1482L5.75781 13.25V13.7418L5.76568 13.8501C5.92829 14.9637 6.85995 15.5009 8.25776 15.5009C9.58893 15.5009 10.4973 15.0141 10.7215 14.0064L10.7499 13.8513L10.7578 13.7427V13.25C10.7578 12.8703 10.4757 12.5565 10.1096 12.5068L10.0078 12.5ZM18.0078 12.9961H13.5101L13.4083 13.003C13.0423 13.0526 12.7601 13.3664 12.7601 13.7461C12.7601 14.1258 13.0423 14.4396 13.4083 14.4893L13.5101 14.4961H18.0078L18.1096 14.4893C18.4757 14.4396 18.7578 14.1258 18.7578 13.7461C18.7578 13.3664 18.4757 13.0526 18.1096 13.003L18.0078 12.9961ZM8.25781 8.50218C7.4294 8.50218 6.75784 9.17374 6.75784 10.0022C6.75784 10.8306 7.4294 11.5021 8.25781 11.5021C9.08623 11.5021 9.75779 10.8306 9.75779 10.0022C9.75779 9.17374 9.08623 8.50218 8.25781 8.50218ZM18.0078 9.5H13.5101L13.4083 9.50685C13.0423 9.55651 12.7601 9.8703 12.7601 10.25C12.7601 10.6297 13.0423 10.9435 13.4083 10.9932L13.5101 11H18.0078L18.1096 10.9932C18.4757 10.9435 18.7578 10.6297 18.7578 10.25C18.7578 9.8703 18.4757 9.55651 18.1096 9.50685L18.0078 9.5Z", fill: "#222222" }) }));
|
|
8
|
+
export default IconContractCardFilled;
|
|
@@ -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.17468 4.62704L6.17188 6.75V17.2542C6.17188 19.0491 7.62695 20.5042 9.42188 20.5042L18.0382 20.5045C17.7292 21.3782 16.8959 22.0042 15.9163 22.0042H9.42188C6.79852 22.0042 4.67188 19.8776 4.67188 17.2542V6.75C4.67188 5.76929 5.29932 4.93512 6.17468 4.62704ZM18.4219 2C19.6645 2 20.6719 3.00736 20.6719 4.25V17.25C20.6719 18.4926 19.6645 19.5 18.4219 19.5H9.42188C8.17923 19.5 7.17188 18.4926 7.17188 17.25V4.25C7.17188 3.00736 8.17923 2 9.42188 2H18.4219ZM18.4219 3.5H9.42188C9.00766 3.5 8.67188 3.83579 8.67188 4.25V17.25C8.67188 17.6642 9.00766 18 9.42188 18H18.4219C18.8361 18 19.1719 17.6642 19.1719 17.25V4.25C19.1719 3.83579 18.8361 3.5 18.4219 3.5Z",
|
|
25
|
-
fill: "#222222"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconCopy, IconCopy as default };
|
|
3
|
+
export const IconCopy = ({ 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.17468 4.62704L6.17188 6.75V17.2542C6.17188 19.0491 7.62695 20.5042 9.42188 20.5042L18.0382 20.5045C17.7292 21.3782 16.8959 22.0042 15.9163 22.0042H9.42188C6.79852 22.0042 4.67188 19.8776 4.67188 17.2542V6.75C4.67188 5.76929 5.29932 4.93512 6.17468 4.62704ZM18.4219 2C19.6645 2 20.6719 3.00736 20.6719 4.25V17.25C20.6719 18.4926 19.6645 19.5 18.4219 19.5H9.42188C8.17923 19.5 7.17188 18.4926 7.17188 17.25V4.25C7.17188 3.00736 8.17923 2 9.42188 2H18.4219ZM18.4219 3.5H9.42188C9.00766 3.5 8.67188 3.83579 8.67188 4.25V17.25C8.67188 17.6642 9.00766 18 9.42188 18H18.4219C18.8361 18 19.1719 17.6642 19.1719 17.25V4.25C19.1719 3.83579 18.8361 3.5 18.4219 3.5Z", fill: "#222222" }) }));
|
|
8
|
+
export default IconCopy;
|