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,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: "M4.99883 18C4.99883 17.1719 4.32752 16.5006 3.49942 16.5006C2.67131 16.5006 2 17.1719 2 18C2 18.8281 2.67131 19.4994 3.49942 19.4994C4.32752 19.4994 4.99883 18.8281 4.99883 18ZM12.0189 17H7.50034L7.38372 17.0067C6.88638 17.0645 6.50034 17.4872 6.50034 18C6.50034 18.5523 6.94805 19 7.50034 19H12.1739C12.0602 18.5185 12 18.0163 12 17.5C12 17.3318 12.0064 17.165 12.0189 17ZM13.8096 13H7.50034C6.94805 13 6.50034 12.5523 6.50034 12C6.50034 11.4872 6.88638 11.0645 7.38372 11.0067L7.50034 11H18.5C16.6566 11 14.9925 11.7673 13.8096 13ZM4.99883 12C4.99883 11.1719 4.32752 10.5006 3.49942 10.5006C2.67131 10.5006 2 11.1719 2 12C2 12.8281 2.67131 13.4994 3.49942 13.4994C4.32752 13.4994 4.99883 12.8281 4.99883 12ZM4.99883 6.00723C4.99883 5.17912 4.32752 4.50781 3.49942 4.50781C2.67131 4.50781 2 5.17912 2 6.00723C2 6.83533 2.67131 7.50664 3.49942 7.50664C4.32752 7.50664 4.99883 6.83533 4.99883 6.00723ZM21.0035 5.00082H7.50034L7.38372 5.00755C6.88638 5.06532 6.50034 5.48799 6.50034 6.00082C6.50034 6.55311 6.94805 7.00082 7.50034 7.00082H21.0035L21.1201 6.9941C21.6174 6.93633 22.0035 6.51366 22.0035 6.00082C22.0035 5.44854 21.5558 5.00082 21.0035 5.00082ZM24 17.5C24 14.4624 21.5376 12 18.5 12C15.4624 12 13 14.4624 13 17.5C13 20.5376 15.4624 23 18.5 23C21.5376 23 24 20.5376 24 17.5ZM19.0006 18L19.0011 20.5035C19.0011 20.7797 18.7773 21.0035 18.5011 21.0035C18.225 21.0035 18.0011 20.7797 18.0011 20.5035L18.0006 18H15.4956C15.2197 18 14.9961 17.7762 14.9961 17.5C14.9961 17.2239 15.2197 17 15.4956 17H18.0005L18 14.4993C18 14.2231 18.2239 13.9993 18.5 13.9993C18.7761 13.9993 19 14.2231 19 14.4993L19.0005 17H21.4966C21.7725 17 21.9961 17.2239 21.9961 17.5C21.9961 17.7762 21.7725 18 21.4966 18H19.0006Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconBulletListAddFilled, IconBulletListAddFilled as default };
|
|
3
|
+
export const IconBulletListAddFilled = ({ 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: "M4.99883 18C4.99883 17.1719 4.32752 16.5006 3.49942 16.5006C2.67131 16.5006 2 17.1719 2 18C2 18.8281 2.67131 19.4994 3.49942 19.4994C4.32752 19.4994 4.99883 18.8281 4.99883 18ZM12.0189 17H7.50034L7.38372 17.0067C6.88638 17.0645 6.50034 17.4872 6.50034 18C6.50034 18.5523 6.94805 19 7.50034 19H12.1739C12.0602 18.5185 12 18.0163 12 17.5C12 17.3318 12.0064 17.165 12.0189 17ZM13.8096 13H7.50034C6.94805 13 6.50034 12.5523 6.50034 12C6.50034 11.4872 6.88638 11.0645 7.38372 11.0067L7.50034 11H18.5C16.6566 11 14.9925 11.7673 13.8096 13ZM4.99883 12C4.99883 11.1719 4.32752 10.5006 3.49942 10.5006C2.67131 10.5006 2 11.1719 2 12C2 12.8281 2.67131 13.4994 3.49942 13.4994C4.32752 13.4994 4.99883 12.8281 4.99883 12ZM4.99883 6.00723C4.99883 5.17912 4.32752 4.50781 3.49942 4.50781C2.67131 4.50781 2 5.17912 2 6.00723C2 6.83533 2.67131 7.50664 3.49942 7.50664C4.32752 7.50664 4.99883 6.83533 4.99883 6.00723ZM21.0035 5.00082H7.50034L7.38372 5.00755C6.88638 5.06532 6.50034 5.48799 6.50034 6.00082C6.50034 6.55311 6.94805 7.00082 7.50034 7.00082H21.0035L21.1201 6.9941C21.6174 6.93633 22.0035 6.51366 22.0035 6.00082C22.0035 5.44854 21.5558 5.00082 21.0035 5.00082ZM24 17.5C24 14.4624 21.5376 12 18.5 12C15.4624 12 13 14.4624 13 17.5C13 20.5376 15.4624 23 18.5 23C21.5376 23 24 20.5376 24 17.5ZM19.0006 18L19.0011 20.5035C19.0011 20.7797 18.7773 21.0035 18.5011 21.0035C18.225 21.0035 18.0011 20.7797 18.0011 20.5035L18.0006 18H15.4956C15.2197 18 14.9961 17.7762 14.9961 17.5C14.9961 17.2239 15.2197 17 15.4956 17H18.0005L18 14.4993C18 14.2231 18.2239 13.9993 18.5 13.9993C18.7761 13.9993 19 14.2231 19 14.4993L19.0005 17H21.4966C21.7725 17 21.9961 17.2239 21.9961 17.5C21.9961 17.7762 21.7725 18 21.4966 18H19.0006Z", fill: "#222222" }) }) }));
|
|
8
|
+
export default IconBulletListAddFilled;
|
|
@@ -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: "M7 7C7 5.89543 7.89543 5 9 5H15C16.1046 5 17 5.89543 17 7V8C17 9.10457 16.1046 10 15 10H9C7.89543 10 7 9.10457 7 8V7ZM9 6.5C8.72386 6.5 8.5 6.72386 8.5 7V8C8.5 8.27614 8.72386 8.5 9 8.5H15C15.2761 8.5 15.5 8.27614 15.5 8V7C15.5 6.72386 15.2761 6.5 15 6.5H9ZM8.25 14.5C8.94036 14.5 9.5 13.9404 9.5 13.25C9.5 12.5596 8.94036 12 8.25 12C7.55964 12 7 12.5596 7 13.25C7 13.9404 7.55964 14.5 8.25 14.5ZM9.5 17.25C9.5 17.9404 8.94036 18.5 8.25 18.5C7.55964 18.5 7 17.9404 7 17.25C7 16.5596 7.55964 16 8.25 16C8.94036 16 9.5 16.5596 9.5 17.25ZM15.75 14.5C16.4404 14.5 17 13.9404 17 13.25C17 12.5596 16.4404 12 15.75 12C15.0596 12 14.5 12.5596 14.5 13.25C14.5 13.9404 15.0596 14.5 15.75 14.5ZM17 17.25C17 17.9404 16.4404 18.5 15.75 18.5C15.0596 18.5 14.5 17.9404 14.5 17.25C14.5 16.5596 15.0596 16 15.75 16C16.4404 16 17 16.5596 17 17.25ZM12 14.5C12.6904 14.5 13.25 13.9404 13.25 13.25C13.25 12.5596 12.6904 12 12 12C11.3096 12 10.75 12.5596 10.75 13.25C10.75 13.9404 11.3096 14.5 12 14.5ZM13.25 17.25C13.25 17.9404 12.6904 18.5 12 18.5C11.3096 18.5 10.75 17.9404 10.75 17.25C10.75 16.5596 11.3096 16 12 16C12.6904 16 13.25 16.5596 13.25 17.25ZM7.25 2C5.45507 2 4 3.45507 4 5.25V18.75C4 20.5449 5.45507 22 7.25 22H16.75C18.5449 22 20 20.5449 20 18.75V5.25C20 3.45507 18.5449 2 16.75 2H7.25ZM5.5 5.25C5.5 4.2835 6.2835 3.5 7.25 3.5H16.75C17.7165 3.5 18.5 4.2835 18.5 5.25V18.75C18.5 19.7165 17.7165 20.5 16.75 20.5H7.25C6.2835 20.5 5.5 19.7165 5.5 18.75V5.25Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconCalculator, IconCalculator as default };
|
|
3
|
+
export const IconCalculator = ({ 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: "M7 7C7 5.89543 7.89543 5 9 5H15C16.1046 5 17 5.89543 17 7V8C17 9.10457 16.1046 10 15 10H9C7.89543 10 7 9.10457 7 8V7ZM9 6.5C8.72386 6.5 8.5 6.72386 8.5 7V8C8.5 8.27614 8.72386 8.5 9 8.5H15C15.2761 8.5 15.5 8.27614 15.5 8V7C15.5 6.72386 15.2761 6.5 15 6.5H9ZM8.25 14.5C8.94036 14.5 9.5 13.9404 9.5 13.25C9.5 12.5596 8.94036 12 8.25 12C7.55964 12 7 12.5596 7 13.25C7 13.9404 7.55964 14.5 8.25 14.5ZM9.5 17.25C9.5 17.9404 8.94036 18.5 8.25 18.5C7.55964 18.5 7 17.9404 7 17.25C7 16.5596 7.55964 16 8.25 16C8.94036 16 9.5 16.5596 9.5 17.25ZM15.75 14.5C16.4404 14.5 17 13.9404 17 13.25C17 12.5596 16.4404 12 15.75 12C15.0596 12 14.5 12.5596 14.5 13.25C14.5 13.9404 15.0596 14.5 15.75 14.5ZM17 17.25C17 17.9404 16.4404 18.5 15.75 18.5C15.0596 18.5 14.5 17.9404 14.5 17.25C14.5 16.5596 15.0596 16 15.75 16C16.4404 16 17 16.5596 17 17.25ZM12 14.5C12.6904 14.5 13.25 13.9404 13.25 13.25C13.25 12.5596 12.6904 12 12 12C11.3096 12 10.75 12.5596 10.75 13.25C10.75 13.9404 11.3096 14.5 12 14.5ZM13.25 17.25C13.25 17.9404 12.6904 18.5 12 18.5C11.3096 18.5 10.75 17.9404 10.75 17.25C10.75 16.5596 11.3096 16 12 16C12.6904 16 13.25 16.5596 13.25 17.25ZM7.25 2C5.45507 2 4 3.45507 4 5.25V18.75C4 20.5449 5.45507 22 7.25 22H16.75C18.5449 22 20 20.5449 20 18.75V5.25C20 3.45507 18.5449 2 16.75 2H7.25ZM5.5 5.25C5.5 4.2835 6.2835 3.5 7.25 3.5H16.75C17.7165 3.5 18.5 4.2835 18.5 5.25V18.75C18.5 19.7165 17.7165 20.5 16.75 20.5H7.25C6.2835 20.5 5.5 19.7165 5.5 18.75V5.25Z", fill: "#222222" }) }) }));
|
|
8
|
+
export default IconCalculator;
|
|
@@ -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: "M4 5.25C4 3.45507 5.45507 2 7.25 2H16.75C18.5449 2 20 3.45507 20 5.25V18.75C20 20.5449 18.5449 22 16.75 22H7.25C5.45507 22 4 20.5449 4 18.75V5.25ZM9 5C7.89543 5 7 5.89543 7 7V8C7 9.10457 7.89543 10 9 10H15C16.1046 10 17 9.10457 17 8V7C17 5.89543 16.1046 5 15 5H9ZM9.5 13.25C9.5 12.5596 8.94036 12 8.25 12C7.55964 12 7 12.5596 7 13.25C7 13.9404 7.55964 14.5 8.25 14.5C8.94036 14.5 9.5 13.9404 9.5 13.25ZM8.25 18.5C8.94036 18.5 9.5 17.9404 9.5 17.25C9.5 16.5596 8.94036 16 8.25 16C7.55964 16 7 16.5596 7 17.25C7 17.9404 7.55964 18.5 8.25 18.5ZM17 13.25C17 12.5596 16.4404 12 15.75 12C15.0596 12 14.5 12.5596 14.5 13.25C14.5 13.9404 15.0596 14.5 15.75 14.5C16.4404 14.5 17 13.9404 17 13.25ZM15.75 18.5C16.4404 18.5 17 17.9404 17 17.25C17 16.5596 16.4404 16 15.75 16C15.0596 16 14.5 16.5596 14.5 17.25C14.5 17.9404 15.0596 18.5 15.75 18.5ZM13.25 13.25C13.25 12.5596 12.6904 12 12 12C11.3096 12 10.75 12.5596 10.75 13.25C10.75 13.9404 11.3096 14.5 12 14.5C12.6904 14.5 13.25 13.9404 13.25 13.25ZM12 18.5C12.6904 18.5 13.25 17.9404 13.25 17.25C13.25 16.5596 12.6904 16 12 16C11.3096 16 10.75 16.5596 10.75 17.25C10.75 17.9404 11.3096 18.5 12 18.5Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconCalculatorFilled, IconCalculatorFilled as default };
|
|
3
|
+
export const IconCalculatorFilled = ({ 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: "M4 5.25C4 3.45507 5.45507 2 7.25 2H16.75C18.5449 2 20 3.45507 20 5.25V18.75C20 20.5449 18.5449 22 16.75 22H7.25C5.45507 22 4 20.5449 4 18.75V5.25ZM9 5C7.89543 5 7 5.89543 7 7V8C7 9.10457 7.89543 10 9 10H15C16.1046 10 17 9.10457 17 8V7C17 5.89543 16.1046 5 15 5H9ZM9.5 13.25C9.5 12.5596 8.94036 12 8.25 12C7.55964 12 7 12.5596 7 13.25C7 13.9404 7.55964 14.5 8.25 14.5C8.94036 14.5 9.5 13.9404 9.5 13.25ZM8.25 18.5C8.94036 18.5 9.5 17.9404 9.5 17.25C9.5 16.5596 8.94036 16 8.25 16C7.55964 16 7 16.5596 7 17.25C7 17.9404 7.55964 18.5 8.25 18.5ZM17 13.25C17 12.5596 16.4404 12 15.75 12C15.0596 12 14.5 12.5596 14.5 13.25C14.5 13.9404 15.0596 14.5 15.75 14.5C16.4404 14.5 17 13.9404 17 13.25ZM15.75 18.5C16.4404 18.5 17 17.9404 17 17.25C17 16.5596 16.4404 16 15.75 16C15.0596 16 14.5 16.5596 14.5 17.25C14.5 17.9404 15.0596 18.5 15.75 18.5ZM13.25 13.25C13.25 12.5596 12.6904 12 12 12C11.3096 12 10.75 12.5596 10.75 13.25C10.75 13.9404 11.3096 14.5 12 14.5C12.6904 14.5 13.25 13.9404 13.25 13.25ZM12 18.5C12.6904 18.5 13.25 17.9404 13.25 17.25C13.25 16.5596 12.6904 16 12 16C11.3096 16 10.75 16.5596 10.75 17.25C10.75 17.9404 11.3096 18.5 12 18.5Z", fill: "#222222" }) }) }));
|
|
8
|
+
export default IconCalculatorFilled;
|
|
@@ -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: "M21.8906 6.25C21.8906 4.45507 20.4356 3 18.6406 3H7.14062C5.3457 3 3.89062 4.45507 3.89062 6.25V17.75C3.89062 19.5449 5.3457 21 7.14062 21H12.9124C12.6159 20.5368 12.3765 20.0335 12.2041 19.5H7.14062C6.17413 19.5 5.39062 18.7165 5.39062 17.75V8.5H20.3906V11.3135C20.9241 11.4858 21.4274 11.7253 21.8906 12.0218V6.25ZM7.14062 4.5H18.6406C19.6071 4.5 20.3906 5.2835 20.3906 6.25V7H5.39062V6.25C5.39062 5.2835 6.17413 4.5 7.14062 4.5ZM23.8906 17.5C23.8906 14.4624 21.4282 12 18.3906 12C15.3531 12 12.8906 14.4624 12.8906 17.5C12.8906 20.5376 15.3531 23 18.3906 23C21.4282 23 23.8906 20.5376 23.8906 17.5ZM18.3906 17.5H20.3906C20.6668 17.5 20.8906 17.7239 20.8906 18C20.8906 18.2762 20.6668 18.5 20.3906 18.5H17.8906C17.6174 18.5 17.3954 18.2809 17.3907 18.0089L17.3906 17.9999V14.9999C17.3906 14.7238 17.6145 14.4999 17.8906 14.4999C18.1668 14.4999 18.3906 14.7238 18.3906 14.9999L18.3906 17.5Z",
|
|
25
|
-
fill: "#222222"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconCalendarClock, IconCalendarClock as default };
|
|
3
|
+
export const IconCalendarClock = ({ 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: "M21.8906 6.25C21.8906 4.45507 20.4356 3 18.6406 3H7.14062C5.3457 3 3.89062 4.45507 3.89062 6.25V17.75C3.89062 19.5449 5.3457 21 7.14062 21H12.9124C12.6159 20.5368 12.3765 20.0335 12.2041 19.5H7.14062C6.17413 19.5 5.39062 18.7165 5.39062 17.75V8.5H20.3906V11.3135C20.9241 11.4858 21.4274 11.7253 21.8906 12.0218V6.25ZM7.14062 4.5H18.6406C19.6071 4.5 20.3906 5.2835 20.3906 6.25V7H5.39062V6.25C5.39062 5.2835 6.17413 4.5 7.14062 4.5ZM23.8906 17.5C23.8906 14.4624 21.4282 12 18.3906 12C15.3531 12 12.8906 14.4624 12.8906 17.5C12.8906 20.5376 15.3531 23 18.3906 23C21.4282 23 23.8906 20.5376 23.8906 17.5ZM18.3906 17.5H20.3906C20.6668 17.5 20.8906 17.7239 20.8906 18C20.8906 18.2762 20.6668 18.5 20.3906 18.5H17.8906C17.6174 18.5 17.3954 18.2809 17.3907 18.0089L17.3906 17.9999V14.9999C17.3906 14.7238 17.6145 14.4999 17.8906 14.4999C18.1668 14.4999 18.3906 14.7238 18.3906 14.9999L18.3906 17.5Z", fill: "#222222" }) }));
|
|
8
|
+
export default IconCalendarClock;
|
|
@@ -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: "M18.6406 3C20.4356 3 21.8906 4.45507 21.8906 6.25V7H3.89062V6.25C3.89062 4.45507 5.3457 3 7.14062 3H18.6406ZM21.8906 8.5V12.0218C20.8803 11.375 19.6793 11 18.3906 11C14.8008 11 11.8906 13.9101 11.8906 17.5C11.8906 18.7886 12.2656 19.9897 12.9124 21H7.14062C5.3457 21 3.89062 19.5449 3.89062 17.75V8.5H21.8906ZM23.8906 17.5C23.8906 14.4624 21.4282 12 18.3906 12C15.3531 12 12.8906 14.4624 12.8906 17.5C12.8906 20.5376 15.3531 23 18.3906 23C21.4282 23 23.8906 20.5376 23.8906 17.5ZM18.3906 17.5001H20.3906C20.6668 17.5001 20.8906 17.7239 20.8906 18.0001C20.8906 18.2762 20.6668 18.5001 20.3906 18.5001H17.8906C17.6145 18.5001 17.3906 18.2762 17.3906 18.0001L17.3906 17.9985L17.3906 14.9999C17.3906 14.7238 17.6145 14.4999 17.8906 14.4999C18.1668 14.4999 18.3906 14.7238 18.3906 14.9999L18.3906 17.5001Z",
|
|
25
|
-
fill: "#222222"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconCalendarClockFilled, IconCalendarClockFilled as default };
|
|
3
|
+
export const IconCalendarClockFilled = ({ 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: "M18.6406 3C20.4356 3 21.8906 4.45507 21.8906 6.25V7H3.89062V6.25C3.89062 4.45507 5.3457 3 7.14062 3H18.6406ZM21.8906 8.5V12.0218C20.8803 11.375 19.6793 11 18.3906 11C14.8008 11 11.8906 13.9101 11.8906 17.5C11.8906 18.7886 12.2656 19.9897 12.9124 21H7.14062C5.3457 21 3.89062 19.5449 3.89062 17.75V8.5H21.8906ZM23.8906 17.5C23.8906 14.4624 21.4282 12 18.3906 12C15.3531 12 12.8906 14.4624 12.8906 17.5C12.8906 20.5376 15.3531 23 18.3906 23C21.4282 23 23.8906 20.5376 23.8906 17.5ZM18.3906 17.5001H20.3906C20.6668 17.5001 20.8906 17.7239 20.8906 18.0001C20.8906 18.2762 20.6668 18.5001 20.3906 18.5001H17.8906C17.6145 18.5001 17.3906 18.2762 17.3906 18.0001L17.3906 17.9985L17.3906 14.9999C17.3906 14.7238 17.6145 14.4999 17.8906 14.4999C18.1668 14.4999 18.3906 14.7238 18.3906 14.9999L18.3906 17.5001Z", fill: "#222222" }) }));
|
|
8
|
+
export default IconCalendarClockFilled;
|
|
@@ -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: "M18 3C19.7949 3 21.25 4.45507 21.25 6.25V17.75C21.25 19.5449 19.7949 21 18 21H6.5C4.70507 21 3.25 19.5449 3.25 17.75V6.25C3.25 4.45507 4.70507 3 6.5 3H18ZM18 4.5H6.5C5.5335 4.5 4.75 5.2835 4.75 6.25V17.75C4.75 18.7165 5.5335 19.5 6.5 19.5H18C18.9665 19.5 19.75 18.7165 19.75 17.75V6.25C19.75 5.2835 18.9665 4.5 18 4.5ZM16.5 11C16.9142 11 17.25 11.3358 17.25 11.75V16.25C17.25 16.6642 16.9142 17 16.5 17H8C7.58579 17 7.25 16.6642 7.25 16.25V11.75C7.25 11.3358 7.58579 11 8 11H16.5ZM15.75 12.5H8.75V15.5H15.75V12.5ZM8 7.25H16.5C16.9142 7.25 17.25 7.58579 17.25 8C17.25 8.3797 16.9678 8.69349 16.6018 8.74315L16.5 8.75H8C7.58579 8.75 7.25 8.41421 7.25 8C7.25 7.6203 7.53215 7.30651 7.89823 7.25685L8 7.25H16.5H8Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconCalendarDay, IconCalendarDay as default };
|
|
3
|
+
export const IconCalendarDay = ({ 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: "M18 3C19.7949 3 21.25 4.45507 21.25 6.25V17.75C21.25 19.5449 19.7949 21 18 21H6.5C4.70507 21 3.25 19.5449 3.25 17.75V6.25C3.25 4.45507 4.70507 3 6.5 3H18ZM18 4.5H6.5C5.5335 4.5 4.75 5.2835 4.75 6.25V17.75C4.75 18.7165 5.5335 19.5 6.5 19.5H18C18.9665 19.5 19.75 18.7165 19.75 17.75V6.25C19.75 5.2835 18.9665 4.5 18 4.5ZM16.5 11C16.9142 11 17.25 11.3358 17.25 11.75V16.25C17.25 16.6642 16.9142 17 16.5 17H8C7.58579 17 7.25 16.6642 7.25 16.25V11.75C7.25 11.3358 7.58579 11 8 11H16.5ZM15.75 12.5H8.75V15.5H15.75V12.5ZM8 7.25H16.5C16.9142 7.25 17.25 7.58579 17.25 8C17.25 8.3797 16.9678 8.69349 16.6018 8.74315L16.5 8.75H8C7.58579 8.75 7.25 8.41421 7.25 8C7.25 7.6203 7.53215 7.30651 7.89823 7.25685L8 7.25H16.5H8Z", fill: "#222222" }) }) }));
|
|
8
|
+
export default IconCalendarDay;
|
|
@@ -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 3C19.7949 3 21.25 4.45507 21.25 6.25V17.75C21.25 19.5449 19.7949 21 18 21H6.5C4.70507 21 3.25 19.5449 3.25 17.75V6.25C3.25 4.45507 4.70507 3 6.5 3H18ZM16.5 11H8C7.6203 11 7.30651 11.2822 7.25685 11.6482L7.25 11.75V16.25C7.25 16.6297 7.53215 16.9435 7.89823 16.9932L8 17H16.5C16.8797 17 17.1935 16.7178 17.2432 16.3518L17.25 16.25V11.75C17.25 11.3703 16.9678 11.0565 16.6018 11.0068L16.5 11ZM15.75 12.5V15.5H8.75V12.5H15.75ZM16.5 7.25H8C7.58579 7.25 7.25 7.58579 7.25 8C7.25 8.41421 7.58579 8.75 8 8.75H16.5C16.9142 8.75 17.25 8.41421 17.25 8C17.25 7.58579 16.9142 7.25 16.5 7.25Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconCalendarDayFilled, IconCalendarDayFilled as default };
|
|
3
|
+
export const IconCalendarDayFilled = ({ 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 3C19.7949 3 21.25 4.45507 21.25 6.25V17.75C21.25 19.5449 19.7949 21 18 21H6.5C4.70507 21 3.25 19.5449 3.25 17.75V6.25C3.25 4.45507 4.70507 3 6.5 3H18ZM16.5 11H8C7.6203 11 7.30651 11.2822 7.25685 11.6482L7.25 11.75V16.25C7.25 16.6297 7.53215 16.9435 7.89823 16.9932L8 17H16.5C16.8797 17 17.1935 16.7178 17.2432 16.3518L17.25 16.25V11.75C17.25 11.3703 16.9678 11.0565 16.6018 11.0068L16.5 11ZM15.75 12.5V15.5H8.75V12.5H15.75ZM16.5 7.25H8C7.58579 7.25 7.25 7.58579 7.25 8C7.25 8.41421 7.58579 8.75 8 8.75H16.5C16.9142 8.75 17.25 8.41421 17.25 8C17.25 7.58579 16.9142 7.25 16.5 7.25Z", fill: "#222222" }) }) }));
|
|
8
|
+
export default IconCalendarDayFilled;
|
|
@@ -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: "M17.75 3C19.5449 3 21 4.45507 21 6.25V17.75C21 19.5449 19.5449 21 17.75 21H6.25C4.45507 21 3 19.5449 3 17.75V6.25C3 4.45507 4.45507 3 6.25 3H17.75ZM19.5 8.5H4.5V17.75C4.5 18.7165 5.2835 19.5 6.25 19.5H17.75C18.7165 19.5 19.5 18.7165 19.5 17.75V8.5ZM17.75 4.5H6.25C5.2835 4.5 4.5 5.2835 4.5 6.25V7H19.5V6.25C19.5 5.2835 18.7165 4.5 17.75 4.5Z",
|
|
25
|
-
fill: "#222222"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconCalendarEmpty, IconCalendarEmpty as default };
|
|
3
|
+
export const IconCalendarEmpty = ({ 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: "M17.75 3C19.5449 3 21 4.45507 21 6.25V17.75C21 19.5449 19.5449 21 17.75 21H6.25C4.45507 21 3 19.5449 3 17.75V6.25C3 4.45507 4.45507 3 6.25 3H17.75ZM19.5 8.5H4.5V17.75C4.5 18.7165 5.2835 19.5 6.25 19.5H17.75C18.7165 19.5 19.5 18.7165 19.5 17.75V8.5ZM17.75 4.5H6.25C5.2835 4.5 4.5 5.2835 4.5 6.25V7H19.5V6.25C19.5 5.2835 18.7165 4.5 17.75 4.5Z", fill: "#222222" }) }));
|
|
8
|
+
export default IconCalendarEmpty;
|
|
@@ -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.60938 3C4.81445 3 3.35938 4.45507 3.35938 6.25V17.75C3.35938 19.5449 4.81445 21 6.60938 21H18.1094C19.9043 21 21.3594 19.5449 21.3594 17.75V6.25C21.3594 4.45507 19.9043 3 18.1094 3H6.60938ZM4.85938 8.5H19.8594V17.75C19.8594 18.7165 19.0759 19.5 18.1094 19.5H6.60938C5.64288 19.5 4.85938 18.7165 4.85938 17.75V8.5ZM16.6094 14.5C15.919 14.5 15.3594 15.0596 15.3594 15.75C15.3594 16.4404 15.919 17 16.6094 17C17.2997 17 17.8594 16.4404 17.8594 15.75C17.8594 15.0596 17.2997 14.5 16.6094 14.5ZM12.3594 14.5C11.669 14.5 11.1094 15.0596 11.1094 15.75C11.1094 16.4404 11.669 17 12.3594 17C13.0497 17 13.6094 16.4404 13.6094 15.75C13.6094 15.0596 13.0497 14.5 12.3594 14.5ZM16.6094 10.5C15.919 10.5 15.3594 11.0596 15.3594 11.75C15.3594 12.4404 15.919 13 16.6094 13C17.2997 13 17.8594 12.4404 17.8594 11.75C17.8594 11.0596 17.2997 10.5 16.6094 10.5ZM12.3594 10.5C11.669 10.5 11.1094 11.0596 11.1094 11.75C11.1094 12.4404 11.669 13 12.3594 13C13.0497 13 13.6094 12.4404 13.6094 11.75C13.6094 11.0596 13.0497 10.5 12.3594 10.5ZM8.10938 10.5C7.41902 10.5 6.85938 11.0596 6.85938 11.75C6.85938 12.4404 7.41902 13 8.10938 13C8.79973 13 9.35938 12.4404 9.35938 11.75C9.35938 11.0596 8.79973 10.5 8.10938 10.5ZM6.60938 4.5H18.1094C19.0759 4.5 19.8594 5.2835 19.8594 6.25V7H4.85938V6.25C4.85938 5.2835 5.64288 4.5 6.60938 4.5Z",
|
|
25
|
-
fill: "#222222"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconCalendarLeft, IconCalendarLeft as default };
|
|
3
|
+
export const IconCalendarLeft = ({ 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.60938 3C4.81445 3 3.35938 4.45507 3.35938 6.25V17.75C3.35938 19.5449 4.81445 21 6.60938 21H18.1094C19.9043 21 21.3594 19.5449 21.3594 17.75V6.25C21.3594 4.45507 19.9043 3 18.1094 3H6.60938ZM4.85938 8.5H19.8594V17.75C19.8594 18.7165 19.0759 19.5 18.1094 19.5H6.60938C5.64288 19.5 4.85938 18.7165 4.85938 17.75V8.5ZM16.6094 14.5C15.919 14.5 15.3594 15.0596 15.3594 15.75C15.3594 16.4404 15.919 17 16.6094 17C17.2997 17 17.8594 16.4404 17.8594 15.75C17.8594 15.0596 17.2997 14.5 16.6094 14.5ZM12.3594 14.5C11.669 14.5 11.1094 15.0596 11.1094 15.75C11.1094 16.4404 11.669 17 12.3594 17C13.0497 17 13.6094 16.4404 13.6094 15.75C13.6094 15.0596 13.0497 14.5 12.3594 14.5ZM16.6094 10.5C15.919 10.5 15.3594 11.0596 15.3594 11.75C15.3594 12.4404 15.919 13 16.6094 13C17.2997 13 17.8594 12.4404 17.8594 11.75C17.8594 11.0596 17.2997 10.5 16.6094 10.5ZM12.3594 10.5C11.669 10.5 11.1094 11.0596 11.1094 11.75C11.1094 12.4404 11.669 13 12.3594 13C13.0497 13 13.6094 12.4404 13.6094 11.75C13.6094 11.0596 13.0497 10.5 12.3594 10.5ZM8.10938 10.5C7.41902 10.5 6.85938 11.0596 6.85938 11.75C6.85938 12.4404 7.41902 13 8.10938 13C8.79973 13 9.35938 12.4404 9.35938 11.75C9.35938 11.0596 8.79973 10.5 8.10938 10.5ZM6.60938 4.5H18.1094C19.0759 4.5 19.8594 5.2835 19.8594 6.25V7H4.85938V6.25C4.85938 5.2835 5.64288 4.5 6.60938 4.5Z", fill: "#222222" }) }));
|
|
8
|
+
export default IconCalendarLeft;
|
|
@@ -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: "M3.35938 8.5V17.75C3.35938 19.5449 4.81445 21 6.60938 21H18.1094C19.9043 21 21.3594 19.5449 21.3594 17.75V8.5H3.35938ZM17.1094 15C17.7997 15 18.3594 15.5596 18.3594 16.25C18.3594 16.9404 17.7997 17.5 17.1094 17.5C16.419 17.5 15.8594 16.9404 15.8594 16.25C15.8594 15.5596 16.419 15 17.1094 15ZM12.3594 15C13.0497 15 13.6094 15.5596 13.6094 16.25C13.6094 16.9404 13.0497 17.5 12.3594 17.5C11.669 17.5 11.1094 16.9404 11.1094 16.25C11.1094 15.5596 11.669 15 12.3594 15ZM17.1094 10.5C17.7997 10.5 18.3594 11.0596 18.3594 11.75C18.3594 12.4404 17.7997 13 17.1094 13C16.419 13 15.8594 12.4404 15.8594 11.75C15.8594 11.0596 16.419 10.5 17.1094 10.5ZM12.3594 10.5C13.0497 10.5 13.6094 11.0596 13.6094 11.75C13.6094 12.4404 13.0497 13 12.3594 13C11.669 13 11.1094 12.4404 11.1094 11.75C11.1094 11.0596 11.669 10.5 12.3594 10.5ZM7.60938 10.5C8.29973 10.5 8.85938 11.0596 8.85938 11.75C8.85938 12.4404 8.29973 13 7.60938 13C6.91902 13 6.35938 12.4404 6.35938 11.75C6.35938 11.0596 6.91902 10.5 7.60938 10.5ZM6.60938 3C4.81445 3 3.35938 4.45507 3.35938 6.25V7H21.3594V6.25C21.3594 4.45507 19.9043 3 18.1094 3H6.60938Z",
|
|
25
|
-
fill: "#222222"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconCalendarLeftFilled, IconCalendarLeftFilled as default };
|
|
3
|
+
export const IconCalendarLeftFilled = ({ 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: "M3.35938 8.5V17.75C3.35938 19.5449 4.81445 21 6.60938 21H18.1094C19.9043 21 21.3594 19.5449 21.3594 17.75V8.5H3.35938ZM17.1094 15C17.7997 15 18.3594 15.5596 18.3594 16.25C18.3594 16.9404 17.7997 17.5 17.1094 17.5C16.419 17.5 15.8594 16.9404 15.8594 16.25C15.8594 15.5596 16.419 15 17.1094 15ZM12.3594 15C13.0497 15 13.6094 15.5596 13.6094 16.25C13.6094 16.9404 13.0497 17.5 12.3594 17.5C11.669 17.5 11.1094 16.9404 11.1094 16.25C11.1094 15.5596 11.669 15 12.3594 15ZM17.1094 10.5C17.7997 10.5 18.3594 11.0596 18.3594 11.75C18.3594 12.4404 17.7997 13 17.1094 13C16.419 13 15.8594 12.4404 15.8594 11.75C15.8594 11.0596 16.419 10.5 17.1094 10.5ZM12.3594 10.5C13.0497 10.5 13.6094 11.0596 13.6094 11.75C13.6094 12.4404 13.0497 13 12.3594 13C11.669 13 11.1094 12.4404 11.1094 11.75C11.1094 11.0596 11.669 10.5 12.3594 10.5ZM7.60938 10.5C8.29973 10.5 8.85938 11.0596 8.85938 11.75C8.85938 12.4404 8.29973 13 7.60938 13C6.91902 13 6.35938 12.4404 6.35938 11.75C6.35938 11.0596 6.91902 10.5 7.60938 10.5ZM6.60938 3C4.81445 3 3.35938 4.45507 3.35938 6.25V7H21.3594V6.25C21.3594 4.45507 19.9043 3 18.1094 3H6.60938Z", fill: "#222222" }) }));
|
|
8
|
+
export default IconCalendarLeftFilled;
|
|
@@ -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: "M18.1094 3C19.9043 3 21.3594 4.45507 21.3594 6.25V17.75C21.3594 19.5449 19.9043 21 18.1094 21H6.60938C4.81445 21 3.35938 19.5449 3.35938 17.75V6.25C3.35938 4.45507 4.81445 3 6.60938 3H18.1094ZM19.8594 8.5H4.85938V17.75C4.85938 18.7165 5.64288 19.5 6.60938 19.5H18.1094C19.0759 19.5 19.8594 18.7165 19.8594 17.75V8.5ZM8.10938 14.5C8.79973 14.5 9.35938 15.0596 9.35938 15.75C9.35938 16.4404 8.79973 17 8.10938 17C7.41902 17 6.85938 16.4404 6.85938 15.75C6.85938 15.0596 7.41902 14.5 8.10938 14.5ZM12.3594 14.5C13.0497 14.5 13.6094 15.0596 13.6094 15.75C13.6094 16.4404 13.0497 17 12.3594 17C11.669 17 11.1094 16.4404 11.1094 15.75C11.1094 15.0596 11.669 14.5 12.3594 14.5ZM8.10938 10.5C8.79973 10.5 9.35938 11.0596 9.35938 11.75C9.35938 12.4404 8.79973 13 8.10938 13C7.41902 13 6.85938 12.4404 6.85938 11.75C6.85938 11.0596 7.41902 10.5 8.10938 10.5ZM12.3594 10.5C13.0497 10.5 13.6094 11.0596 13.6094 11.75C13.6094 12.4404 13.0497 13 12.3594 13C11.669 13 11.1094 12.4404 11.1094 11.75C11.1094 11.0596 11.669 10.5 12.3594 10.5ZM16.6094 10.5C17.2997 10.5 17.8594 11.0596 17.8594 11.75C17.8594 12.4404 17.2997 13 16.6094 13C15.919 13 15.3594 12.4404 15.3594 11.75C15.3594 11.0596 15.919 10.5 16.6094 10.5ZM18.1094 4.5H6.60938C5.64288 4.5 4.85938 5.2835 4.85938 6.25V7H19.8594V6.25C19.8594 5.2835 19.0759 4.5 18.1094 4.5Z",
|
|
25
|
-
fill: "#222222"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconCalendarRight, IconCalendarRight as default };
|
|
3
|
+
export const IconCalendarRight = ({ 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: "M18.1094 3C19.9043 3 21.3594 4.45507 21.3594 6.25V17.75C21.3594 19.5449 19.9043 21 18.1094 21H6.60938C4.81445 21 3.35938 19.5449 3.35938 17.75V6.25C3.35938 4.45507 4.81445 3 6.60938 3H18.1094ZM19.8594 8.5H4.85938V17.75C4.85938 18.7165 5.64288 19.5 6.60938 19.5H18.1094C19.0759 19.5 19.8594 18.7165 19.8594 17.75V8.5ZM8.10938 14.5C8.79973 14.5 9.35938 15.0596 9.35938 15.75C9.35938 16.4404 8.79973 17 8.10938 17C7.41902 17 6.85938 16.4404 6.85938 15.75C6.85938 15.0596 7.41902 14.5 8.10938 14.5ZM12.3594 14.5C13.0497 14.5 13.6094 15.0596 13.6094 15.75C13.6094 16.4404 13.0497 17 12.3594 17C11.669 17 11.1094 16.4404 11.1094 15.75C11.1094 15.0596 11.669 14.5 12.3594 14.5ZM8.10938 10.5C8.79973 10.5 9.35938 11.0596 9.35938 11.75C9.35938 12.4404 8.79973 13 8.10938 13C7.41902 13 6.85938 12.4404 6.85938 11.75C6.85938 11.0596 7.41902 10.5 8.10938 10.5ZM12.3594 10.5C13.0497 10.5 13.6094 11.0596 13.6094 11.75C13.6094 12.4404 13.0497 13 12.3594 13C11.669 13 11.1094 12.4404 11.1094 11.75C11.1094 11.0596 11.669 10.5 12.3594 10.5ZM16.6094 10.5C17.2997 10.5 17.8594 11.0596 17.8594 11.75C17.8594 12.4404 17.2997 13 16.6094 13C15.919 13 15.3594 12.4404 15.3594 11.75C15.3594 11.0596 15.919 10.5 16.6094 10.5ZM18.1094 4.5H6.60938C5.64288 4.5 4.85938 5.2835 4.85938 6.25V7H19.8594V6.25C19.8594 5.2835 19.0759 4.5 18.1094 4.5Z", fill: "#222222" }) }));
|
|
8
|
+
export default IconCalendarRight;
|
|
@@ -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: "M21.3594 8.5V17.75C21.3594 19.5449 19.9043 21 18.1094 21H6.60938C4.81445 21 3.35938 19.5449 3.35938 17.75V8.5H21.3594ZM7.60938 15C6.91902 15 6.35938 15.5596 6.35938 16.25C6.35938 16.9404 6.91902 17.5 7.60938 17.5C8.29973 17.5 8.85938 16.9404 8.85938 16.25C8.85938 15.5596 8.29973 15 7.60938 15ZM12.3594 15C11.669 15 11.1094 15.5596 11.1094 16.25C11.1094 16.9404 11.669 17.5 12.3594 17.5C13.0497 17.5 13.6094 16.9404 13.6094 16.25C13.6094 15.5596 13.0497 15 12.3594 15ZM7.60938 10.5C6.91902 10.5 6.35938 11.0596 6.35938 11.75C6.35938 12.4404 6.91902 13 7.60938 13C8.29973 13 8.85938 12.4404 8.85938 11.75C8.85938 11.0596 8.29973 10.5 7.60938 10.5ZM12.3594 10.5C11.669 10.5 11.1094 11.0596 11.1094 11.75C11.1094 12.4404 11.669 13 12.3594 13C13.0497 13 13.6094 12.4404 13.6094 11.75C13.6094 11.0596 13.0497 10.5 12.3594 10.5ZM17.1094 10.5C16.419 10.5 15.8594 11.0596 15.8594 11.75C15.8594 12.4404 16.419 13 17.1094 13C17.7997 13 18.3594 12.4404 18.3594 11.75C18.3594 11.0596 17.7997 10.5 17.1094 10.5ZM18.1094 3C19.9043 3 21.3594 4.45507 21.3594 6.25V7H3.35938V6.25C3.35938 4.45507 4.81445 3 6.60938 3H18.1094Z",
|
|
25
|
-
fill: "#222222"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconCalendarRightFilled, IconCalendarRightFilled as default };
|
|
3
|
+
export const IconCalendarRightFilled = ({ 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: "M21.3594 8.5V17.75C21.3594 19.5449 19.9043 21 18.1094 21H6.60938C4.81445 21 3.35938 19.5449 3.35938 17.75V8.5H21.3594ZM7.60938 15C6.91902 15 6.35938 15.5596 6.35938 16.25C6.35938 16.9404 6.91902 17.5 7.60938 17.5C8.29973 17.5 8.85938 16.9404 8.85938 16.25C8.85938 15.5596 8.29973 15 7.60938 15ZM12.3594 15C11.669 15 11.1094 15.5596 11.1094 16.25C11.1094 16.9404 11.669 17.5 12.3594 17.5C13.0497 17.5 13.6094 16.9404 13.6094 16.25C13.6094 15.5596 13.0497 15 12.3594 15ZM7.60938 10.5C6.91902 10.5 6.35938 11.0596 6.35938 11.75C6.35938 12.4404 6.91902 13 7.60938 13C8.29973 13 8.85938 12.4404 8.85938 11.75C8.85938 11.0596 8.29973 10.5 7.60938 10.5ZM12.3594 10.5C11.669 10.5 11.1094 11.0596 11.1094 11.75C11.1094 12.4404 11.669 13 12.3594 13C13.0497 13 13.6094 12.4404 13.6094 11.75C13.6094 11.0596 13.0497 10.5 12.3594 10.5ZM17.1094 10.5C16.419 10.5 15.8594 11.0596 15.8594 11.75C15.8594 12.4404 16.419 13 17.1094 13C17.7997 13 18.3594 12.4404 18.3594 11.75C18.3594 11.0596 17.7997 10.5 17.1094 10.5ZM18.1094 3C19.9043 3 21.3594 4.45507 21.3594 6.25V7H3.35938V6.25C3.35938 4.45507 4.81445 3 6.60938 3H18.1094Z", fill: "#222222" }) }));
|
|
8
|
+
export default IconCalendarRightFilled;
|
|
@@ -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: "M7.72845 2.41795L8.89545 2.06619C10.218 1.66755 11.631 2.31179 12.1973 3.57161L13.099 5.57733C13.5817 6.65117 13.3273 7.91317 12.4663 8.71612L10.972 10.1096C10.9283 10.1503 10.9006 10.2053 10.894 10.2647C10.8497 10.6618 11.1189 11.4352 11.7391 12.5095C12.1902 13.2908 12.5984 13.8387 12.9459 14.1468C13.188 14.3615 13.3213 14.4079 13.378 14.391L15.3884 13.7764C16.514 13.4323 17.7338 13.8426 18.4225 14.7971L19.7032 16.5721C20.5093 17.6893 20.3644 19.2306 19.3641 20.1779L18.4777 21.0173C17.5213 21.9231 16.1597 22.2606 14.891 21.9065C12.1369 21.1378 9.66759 18.8137 7.45572 14.9826C5.24077 11.1462 4.46358 7.84173 5.18003 5.06994C5.5079 3.80146 6.47403 2.79607 7.72845 2.41795ZM8.16135 3.85413C7.4087 4.081 6.82902 4.68423 6.6323 5.44532C6.02965 7.77684 6.71851 10.7057 8.75475 14.2326C10.7883 17.7548 12.9772 19.815 15.2943 20.4617C16.0555 20.6742 16.8724 20.4717 17.4463 19.9282L18.3326 19.0888C18.7873 18.6582 18.8532 17.9576 18.4868 17.4498L17.2061 15.6748C16.893 15.241 16.3386 15.0544 15.8269 15.2109L13.8116 15.827C12.6419 16.1757 11.5802 15.2342 10.4401 13.2595C9.6718 11.9288 9.31371 10.9001 9.40328 10.0982C9.44968 9.68273 9.64325 9.29763 9.94897 9.01254L11.4433 7.61909C11.8347 7.25411 11.9503 6.68047 11.7309 6.19237L10.8292 4.18665C10.5718 3.614 9.92949 3.32116 9.32835 3.50236L8.16135 3.85413Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconCall, IconCall as default };
|
|
3
|
+
export const IconCall = ({ 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: "M7.72845 2.41795L8.89545 2.06619C10.218 1.66755 11.631 2.31179 12.1973 3.57161L13.099 5.57733C13.5817 6.65117 13.3273 7.91317 12.4663 8.71612L10.972 10.1096C10.9283 10.1503 10.9006 10.2053 10.894 10.2647C10.8497 10.6618 11.1189 11.4352 11.7391 12.5095C12.1902 13.2908 12.5984 13.8387 12.9459 14.1468C13.188 14.3615 13.3213 14.4079 13.378 14.391L15.3884 13.7764C16.514 13.4323 17.7338 13.8426 18.4225 14.7971L19.7032 16.5721C20.5093 17.6893 20.3644 19.2306 19.3641 20.1779L18.4777 21.0173C17.5213 21.9231 16.1597 22.2606 14.891 21.9065C12.1369 21.1378 9.66759 18.8137 7.45572 14.9826C5.24077 11.1462 4.46358 7.84173 5.18003 5.06994C5.5079 3.80146 6.47403 2.79607 7.72845 2.41795ZM8.16135 3.85413C7.4087 4.081 6.82902 4.68423 6.6323 5.44532C6.02965 7.77684 6.71851 10.7057 8.75475 14.2326C10.7883 17.7548 12.9772 19.815 15.2943 20.4617C16.0555 20.6742 16.8724 20.4717 17.4463 19.9282L18.3326 19.0888C18.7873 18.6582 18.8532 17.9576 18.4868 17.4498L17.2061 15.6748C16.893 15.241 16.3386 15.0544 15.8269 15.2109L13.8116 15.827C12.6419 16.1757 11.5802 15.2342 10.4401 13.2595C9.6718 11.9288 9.31371 10.9001 9.40328 10.0982C9.44968 9.68273 9.64325 9.29763 9.94897 9.01254L11.4433 7.61909C11.8347 7.25411 11.9503 6.68047 11.7309 6.19237L10.8292 4.18665C10.5718 3.614 9.92949 3.32116 9.32835 3.50236L8.16135 3.85413Z", fill: "#222222" }) }) }));
|
|
8
|
+
export default IconCall;
|
|
@@ -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: "M8.44362 2.43899L9.52022 2.09498C10.529 1.77263 11.6069 2.29358 12.0389 3.31232L12.8986 5.33967C13.2733 6.22312 13.0654 7.26203 12.3847 7.90815L10.4903 9.70616C10.6072 10.7816 10.9687 11.8406 11.5749 12.8832C12.181 13.9257 12.938 14.7905 13.8459 15.4776L16.1211 14.7189C16.9835 14.4313 17.9227 14.7618 18.4517 15.539L19.6841 17.3495C20.299 18.2529 20.1884 19.4993 19.4254 20.2653L18.6077 21.0862C17.7937 21.9033 16.6312 22.1997 15.5558 21.8643C13.0169 21.0723 10.6826 18.7211 8.55286 14.8107C6.41999 10.8945 5.66724 7.57189 6.29461 4.84289C6.55861 3.69457 7.37612 2.78009 8.44362 2.43899Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconCallFilled, IconCallFilled as default };
|
|
3
|
+
export const IconCallFilled = ({ 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: "M8.44362 2.43899L9.52022 2.09498C10.529 1.77263 11.6069 2.29358 12.0389 3.31232L12.8986 5.33967C13.2733 6.22312 13.0654 7.26203 12.3847 7.90815L10.4903 9.70616C10.6072 10.7816 10.9687 11.8406 11.5749 12.8832C12.181 13.9257 12.938 14.7905 13.8459 15.4776L16.1211 14.7189C16.9835 14.4313 17.9227 14.7618 18.4517 15.539L19.6841 17.3495C20.299 18.2529 20.1884 19.4993 19.4254 20.2653L18.6077 21.0862C17.7937 21.9033 16.6312 22.1997 15.5558 21.8643C13.0169 21.0723 10.6826 18.7211 8.55286 14.8107C6.41999 10.8945 5.66724 7.57189 6.29461 4.84289C6.55861 3.69457 7.37612 2.78009 8.44362 2.43899Z", fill: "#222222" }) }) }));
|
|
8
|
+
export default IconCallFilled;
|