hrm_ui_lib 2.0.3 → 2.1.0-alpha.10
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/README.md +1 -3
- package/assets/images/file-preview.svg.js +1 -0
- package/assets/images/no-result.svg.js +1 -0
- package/assets/images/no_mobile_image.svg.js +1 -0
- package/assets/images/under-construction.webp +0 -0
- package/assets/images/under-construction.webp.js +1 -0
- package/assets/styles/helpers/_mixin.scss +326 -464
- package/assets/styles/styles.css +1 -8776
- package/components/Alert/Alert.js +6 -52
- package/components/Alert/consts.d.ts +3 -4
- package/components/Alert/consts.js +1 -16
- package/components/Alert/index.js +1 -52
- package/components/Alert/types.js +0 -1
- package/components/Avatar/Avatar.js +1 -119
- package/components/Avatar/AvatarGroup.js +5 -120
- package/components/Avatar/index.js +1 -64
- package/components/Avatar/types.js +0 -1
- package/components/Badge/Badge.js +2 -24
- package/components/Badge/index.js +1 -6
- package/components/Badge/types.js +0 -1
- package/components/BadgeV2/BadgeV2.d.ts +3 -0
- package/components/BadgeV2/BadgeV2.js +1 -0
- package/components/BadgeV2/index.d.ts +1 -0
- package/components/BadgeV2/index.js +1 -0
- package/components/BadgeV2/types.d.ts +23 -0
- package/components/BadgeV2/types.js +1 -0
- package/components/Breadcrumb/Breadcrumb.js +2 -24
- package/components/Breadcrumb/index.js +1 -2
- package/components/Breadcrumb/types.js +0 -1
- package/components/Button/Button.js +2 -52
- package/components/Button/consts.d.ts +1 -1
- package/components/Button/consts.js +1 -16
- package/components/Button/index.js +1 -52
- package/components/Button/types.d.ts +2 -1
- package/components/Button/types.js +0 -1
- package/components/ButtonGroup/ButtonGroup.d.ts +2 -0
- package/components/ButtonGroup/ButtonGroup.js +2 -0
- package/components/ButtonGroup/ButtonGroupItem.d.ts +2 -0
- package/components/ButtonGroup/ButtonGroupItem.js +3 -0
- package/components/ButtonGroup/consts.d.ts +8 -0
- package/components/ButtonGroup/consts.js +1 -0
- package/components/ButtonGroup/index.d.ts +1 -0
- package/components/ButtonGroup/index.js +1 -0
- package/components/ButtonGroup/types.d.ts +23 -0
- package/components/ButtonGroup/types.js +0 -0
- package/components/Card/Card.d.ts +13 -0
- package/components/Card/Card.js +1 -0
- package/components/Card/CardComponent/Card.d.ts +4 -0
- package/components/Card/CardComponent/Card.js +3 -0
- package/components/Card/CardComponent/CardBody.d.ts +4 -0
- package/components/Card/CardComponent/CardBody.js +2 -0
- package/components/Card/CardComponent/CardFooter.d.ts +4 -0
- package/components/Card/CardComponent/CardFooter.js +1 -0
- package/components/Card/CardComponent/CardHead.d.ts +4 -0
- package/components/Card/CardComponent/CardHead.js +2 -0
- package/components/Card/CardContext.d.ts +7 -0
- package/components/Card/CardContext.js +1 -0
- package/components/Card/index.d.ts +1 -0
- package/components/Card/index.js +1 -0
- package/components/Card/types.d.ts +19 -0
- package/components/Card/types.js +0 -0
- package/components/CardGroup/CardGroup.d.ts +10 -0
- package/components/CardGroup/CardGroup.js +1 -0
- package/components/CardGroup/CardGroupComponent/CardBody.d.ts +4 -0
- package/components/CardGroup/CardGroupComponent/CardBody.js +2 -0
- package/components/CardGroup/CardGroupComponent/CardGroup.d.ts +4 -0
- package/components/CardGroup/CardGroupComponent/CardGroup.js +2 -0
- package/components/CardGroup/CardGroupComponent/CardHead.d.ts +4 -0
- package/components/CardGroup/CardGroupComponent/CardHead.js +3 -0
- package/components/CardGroup/CardGroupContext.d.ts +6 -0
- package/components/CardGroup/CardGroupContext.js +1 -0
- package/components/CardGroup/index.d.ts +1 -0
- package/components/CardGroup/index.js +1 -0
- package/components/CardGroup/types.d.ts +14 -0
- package/components/CardGroup/types.js +0 -0
- package/components/Checkbox/Checkbox.js +6 -52
- package/components/Checkbox/consts.d.ts +3 -0
- package/components/Checkbox/consts.js +1 -0
- package/components/Checkbox/index.js +1 -52
- package/components/Checkbox/types.d.ts +1 -0
- package/components/Checkbox/types.js +0 -1
- package/components/Chips/Chips.js +2 -67
- package/components/Chips/consts.d.ts +1 -1
- package/components/Chips/consts.js +1 -14
- package/components/Chips/index.js +1 -11
- package/components/Chips/types.d.ts +1 -1
- package/components/Chips/types.js +1 -7
- package/components/Collapse/Collapse/Collapse.d.ts +3 -0
- package/components/Collapse/Collapse/Collapse.js +5 -0
- package/components/Collapse/Collapse/Title.d.ts +10 -0
- package/components/Collapse/Collapse/Title.js +2 -0
- package/components/Collapse/CollapseGroup/CollapseGroup.js +3 -76
- package/components/Collapse/CollapseItem/CollapseItem.js +10 -89
- package/components/Collapse/index.d.ts +1 -0
- package/components/Collapse/index.js +1 -16
- package/components/Collapse/types.d.ts +16 -3
- package/components/Collapse/types.js +0 -1
- package/components/Container/Container.js +2 -10
- package/components/Container/index.js +1 -2
- package/components/Container/types.js +0 -1
- package/components/Copy/Copy.js +3 -94
- package/components/Copy/index.js +1 -54
- package/components/Copy/types.js +0 -1
- package/components/Counter/Counter.js +2 -137
- package/components/Counter/index.js +1 -61
- package/components/Counter/types.js +0 -1
- package/components/DarkModeSwitcher/DarkModeSwitcher.d.ts +11 -0
- package/components/DarkModeSwitcher/DarkModeSwitcher.js +5 -0
- package/components/DarkModeSwitcher/index.d.ts +1 -0
- package/components/DarkModeSwitcher/index.js +1 -0
- package/components/DarkModeSwitcher/types.d.ts +17 -0
- package/components/DarkModeSwitcher/types.js +1 -0
- package/components/DatePicker/CustomHeader/CustomHeader.js +7 -192
- package/components/DatePicker/CustomHeader/helpers.js +1 -17
- package/components/DatePicker/RangeDatePicker/RangeDatePicker.js +1 -130
- package/components/DatePicker/RangeDatePicker/RangeDatePickerDesktop.js +4 -177
- package/components/DatePicker/RangeDatePicker/RangeDatePickerMobile.js +8 -269
- package/components/DatePicker/RangeDatePicker/index.js +1 -124
- package/components/DatePicker/SimpleDatePicker/SimpleDatePicker.js +1 -130
- package/components/DatePicker/SimpleDatePicker/SimpleDatePickerDesktop.js +4 -205
- package/components/DatePicker/SimpleDatePicker/SimpleDatePickerMobile.js +5 -210
- package/components/DatePicker/SimpleDatePicker/index.js +1 -123
- package/components/DatePicker/TimePicker/MobileModalContent.js +4 -124
- package/components/DatePicker/TimePicker/TimePicker.js +1 -76
- package/components/DatePicker/TimePicker/TimePickerDesktop.js +4 -131
- package/components/DatePicker/TimePicker/TimePickerMobile.js +5 -127
- package/components/DatePicker/TimePicker/consts.js +1 -8
- package/components/DatePicker/TimePicker/helpers.js +1 -21
- package/components/DatePicker/TimePicker/index.js +1 -70
- package/components/DatePicker/hooks.js +1 -2175
- package/components/DatePicker/index.js +1 -134
- package/components/DatePicker/localization.js +1 -7
- package/components/DatePicker/types.js +1 -7
- package/components/Divider/Divider.js +2 -16
- package/components/Divider/index.js +1 -3
- package/components/Divider/types.d.ts +1 -0
- package/components/Divider/types.js +0 -1
- package/components/Empty/Empty.js +4 -85
- package/components/Empty/index.js +1 -54
- package/components/Empty/types.js +0 -1
- package/components/FileUpload/DropzoneFileUpload/DropzoneFileUpload.js +7 -52
- package/components/FileUpload/DropzoneFileUpload/ErrorItem.js +1 -52
- package/components/FileUpload/DropzoneFileUpload/FilePreview.js +2 -53
- package/components/FileUpload/DropzoneFileUpload/PreviewItem.js +7 -52
- package/components/FileUpload/DropzoneFileUpload/helpers.js +1 -52
- package/components/FileUpload/DropzoneFileUpload/index.js +1 -52
- package/components/FileUpload/FileUpload.js +6 -193
- package/components/FileUpload/UploadItems.js +6 -102
- package/components/FileUpload/index.js +1 -61
- package/components/FileUpload/types.js +1 -10
- package/components/FormContainer/FormContainer.js +1 -137
- package/components/FormContainer/index.js +1 -55
- package/components/FormContainer/types.d.ts +2 -2
- package/components/FormContainer/types.js +0 -1
- package/components/FormField/FormField.js +3 -115
- package/components/FormField/index.js +1 -56
- package/components/FormField/types.d.ts +1 -0
- package/components/FormField/types.js +0 -1
- package/components/Heading/Heading.js +2 -29
- package/components/Heading/index.js +1 -5
- package/components/Heading/types.js +0 -1
- package/components/Image/Image.js +1 -33
- package/components/Image/index.js +1 -2
- package/components/Image/types.js +0 -1
- package/components/Input/Input.js +9 -243
- package/components/Input/index.js +1 -58
- package/components/Input/types.d.ts +1 -1
- package/components/Input/types.js +0 -1
- package/components/Link/Link.js +2 -42
- package/components/Link/index.js +1 -3
- package/components/Link/types.js +0 -1
- package/components/Menu/Menu.js +3 -165
- package/components/Menu/NestedMenu.js +3 -178
- package/components/Menu/index.js +1 -72
- package/components/Menu/types.js +0 -1
- package/components/Modal/Modal.d.ts +1 -6
- package/components/Modal/Modal.js +1 -52
- package/components/Modal/ModalConfirmation.d.ts +1 -1
- package/components/Modal/ModalConfirmation.js +3 -143
- package/components/Modal/ModalContent.d.ts +3 -1
- package/components/Modal/ModalContent.js +5 -52
- package/components/Modal/index.js +1 -53
- package/components/Modal/types.d.ts +2 -0
- package/components/Modal/types.js +0 -1
- package/components/More/More.js +3 -86
- package/components/More/index.js +1 -53
- package/components/More/types.js +0 -1
- package/components/Pagination/Pagination.js +2 -59
- package/components/Pagination/consts.d.ts +1 -1
- package/components/Pagination/consts.js +1 -8
- package/components/Pagination/index.js +1 -10
- package/components/Pagination/types.js +0 -1
- package/components/Popover/Popover.js +1 -52
- package/components/Popover/PopoverDesktop.js +1 -71
- package/components/Popover/PopoverMobile.js +3 -52
- package/components/Popover/index.js +1 -52
- package/components/Popover/types.d.ts +2 -1
- package/components/Popover/types.js +0 -1
- package/components/Progress/Progress.js +4 -57
- package/components/Progress/index.js +1 -2
- package/components/Progress/types.js +0 -1
- package/components/ProgressStep/ProgressStep.js +2 -39
- package/components/ProgressStep/Step.js +9 -101
- package/components/ProgressStep/consts.js +1 -9
- package/components/ProgressStep/index.js +1 -12
- package/components/ProgressStep/types.js +1 -7
- package/components/Radio/Radio.js +4 -58
- package/components/Radio/RadioGroup.js +4 -113
- package/components/Radio/index.js +1 -55
- package/components/Radio/types.js +0 -1
- package/components/SVGIcons/IconAdd.d.ts +2 -2
- package/components/SVGIcons/IconAdd.js +1 -29
- package/components/SVGIcons/IconAddCircle.d.ts +2 -2
- package/components/SVGIcons/IconAddCircle.js +1 -32
- package/components/SVGIcons/IconAddCircleFilled.d.ts +2 -2
- package/components/SVGIcons/IconAddCircleFilled.js +1 -32
- package/components/SVGIcons/IconAddFilled.d.ts +2 -2
- package/components/SVGIcons/IconAddFilled.js +1 -29
- package/components/SVGIcons/IconAirplaneTakeOff.d.ts +4 -0
- package/components/SVGIcons/IconAirplaneTakeOff.js +1 -0
- package/components/SVGIcons/IconAirplaneTakeOffFilled.d.ts +4 -0
- package/components/SVGIcons/IconAirplaneTakeOffFilled.js +1 -0
- package/components/SVGIcons/IconAlert.d.ts +2 -2
- package/components/SVGIcons/IconAlert.js +1 -32
- package/components/SVGIcons/IconAlertBadge.d.ts +2 -2
- package/components/SVGIcons/IconAlertBadge.js +1 -32
- package/components/SVGIcons/IconAlertBadgeFilled.d.ts +2 -2
- package/components/SVGIcons/IconAlertBadgeFilled.js +1 -32
- package/components/SVGIcons/IconAlertFilled.d.ts +2 -2
- package/components/SVGIcons/IconAlertFilled.js +1 -32
- package/components/SVGIcons/IconAm.d.ts +2 -2
- package/components/SVGIcons/IconAm.js +7 -58
- package/components/SVGIcons/IconAmd.d.ts +2 -2
- package/components/SVGIcons/IconAmd.js +1 -29
- package/components/SVGIcons/IconAmdFilled.d.ts +2 -2
- package/components/SVGIcons/IconAmdFilled.js +1 -29
- package/components/SVGIcons/IconApple.d.ts +2 -2
- package/components/SVGIcons/IconApple.js +1 -32
- package/components/SVGIcons/IconArrowDown.d.ts +2 -2
- package/components/SVGIcons/IconArrowDown.js +1 -32
- package/components/SVGIcons/IconArrowDownFilled.d.ts +2 -2
- package/components/SVGIcons/IconArrowDownFilled.js +1 -32
- package/components/SVGIcons/IconArrowDownLeft.d.ts +2 -2
- package/components/SVGIcons/IconArrowDownLeft.js +1 -32
- package/components/SVGIcons/IconArrowDownLeftFilled.d.ts +2 -2
- package/components/SVGIcons/IconArrowDownLeftFilled.js +1 -32
- package/components/SVGIcons/IconArrowDownload.d.ts +2 -2
- package/components/SVGIcons/IconArrowDownload.js +1 -32
- package/components/SVGIcons/IconArrowDownloadFilled.d.ts +2 -2
- package/components/SVGIcons/IconArrowDownloadFilled.js +1 -32
- package/components/SVGIcons/IconArrowEnter.d.ts +2 -2
- package/components/SVGIcons/IconArrowEnter.js +1 -29
- package/components/SVGIcons/IconArrowEnterFilled.d.ts +2 -2
- package/components/SVGIcons/IconArrowEnterFilled.js +1 -29
- package/components/SVGIcons/IconArrowExit.d.ts +2 -2
- package/components/SVGIcons/IconArrowExit.js +1 -29
- package/components/SVGIcons/IconArrowExitFilled.d.ts +2 -2
- package/components/SVGIcons/IconArrowExitFilled.js +1 -29
- package/components/SVGIcons/IconArrowExportLeftToRight.d.ts +2 -2
- package/components/SVGIcons/IconArrowExportLeftToRight.js +1 -32
- package/components/SVGIcons/IconArrowExportLeftToRightFilled.d.ts +2 -2
- package/components/SVGIcons/IconArrowExportLeftToRightFilled.js +1 -32
- package/components/SVGIcons/IconArrowExportRightToLeft.d.ts +2 -2
- package/components/SVGIcons/IconArrowExportRightToLeft.js +1 -32
- package/components/SVGIcons/IconArrowExportRightToLeftFilled.d.ts +2 -2
- package/components/SVGIcons/IconArrowExportRightToLeftFilled.js +1 -32
- package/components/SVGIcons/IconArrowExportUp.d.ts +2 -2
- package/components/SVGIcons/IconArrowExportUp.js +1 -32
- package/components/SVGIcons/IconArrowExportUpFilled.d.ts +2 -2
- package/components/SVGIcons/IconArrowExportUpFilled.js +1 -32
- package/components/SVGIcons/IconArrowImport.d.ts +2 -2
- package/components/SVGIcons/IconArrowImport.js +1 -32
- package/components/SVGIcons/IconArrowImportFilled.d.ts +2 -2
- package/components/SVGIcons/IconArrowImportFilled.js +1 -32
- package/components/SVGIcons/IconArrowLeft.d.ts +2 -2
- package/components/SVGIcons/IconArrowLeft.js +1 -32
- package/components/SVGIcons/IconArrowLeftFilled.d.ts +2 -2
- package/components/SVGIcons/IconArrowLeftFilled.js +1 -32
- package/components/SVGIcons/IconArrowRepeatAll.d.ts +2 -2
- package/components/SVGIcons/IconArrowRepeatAll.js +1 -32
- package/components/SVGIcons/IconArrowRepeatAllFilled.d.ts +2 -2
- package/components/SVGIcons/IconArrowRepeatAllFilled.js +1 -32
- package/components/SVGIcons/IconArrowReset.d.ts +2 -2
- package/components/SVGIcons/IconArrowReset.js +1 -32
- package/components/SVGIcons/IconArrowResetFilled.d.ts +2 -2
- package/components/SVGIcons/IconArrowResetFilled.js +1 -32
- package/components/SVGIcons/IconArrowRight.d.ts +2 -2
- package/components/SVGIcons/IconArrowRight.js +1 -32
- package/components/SVGIcons/IconArrowRightFilled.d.ts +2 -2
- package/components/SVGIcons/IconArrowRightFilled.js +1 -32
- package/components/SVGIcons/IconArrowSort.d.ts +2 -2
- package/components/SVGIcons/IconArrowSort.js +1 -29
- package/components/SVGIcons/IconArrowSortFilled.d.ts +2 -2
- package/components/SVGIcons/IconArrowSortFilled.js +1 -29
- package/components/SVGIcons/IconArrowSync.d.ts +2 -2
- package/components/SVGIcons/IconArrowSync.js +1 -29
- package/components/SVGIcons/IconArrowSyncFilled.d.ts +2 -2
- package/components/SVGIcons/IconArrowSyncFilled.js +1 -29
- package/components/SVGIcons/IconArrowUp.d.ts +2 -2
- package/components/SVGIcons/IconArrowUp.js +1 -32
- package/components/SVGIcons/IconArrowUpFilled.d.ts +2 -2
- package/components/SVGIcons/IconArrowUpFilled.js +1 -32
- package/components/SVGIcons/IconArrowUpLeft.d.ts +2 -2
- package/components/SVGIcons/IconArrowUpLeft.js +1 -32
- package/components/SVGIcons/IconArrowUpLeftFilled.d.ts +2 -2
- package/components/SVGIcons/IconArrowUpLeftFilled.js +1 -32
- package/components/SVGIcons/IconArrowUpRight.d.ts +2 -2
- package/components/SVGIcons/IconArrowUpRight.js +1 -32
- package/components/SVGIcons/IconArrowUpRightFilled.d.ts +2 -2
- package/components/SVGIcons/IconArrowUpRightFilled.js +1 -32
- package/components/SVGIcons/IconAttach.d.ts +2 -2
- package/components/SVGIcons/IconAttach.js +1 -32
- package/components/SVGIcons/IconAttachFilled.d.ts +2 -2
- package/components/SVGIcons/IconAttachFilled.js +1 -32
- package/components/SVGIcons/IconBeach.d.ts +2 -2
- package/components/SVGIcons/IconBeach.js +1 -29
- package/components/SVGIcons/IconBeachFilled.d.ts +2 -2
- package/components/SVGIcons/IconBeachFilled.js +1 -29
- package/components/SVGIcons/IconBook.d.ts +2 -2
- package/components/SVGIcons/IconBook.js +1 -32
- package/components/SVGIcons/IconBookFilled.d.ts +2 -2
- package/components/SVGIcons/IconBookFilled.js +1 -32
- package/components/SVGIcons/IconBookmark.d.ts +2 -2
- package/components/SVGIcons/IconBookmark.js +1 -32
- package/components/SVGIcons/IconBookmarkFilled.d.ts +2 -2
- package/components/SVGIcons/IconBookmarkFilled.js +1 -32
- package/components/SVGIcons/IconBriefcase.d.ts +2 -2
- package/components/SVGIcons/IconBriefcase.js +1 -32
- package/components/SVGIcons/IconBriefcaseFilled.d.ts +2 -2
- package/components/SVGIcons/IconBriefcaseFilled.js +1 -32
- package/components/SVGIcons/IconBudgetTransfer.d.ts +4 -0
- package/components/SVGIcons/IconBudgetTransfer.js +7 -0
- package/components/SVGIcons/IconBuilding.d.ts +2 -2
- package/components/SVGIcons/IconBuilding.js +7 -55
- package/components/SVGIcons/IconBuildingBank.d.ts +2 -2
- package/components/SVGIcons/IconBuildingBank.js +1 -29
- package/components/SVGIcons/IconBuildingBankFilled.d.ts +2 -2
- package/components/SVGIcons/IconBuildingBankFilled.js +1 -29
- package/components/SVGIcons/IconBuildingFilled.d.ts +2 -2
- package/components/SVGIcons/IconBuildingFilled.js +1 -32
- package/components/SVGIcons/IconBulletListAdd.d.ts +2 -2
- package/components/SVGIcons/IconBulletListAdd.js +1 -32
- package/components/SVGIcons/IconBulletListAddFilled.d.ts +2 -2
- package/components/SVGIcons/IconBulletListAddFilled.js +1 -32
- package/components/SVGIcons/IconCalculator.d.ts +2 -2
- package/components/SVGIcons/IconCalculator.js +1 -32
- package/components/SVGIcons/IconCalculatorFilled.d.ts +2 -2
- package/components/SVGIcons/IconCalculatorFilled.js +1 -32
- package/components/SVGIcons/IconCalendarClock.d.ts +2 -2
- package/components/SVGIcons/IconCalendarClock.js +1 -29
- package/components/SVGIcons/IconCalendarClockFilled.d.ts +2 -2
- package/components/SVGIcons/IconCalendarClockFilled.js +1 -29
- package/components/SVGIcons/IconCalendarDay.d.ts +2 -2
- package/components/SVGIcons/IconCalendarDay.js +1 -32
- package/components/SVGIcons/IconCalendarDayFilled.d.ts +2 -2
- package/components/SVGIcons/IconCalendarDayFilled.js +1 -32
- package/components/SVGIcons/IconCalendarEmpty.d.ts +2 -2
- package/components/SVGIcons/IconCalendarEmpty.js +1 -29
- package/components/SVGIcons/IconCalendarLeft.d.ts +2 -2
- package/components/SVGIcons/IconCalendarLeft.js +1 -29
- package/components/SVGIcons/IconCalendarLeftFilled.d.ts +2 -2
- package/components/SVGIcons/IconCalendarLeftFilled.js +1 -29
- package/components/SVGIcons/IconCalendarRight.d.ts +2 -2
- package/components/SVGIcons/IconCalendarRight.js +1 -29
- package/components/SVGIcons/IconCalendarRightFilled.d.ts +2 -2
- package/components/SVGIcons/IconCalendarRightFilled.js +1 -29
- package/components/SVGIcons/IconCall.d.ts +2 -2
- package/components/SVGIcons/IconCall.js +1 -32
- package/components/SVGIcons/IconCallFilled.d.ts +2 -2
- package/components/SVGIcons/IconCallFilled.js +1 -32
- package/components/SVGIcons/IconCard.d.ts +2 -2
- package/components/SVGIcons/IconCard.js +1 -29
- package/components/SVGIcons/IconCardFilled.d.ts +2 -2
- package/components/SVGIcons/IconCardFilled.js +1 -29
- package/components/SVGIcons/IconCaretDown.d.ts +2 -2
- package/components/SVGIcons/IconCaretDown.js +1 -29
- package/components/SVGIcons/IconCaretDownFilled.d.ts +2 -2
- package/components/SVGIcons/IconCaretDownFilled.js +1 -29
- package/components/SVGIcons/IconCaretDownRight.d.ts +2 -2
- package/components/SVGIcons/IconCaretDownRight.js +1 -29
- package/components/SVGIcons/IconCaretDownRightFilled.d.ts +2 -2
- package/components/SVGIcons/IconCaretDownRightFilled.js +1 -29
- package/components/SVGIcons/IconCaretLeft.d.ts +2 -2
- package/components/SVGIcons/IconCaretLeft.js +1 -29
- package/components/SVGIcons/IconCaretLeftFilled.d.ts +2 -2
- package/components/SVGIcons/IconCaretLeftFilled.js +1 -29
- package/components/SVGIcons/IconCaretRight.d.ts +2 -2
- package/components/SVGIcons/IconCaretRight.js +1 -29
- package/components/SVGIcons/IconCaretRightFilled.d.ts +2 -2
- package/components/SVGIcons/IconCaretRightFilled.js +1 -29
- package/components/SVGIcons/IconCaretUp.d.ts +2 -2
- package/components/SVGIcons/IconCaretUp.js +1 -29
- package/components/SVGIcons/IconCaretUpFilled.d.ts +2 -2
- package/components/SVGIcons/IconCaretUpFilled.js +1 -29
- package/components/SVGIcons/IconChartPerson.d.ts +4 -0
- package/components/SVGIcons/IconChartPerson.js +1 -0
- package/components/SVGIcons/IconChartPersonFilled.d.ts +4 -0
- package/components/SVGIcons/IconChartPersonFilled.js +1 -0
- package/components/SVGIcons/IconChat.d.ts +2 -2
- package/components/SVGIcons/IconChat.js +1 -29
- package/components/SVGIcons/IconChatFilled.d.ts +2 -2
- package/components/SVGIcons/IconChatFilled.js +1 -29
- package/components/SVGIcons/IconChatMultiple.d.ts +2 -2
- package/components/SVGIcons/IconChatMultiple.js +1 -29
- package/components/SVGIcons/IconChatMultipleFilled.d.ts +2 -2
- package/components/SVGIcons/IconChatMultipleFilled.js +1 -29
- package/components/SVGIcons/IconCheckboxArrowRight.d.ts +2 -2
- package/components/SVGIcons/IconCheckboxArrowRight.js +1 -32
- package/components/SVGIcons/IconCheckboxArrowRightFilled.d.ts +2 -2
- package/components/SVGIcons/IconCheckboxArrowRightFilled.js +1 -32
- package/components/SVGIcons/IconCheckmark.d.ts +2 -2
- package/components/SVGIcons/IconCheckmark.js +1 -29
- package/components/SVGIcons/IconCheckmarkCircle.d.ts +2 -2
- package/components/SVGIcons/IconCheckmarkCircle.js +1 -29
- package/components/SVGIcons/IconCheckmarkCircleFilled.d.ts +2 -2
- package/components/SVGIcons/IconCheckmarkCircleFilled.js +1 -29
- package/components/SVGIcons/IconCheckmarkFilled.d.ts +2 -2
- package/components/SVGIcons/IconCheckmarkFilled.js +1 -29
- package/components/SVGIcons/IconChevronDoubleLeft.d.ts +4 -0
- package/components/SVGIcons/IconChevronDoubleLeft.js +1 -0
- package/components/SVGIcons/IconChevronDoubleRight.d.ts +4 -0
- package/components/SVGIcons/IconChevronDoubleRight.js +1 -0
- package/components/SVGIcons/IconChevronDown.d.ts +2 -2
- package/components/SVGIcons/IconChevronDown.js +1 -29
- package/components/SVGIcons/IconChevronDownFilled.d.ts +2 -2
- package/components/SVGIcons/IconChevronDownFilled.js +1 -29
- package/components/SVGIcons/IconChevronLeft.d.ts +2 -2
- package/components/SVGIcons/IconChevronLeft.js +1 -29
- package/components/SVGIcons/IconChevronLeftFilled.d.ts +2 -2
- package/components/SVGIcons/IconChevronLeftFilled.js +1 -29
- package/components/SVGIcons/IconChevronRight.d.ts +2 -2
- package/components/SVGIcons/IconChevronRight.js +1 -29
- package/components/SVGIcons/IconChevronRightFilled.d.ts +2 -2
- package/components/SVGIcons/IconChevronRightFilled.js +1 -29
- package/components/SVGIcons/IconChevronUp.d.ts +2 -2
- package/components/SVGIcons/IconChevronUp.js +1 -29
- package/components/SVGIcons/IconChevronUpDown.d.ts +2 -2
- package/components/SVGIcons/IconChevronUpDown.js +1 -32
- package/components/SVGIcons/IconChevronUpDownFilled.d.ts +2 -2
- package/components/SVGIcons/IconChevronUpDownFilled.js +1 -32
- package/components/SVGIcons/IconChevronUpFilled.d.ts +2 -2
- package/components/SVGIcons/IconChevronUpFilled.js +1 -29
- package/components/SVGIcons/IconClipboardDay.d.ts +2 -2
- package/components/SVGIcons/IconClipboardDay.js +1 -29
- package/components/SVGIcons/IconClock.d.ts +2 -2
- package/components/SVGIcons/IconClock.js +1 -32
- package/components/SVGIcons/IconClockDismiss.d.ts +2 -2
- package/components/SVGIcons/IconClockDismiss.js +1 -29
- package/components/SVGIcons/IconClockDismissFilled.d.ts +2 -2
- package/components/SVGIcons/IconClockDismissFilled.js +1 -29
- package/components/SVGIcons/IconClockFilled.d.ts +2 -2
- package/components/SVGIcons/IconClockFilled.js +1 -32
- package/components/SVGIcons/IconComment.d.ts +2 -2
- package/components/SVGIcons/IconComment.js +1 -32
- package/components/SVGIcons/IconCommentFilled.d.ts +2 -2
- package/components/SVGIcons/IconCommentFilled.js +1 -32
- package/components/SVGIcons/IconContractCard.d.ts +2 -2
- package/components/SVGIcons/IconContractCard.js +1 -29
- package/components/SVGIcons/IconContractCardFilled.d.ts +2 -2
- package/components/SVGIcons/IconContractCardFilled.js +1 -29
- package/components/SVGIcons/IconCopy.d.ts +2 -2
- package/components/SVGIcons/IconCopy.js +1 -29
- package/components/SVGIcons/IconCopyFilled.d.ts +2 -2
- package/components/SVGIcons/IconCopyFilled.js +1 -29
- package/components/SVGIcons/IconCubeTree.d.ts +2 -2
- package/components/SVGIcons/IconCubeTree.js +1 -29
- package/components/SVGIcons/IconCubeTreeFilled.d.ts +2 -2
- package/components/SVGIcons/IconCubeTreeFilled.js +1 -32
- package/components/SVGIcons/IconDatabase.d.ts +2 -2
- package/components/SVGIcons/IconDatabase.js +1 -32
- package/components/SVGIcons/IconDatabaseFilled.d.ts +2 -2
- package/components/SVGIcons/IconDatabaseFilled.js +1 -32
- package/components/SVGIcons/IconDelete.d.ts +2 -2
- package/components/SVGIcons/IconDelete.js +1 -29
- package/components/SVGIcons/IconDeleteFilled.d.ts +2 -2
- package/components/SVGIcons/IconDeleteFilled.js +1 -29
- package/components/SVGIcons/IconDeviceMeetingRoom.d.ts +2 -2
- package/components/SVGIcons/IconDeviceMeetingRoom.js +1 -29
- package/components/SVGIcons/IconDeviceMeetingRoomFilled.d.ts +2 -2
- package/components/SVGIcons/IconDeviceMeetingRoomFilled.js +1 -29
- package/components/SVGIcons/IconDismiss.d.ts +2 -2
- package/components/SVGIcons/IconDismiss.js +1 -29
- package/components/SVGIcons/IconDismissCircle.d.ts +2 -2
- package/components/SVGIcons/IconDismissCircle.js +1 -32
- package/components/SVGIcons/IconDismissCircleFilled.d.ts +2 -2
- package/components/SVGIcons/IconDismissCircleFilled.js +1 -32
- package/components/SVGIcons/IconDismissFilled.d.ts +2 -2
- package/components/SVGIcons/IconDismissFilled.js +1 -29
- package/components/SVGIcons/IconDocument.d.ts +2 -2
- package/components/SVGIcons/IconDocument.js +1 -29
- package/components/SVGIcons/IconDocumentBulletList.d.ts +2 -2
- package/components/SVGIcons/IconDocumentBulletList.js +1 -32
- package/components/SVGIcons/IconDocumentBulletListFilled.d.ts +2 -2
- package/components/SVGIcons/IconDocumentBulletListFilled.js +1 -32
- package/components/SVGIcons/IconDocumentEdit.d.ts +2 -2
- package/components/SVGIcons/IconDocumentEdit.js +1 -29
- package/components/SVGIcons/IconDocumentEditFilled.d.ts +2 -2
- package/components/SVGIcons/IconDocumentEditFilled.js +1 -29
- package/components/SVGIcons/IconDocumentFilled.d.ts +2 -2
- package/components/SVGIcons/IconDocumentFilled.js +1 -29
- package/components/SVGIcons/IconDocumentPerson.d.ts +2 -2
- package/components/SVGIcons/IconDocumentPerson.js +1 -29
- package/components/SVGIcons/IconEdit.d.ts +2 -2
- package/components/SVGIcons/IconEdit.js +1 -29
- package/components/SVGIcons/IconEditFilled.d.ts +2 -2
- package/components/SVGIcons/IconEditFilled.js +1 -29
- package/components/SVGIcons/IconErrorCircle.d.ts +2 -2
- package/components/SVGIcons/IconErrorCircle.js +1 -29
- package/components/SVGIcons/IconErrorCircleFilled.d.ts +2 -2
- package/components/SVGIcons/IconErrorCircleFilled.js +1 -29
- package/components/SVGIcons/IconEur.d.ts +2 -2
- package/components/SVGIcons/IconEur.js +1 -29
- package/components/SVGIcons/IconEurFilled.d.ts +2 -2
- package/components/SVGIcons/IconEurFilled.js +1 -29
- package/components/SVGIcons/IconExpandUpLeft.d.ts +2 -2
- package/components/SVGIcons/IconExpandUpLeft.js +1 -32
- package/components/SVGIcons/IconExpandUpLeftFilled.d.ts +2 -2
- package/components/SVGIcons/IconExpandUpLeftFilled.js +1 -32
- package/components/SVGIcons/IconExpandUpRight.d.ts +2 -2
- package/components/SVGIcons/IconExpandUpRight.js +1 -32
- package/components/SVGIcons/IconExpandUpRightFilled.d.ts +2 -2
- package/components/SVGIcons/IconExpandUpRightFilled.js +1 -32
- package/components/SVGIcons/IconEyeOff.d.ts +2 -2
- package/components/SVGIcons/IconEyeOff.js +1 -32
- package/components/SVGIcons/IconEyeOffFilled.d.ts +2 -2
- package/components/SVGIcons/IconEyeOffFilled.js +1 -32
- package/components/SVGIcons/IconEyeOn.d.ts +2 -2
- package/components/SVGIcons/IconEyeOn.js +1 -32
- package/components/SVGIcons/IconEyeOnFilled.d.ts +2 -2
- package/components/SVGIcons/IconEyeOnFilled.js +1 -32
- package/components/SVGIcons/IconFacebook.d.ts +2 -2
- package/components/SVGIcons/IconFacebook.js +3 -39
- package/components/SVGIcons/IconFastAcceleration.d.ts +4 -0
- package/components/SVGIcons/IconFastAcceleration.js +1 -0
- package/components/SVGIcons/IconFastAccelerationFilled.d.ts +4 -0
- package/components/SVGIcons/IconFastAccelerationFilled.js +1 -0
- package/components/SVGIcons/IconFeed.d.ts +4 -0
- package/components/SVGIcons/IconFeed.js +1 -0
- package/components/SVGIcons/IconFeedFilled.d.ts +4 -0
- package/components/SVGIcons/IconFeedFilled.js +1 -0
- package/components/SVGIcons/IconFilter.d.ts +2 -2
- package/components/SVGIcons/IconFilter.js +1 -29
- package/components/SVGIcons/IconFilterFilled.d.ts +2 -2
- package/components/SVGIcons/IconFilterFilled.js +1 -29
- package/components/SVGIcons/IconFlag.d.ts +2 -2
- package/components/SVGIcons/IconFlag.js +1 -32
- package/components/SVGIcons/IconFlagFilled.d.ts +2 -2
- package/components/SVGIcons/IconFlagFilled.js +1 -32
- package/components/SVGIcons/IconFolderLink.d.ts +2 -2
- package/components/SVGIcons/IconFolderLink.js +1 -29
- package/components/SVGIcons/IconFolderLinkFilled.d.ts +2 -2
- package/components/SVGIcons/IconFolderLinkFilled.js +1 -29
- package/components/SVGIcons/IconFood.d.ts +2 -2
- package/components/SVGIcons/IconFood.js +1 -29
- package/components/SVGIcons/IconFoodFilled.d.ts +2 -2
- package/components/SVGIcons/IconFoodFilled.js +1 -29
- package/components/SVGIcons/IconGb.d.ts +2 -2
- package/components/SVGIcons/IconGb.js +11 -72
- package/components/SVGIcons/IconGlobe.d.ts +2 -2
- package/components/SVGIcons/IconGlobe.js +1 -29
- package/components/SVGIcons/IconGlobeFilled.d.ts +2 -2
- package/components/SVGIcons/IconGlobeFilled.js +1 -29
- package/components/SVGIcons/IconGoogle.d.ts +2 -2
- package/components/SVGIcons/IconGoogle.js +3 -41
- package/components/SVGIcons/IconHandOpenHeart.d.ts +2 -2
- package/components/SVGIcons/IconHandOpenHeart.js +1 -32
- package/components/SVGIcons/IconHandOpenHeartFilled.d.ts +2 -2
- package/components/SVGIcons/IconHandOpenHeartFilled.js +1 -32
- package/components/SVGIcons/IconHeart.d.ts +2 -2
- package/components/SVGIcons/IconHeart.js +1 -32
- package/components/SVGIcons/IconHeartFilled.d.ts +2 -2
- package/components/SVGIcons/IconHeartFilled.js +1 -32
- package/components/SVGIcons/IconHistory.d.ts +2 -2
- package/components/SVGIcons/IconHistory.js +1 -32
- package/components/SVGIcons/IconHistoryFilled.d.ts +2 -2
- package/components/SVGIcons/IconHistoryFilled.js +1 -32
- package/components/SVGIcons/IconHome.d.ts +2 -2
- package/components/SVGIcons/IconHome.js +1 -32
- package/components/SVGIcons/IconHomeFilled.d.ts +2 -2
- package/components/SVGIcons/IconHomeFilled.js +1 -32
- package/components/SVGIcons/IconImage.d.ts +2 -2
- package/components/SVGIcons/IconImage.js +1 -32
- package/components/SVGIcons/IconImageFilled.d.ts +2 -2
- package/components/SVGIcons/IconImageFilled.js +1 -32
- package/components/SVGIcons/IconInfo.d.ts +2 -2
- package/components/SVGIcons/IconInfo.js +1 -29
- package/components/SVGIcons/IconInfoFilled.d.ts +2 -2
- package/components/SVGIcons/IconInfoFilled.js +1 -29
- package/components/SVGIcons/IconInstagram.d.ts +2 -2
- package/components/SVGIcons/IconInstagram.js +4 -40
- package/components/SVGIcons/IconKeyReset.d.ts +2 -2
- package/components/SVGIcons/IconKeyReset.js +1 -32
- package/components/SVGIcons/IconKeyResetFilled.d.ts +2 -2
- package/components/SVGIcons/IconKeyResetFilled.js +1 -32
- package/components/SVGIcons/IconLibrary.d.ts +4 -0
- package/components/SVGIcons/IconLibrary.js +1 -0
- package/components/SVGIcons/IconLibraryFilled.d.ts +4 -0
- package/components/SVGIcons/IconLibraryFilled.js +1 -0
- package/components/SVGIcons/IconLink.d.ts +2 -2
- package/components/SVGIcons/IconLink.js +1 -32
- package/components/SVGIcons/IconLinkFilled.d.ts +2 -2
- package/components/SVGIcons/IconLinkFilled.js +1 -32
- package/components/SVGIcons/IconLinkedin.d.ts +2 -2
- package/components/SVGIcons/IconLinkedin.js +1 -32
- package/components/SVGIcons/IconList.d.ts +2 -2
- package/components/SVGIcons/IconList.js +1 -29
- package/components/SVGIcons/IconListFilled.d.ts +2 -2
- package/components/SVGIcons/IconListFilled.js +1 -32
- package/components/SVGIcons/IconLocation.d.ts +2 -2
- package/components/SVGIcons/IconLocation.js +1 -32
- package/components/SVGIcons/IconLocationFilled.d.ts +2 -2
- package/components/SVGIcons/IconLocationFilled.js +1 -32
- package/components/SVGIcons/IconLockClosed.d.ts +2 -2
- package/components/SVGIcons/IconLockClosed.js +1 -32
- package/components/SVGIcons/IconLockClosedFilled.d.ts +2 -2
- package/components/SVGIcons/IconLockClosedFilled.js +1 -32
- package/components/SVGIcons/IconLockOpen.d.ts +2 -2
- package/components/SVGIcons/IconLockOpen.js +1 -32
- package/components/SVGIcons/IconLockOpenFilled.d.ts +2 -2
- package/components/SVGIcons/IconLockOpenFilled.js +1 -32
- package/components/SVGIcons/IconMail.d.ts +2 -2
- package/components/SVGIcons/IconMail.js +1 -32
- package/components/SVGIcons/IconMailAdd.d.ts +2 -2
- package/components/SVGIcons/IconMailAdd.js +1 -32
- package/components/SVGIcons/IconMailAddFilled.d.ts +2 -2
- package/components/SVGIcons/IconMailAddFilled.js +1 -32
- package/components/SVGIcons/IconMailArrowForward.d.ts +2 -2
- package/components/SVGIcons/IconMailArrowForward.js +1 -32
- package/components/SVGIcons/IconMailArrowForwardFilled.d.ts +2 -2
- package/components/SVGIcons/IconMailArrowForwardFilled.js +1 -32
- package/components/SVGIcons/IconMailFilled.d.ts +2 -2
- package/components/SVGIcons/IconMailFilled.js +1 -32
- package/components/SVGIcons/IconMailLink.d.ts +2 -2
- package/components/SVGIcons/IconMailLink.js +1 -32
- package/components/SVGIcons/IconMailLinkFilled.d.ts +2 -2
- package/components/SVGIcons/IconMailLinkFilled.js +1 -32
- package/components/SVGIcons/IconMedium.d.ts +2 -2
- package/components/SVGIcons/IconMedium.js +1 -32
- package/components/SVGIcons/IconMoon.d.ts +4 -0
- package/components/SVGIcons/IconMoon.js +1 -0
- package/components/SVGIcons/IconMore.d.ts +2 -2
- package/components/SVGIcons/IconMore.js +1 -32
- package/components/SVGIcons/IconMoreFilled.d.ts +2 -2
- package/components/SVGIcons/IconMoreFilled.js +1 -32
- package/components/SVGIcons/IconMoreVertical.d.ts +2 -2
- package/components/SVGIcons/IconMoreVertical.js +1 -32
- package/components/SVGIcons/IconMoreVerticalFilled.d.ts +2 -2
- package/components/SVGIcons/IconMoreVerticalFilled.js +1 -32
- package/components/SVGIcons/IconNavigation.d.ts +2 -2
- package/components/SVGIcons/IconNavigation.js +1 -32
- package/components/SVGIcons/IconNavigationFilled.d.ts +2 -2
- package/components/SVGIcons/IconNavigationFilled.js +1 -32
- package/components/SVGIcons/IconNotebook.d.ts +2 -2
- package/components/SVGIcons/IconNotebook.js +1 -32
- package/components/SVGIcons/IconNotebookAdd.d.ts +2 -2
- package/components/SVGIcons/IconNotebookAdd.js +7 -48
- package/components/SVGIcons/IconNotebookAddFilled.d.ts +2 -2
- package/components/SVGIcons/IconNotebookAddFilled.js +6 -45
- package/components/SVGIcons/IconNotebookFilled.d.ts +2 -2
- package/components/SVGIcons/IconNotebookFilled.js +1 -32
- package/components/SVGIcons/IconOnlyEmployee.d.ts +2 -2
- package/components/SVGIcons/IconOnlyEmployee.js +1 -29
- package/components/SVGIcons/IconOpen.d.ts +2 -2
- package/components/SVGIcons/IconOpen.js +1 -32
- package/components/SVGIcons/IconOpenFilled.d.ts +2 -2
- package/components/SVGIcons/IconOpenFilled.js +1 -32
- package/components/SVGIcons/IconPatient.d.ts +2 -2
- package/components/SVGIcons/IconPatient.js +1 -29
- package/components/SVGIcons/IconPatientFilled.d.ts +2 -2
- package/components/SVGIcons/IconPatientFilled.js +1 -29
- package/components/SVGIcons/IconPeople.d.ts +2 -2
- package/components/SVGIcons/IconPeople.js +1 -29
- package/components/SVGIcons/IconPeopleAdd.d.ts +2 -2
- package/components/SVGIcons/IconPeopleAdd.js +1 -32
- package/components/SVGIcons/IconPeopleAddFilled.d.ts +2 -2
- package/components/SVGIcons/IconPeopleAddFilled.js +1 -32
- package/components/SVGIcons/IconPeopleFilled.d.ts +2 -2
- package/components/SVGIcons/IconPeopleFilled.js +1 -32
- package/components/SVGIcons/IconPeopleList.d.ts +4 -0
- package/components/SVGIcons/IconPeopleList.js +1 -0
- package/components/SVGIcons/IconPeopleListFilled.d.ts +4 -0
- package/components/SVGIcons/IconPeopleListFilled.js +1 -0
- package/components/SVGIcons/IconPeopleTeam.d.ts +4 -0
- package/components/SVGIcons/IconPeopleTeam.js +1 -0
- package/components/SVGIcons/IconPeopleTeamFilled.d.ts +4 -0
- package/components/SVGIcons/IconPeopleTeamFilled.js +1 -0
- package/components/SVGIcons/IconPercent.d.ts +2 -2
- package/components/SVGIcons/IconPercent.js +1 -34
- package/components/SVGIcons/IconPerson.d.ts +2 -2
- package/components/SVGIcons/IconPerson.js +1 -32
- package/components/SVGIcons/IconPersonAccount.d.ts +2 -2
- package/components/SVGIcons/IconPersonAccount.js +1 -29
- package/components/SVGIcons/IconPersonAccountFilled.d.ts +2 -2
- package/components/SVGIcons/IconPersonAccountFilled.js +1 -29
- package/components/SVGIcons/IconPersonAdd.d.ts +2 -2
- package/components/SVGIcons/IconPersonAdd.js +1 -32
- package/components/SVGIcons/IconPersonAddFilled.d.ts +2 -2
- package/components/SVGIcons/IconPersonAddFilled.js +1 -32
- package/components/SVGIcons/IconPersonArrowLeft.d.ts +2 -2
- package/components/SVGIcons/IconPersonArrowLeft.js +1 -29
- package/components/SVGIcons/IconPersonArrowLeftFilled.d.ts +2 -2
- package/components/SVGIcons/IconPersonArrowLeftFilled.js +1 -29
- package/components/SVGIcons/IconPersonArrowRight.d.ts +2 -2
- package/components/SVGIcons/IconPersonArrowRight.js +1 -29
- package/components/SVGIcons/IconPersonArrowRightFilled.d.ts +2 -2
- package/components/SVGIcons/IconPersonArrowRightFilled.js +1 -29
- package/components/SVGIcons/IconPersonBoard.d.ts +2 -2
- package/components/SVGIcons/IconPersonBoard.js +1 -29
- package/components/SVGIcons/IconPersonFilled.d.ts +2 -2
- package/components/SVGIcons/IconPersonFilled.js +1 -32
- package/components/SVGIcons/IconPersonMinus.d.ts +2 -2
- package/components/SVGIcons/IconPersonMinus.js +1 -29
- package/components/SVGIcons/IconPersonStar.d.ts +2 -2
- package/components/SVGIcons/IconPersonStar.js +1 -32
- package/components/SVGIcons/IconPersonStarFilled.d.ts +2 -2
- package/components/SVGIcons/IconPersonStarFilled.js +1 -32
- package/components/SVGIcons/IconPersonSubtract.d.ts +2 -2
- package/components/SVGIcons/IconPersonSubtract.js +1 -32
- package/components/SVGIcons/IconPersonSubtractFilled.d.ts +2 -2
- package/components/SVGIcons/IconPersonSubtractFilled.js +1 -32
- package/components/SVGIcons/IconPhone.d.ts +2 -2
- package/components/SVGIcons/IconPhone.js +1 -32
- package/components/SVGIcons/IconPhoneFilled.d.ts +2 -2
- package/components/SVGIcons/IconPhoneFilled.js +1 -32
- package/components/SVGIcons/IconPlugConnected.d.ts +2 -2
- package/components/SVGIcons/IconPlugConnected.js +1 -29
- package/components/SVGIcons/IconPos.d.ts +2 -2
- package/components/SVGIcons/IconPos.js +1 -34
- package/components/SVGIcons/IconPosFilled.d.ts +2 -2
- package/components/SVGIcons/IconPosFilled.js +1 -34
- package/components/SVGIcons/IconProhibited.d.ts +2 -2
- package/components/SVGIcons/IconProhibited.js +1 -32
- package/components/SVGIcons/IconProhibitedFilled.d.ts +2 -2
- package/components/SVGIcons/IconProhibitedFilled.js +1 -32
- package/components/SVGIcons/IconProjectProduct.d.ts +2 -2
- package/components/SVGIcons/IconProjectProduct.js +1 -29
- package/components/SVGIcons/IconQuestion.d.ts +2 -2
- package/components/SVGIcons/IconQuestion.js +1 -32
- package/components/SVGIcons/IconQuestionFilled.d.ts +2 -2
- package/components/SVGIcons/IconQuestionFilled.js +1 -32
- package/components/SVGIcons/IconRedo.d.ts +2 -2
- package/components/SVGIcons/IconRedo.js +1 -32
- package/components/SVGIcons/IconRedoFilled.d.ts +2 -2
- package/components/SVGIcons/IconRedoFilled.js +1 -32
- package/components/SVGIcons/IconRibbon.d.ts +4 -0
- package/components/SVGIcons/IconRibbon.js +1 -0
- package/components/SVGIcons/IconRu.d.ts +2 -2
- package/components/SVGIcons/IconRu.js +6 -61
- package/components/SVGIcons/IconRub.d.ts +2 -2
- package/components/SVGIcons/IconRub.js +1 -29
- package/components/SVGIcons/IconRubFilled.d.ts +2 -2
- package/components/SVGIcons/IconRubFilled.js +1 -29
- package/components/SVGIcons/IconSave.d.ts +2 -2
- package/components/SVGIcons/IconSave.js +1 -32
- package/components/SVGIcons/IconSaveFilled.d.ts +2 -2
- package/components/SVGIcons/IconSaveFilled.js +1 -32
- package/components/SVGIcons/IconSavings.d.ts +2 -2
- package/components/SVGIcons/IconSavings.js +1 -32
- package/components/SVGIcons/IconSavingsFilled.d.ts +2 -2
- package/components/SVGIcons/IconSavingsFilled.js +1 -32
- package/components/SVGIcons/IconSearch.d.ts +2 -2
- package/components/SVGIcons/IconSearch.js +1 -32
- package/components/SVGIcons/IconSearchFilled.d.ts +2 -2
- package/components/SVGIcons/IconSearchFilled.js +1 -32
- package/components/SVGIcons/IconSelectAllOff.d.ts +2 -2
- package/components/SVGIcons/IconSelectAllOff.js +1 -32
- package/components/SVGIcons/IconSelectAllOffFilled.d.ts +2 -2
- package/components/SVGIcons/IconSelectAllOffFilled.js +1 -32
- package/components/SVGIcons/IconSelectAllOn.d.ts +2 -2
- package/components/SVGIcons/IconSelectAllOn.js +1 -32
- package/components/SVGIcons/IconSelectAllOnFilled.d.ts +2 -2
- package/components/SVGIcons/IconSelectAllOnFilled.js +1 -32
- package/components/SVGIcons/IconSend.d.ts +2 -2
- package/components/SVGIcons/IconSend.js +1 -32
- package/components/SVGIcons/IconSendFilled.d.ts +2 -2
- package/components/SVGIcons/IconSendFilled.js +1 -32
- package/components/SVGIcons/IconSettings.d.ts +2 -2
- package/components/SVGIcons/IconSettings.js +1 -29
- package/components/SVGIcons/IconSettingsFilled.d.ts +2 -2
- package/components/SVGIcons/IconSettingsFilled.js +1 -32
- package/components/SVGIcons/IconShare.d.ts +2 -2
- package/components/SVGIcons/IconShare.js +1 -32
- package/components/SVGIcons/IconShareAndroid.d.ts +2 -2
- package/components/SVGIcons/IconShareAndroid.js +1 -32
- package/components/SVGIcons/IconShareAndroidFilled.d.ts +2 -2
- package/components/SVGIcons/IconShareAndroidFilled.js +1 -32
- package/components/SVGIcons/IconShareFilled.d.ts +2 -2
- package/components/SVGIcons/IconShareFilled.js +1 -32
- package/components/SVGIcons/IconSignOut.d.ts +2 -2
- package/components/SVGIcons/IconSignOut.js +1 -32
- package/components/SVGIcons/IconSignOutFilled.d.ts +2 -2
- package/components/SVGIcons/IconSignOutFilled.js +1 -32
- package/components/SVGIcons/IconSpinner.d.ts +2 -2
- package/components/SVGIcons/IconSpinner.js +1 -32
- package/components/SVGIcons/IconSpinnerFilled.d.ts +2 -2
- package/components/SVGIcons/IconSpinnerFilled.js +1 -32
- package/components/SVGIcons/IconStatus.d.ts +2 -2
- package/components/SVGIcons/IconStatus.js +1 -32
- package/components/SVGIcons/IconStatusFilled.d.ts +2 -2
- package/components/SVGIcons/IconStatusFilled.js +1 -32
- package/components/SVGIcons/IconSubtract.d.ts +2 -2
- package/components/SVGIcons/IconSubtract.js +1 -32
- package/components/SVGIcons/IconSubtractCircle.d.ts +2 -2
- package/components/SVGIcons/IconSubtractCircle.js +1 -32
- package/components/SVGIcons/IconSubtractCircleFilled.d.ts +2 -2
- package/components/SVGIcons/IconSubtractCircleFilled.js +1 -32
- package/components/SVGIcons/IconSubtractFilled.d.ts +2 -2
- package/components/SVGIcons/IconSubtractFilled.js +1 -32
- package/components/SVGIcons/IconSun.d.ts +4 -0
- package/components/SVGIcons/IconSun.js +10 -0
- package/components/SVGIcons/IconTableCellEdit.d.ts +2 -2
- package/components/SVGIcons/IconTableCellEdit.js +3 -36
- package/components/SVGIcons/IconTableCellEditFilled.d.ts +2 -2
- package/components/SVGIcons/IconTableCellEditFilled.js +5 -42
- package/components/SVGIcons/IconTelegram.d.ts +2 -2
- package/components/SVGIcons/IconTelegram.js +3 -41
- package/components/SVGIcons/IconTimer.d.ts +2 -2
- package/components/SVGIcons/IconTimer.js +1 -32
- package/components/SVGIcons/IconTimerFilled.d.ts +2 -2
- package/components/SVGIcons/IconTimerFilled.js +1 -32
- package/components/SVGIcons/IconTrophy.d.ts +4 -0
- package/components/SVGIcons/IconTrophy.js +1 -0
- package/components/SVGIcons/IconTrophyFilled.d.ts +4 -0
- package/components/SVGIcons/IconTrophyFilled.js +1 -0
- package/components/SVGIcons/IconTwitter.d.ts +2 -2
- package/components/SVGIcons/IconTwitter.js +1 -32
- package/components/SVGIcons/IconUndo.d.ts +2 -2
- package/components/SVGIcons/IconUndo.js +1 -32
- package/components/SVGIcons/IconUndoFilled.d.ts +2 -2
- package/components/SVGIcons/IconUndoFilled.js +1 -32
- package/components/SVGIcons/IconUnitsEmployee.d.ts +2 -2
- package/components/SVGIcons/IconUnitsEmployee.js +1 -29
- package/components/SVGIcons/IconUpload.d.ts +2 -2
- package/components/SVGIcons/IconUpload.js +1 -29
- package/components/SVGIcons/IconUs.d.ts +4 -0
- package/components/SVGIcons/IconUs.js +11 -0
- package/components/SVGIcons/IconUsd.d.ts +2 -2
- package/components/SVGIcons/IconUsd.js +1 -29
- package/components/SVGIcons/IconUsdFilled.d.ts +2 -2
- package/components/SVGIcons/IconUsdFilled.js +1 -29
- package/components/SVGIcons/IconUserMinus.d.ts +2 -2
- package/components/SVGIcons/IconUserMinus.js +1 -32
- package/components/SVGIcons/IconVideo.d.ts +2 -2
- package/components/SVGIcons/IconVideo.js +1 -29
- package/components/SVGIcons/IconVideoFilled.d.ts +2 -2
- package/components/SVGIcons/IconVideoFilled.js +1 -29
- package/components/SVGIcons/IconWallet.d.ts +2 -2
- package/components/SVGIcons/IconWallet.js +1 -32
- package/components/SVGIcons/IconWalletFilled.d.ts +2 -2
- package/components/SVGIcons/IconWalletFilled.js +1 -32
- package/components/SVGIcons/IconWarning.d.ts +2 -2
- package/components/SVGIcons/IconWarning.js +1 -29
- package/components/SVGIcons/IconWarningFilled.d.ts +2 -2
- package/components/SVGIcons/IconWarningFilled.js +1 -29
- package/components/SVGIcons/IconYoutube.d.ts +2 -2
- package/components/SVGIcons/IconYoutube.js +1 -32
- package/components/Select/ButtonSelect/ButtonSelect.js +3 -198
- package/components/Select/FilterSelect/FilterDropdown.js +3 -96
- package/components/Select/FilterSelect/FilterGroupDropdown.js +4 -83
- package/components/Select/FilterSelect/FilterSelect.js +4 -202
- package/components/Select/MultiSelect/DesktopWrapper.js +1 -56
- package/components/Select/MultiSelect/MobileWrapper.js +2 -78
- package/components/Select/MultiSelect/MultiBase/MultiBase.js +5 -214
- package/components/Select/MultiSelect/MultiSelect.js +3 -246
- package/components/Select/MultiSelect/MultiSelectGrouped/MultiSelectGrouped.js +7 -268
- package/components/Select/MultiSelect/MultiSelectWithTabs/MultiSelectWithTabs.js +7 -253
- package/components/Select/MultiSelect/OptionsWrapper.js +1 -177
- package/components/Select/NestedSelect/NestedSelect.js +4 -200
- package/components/Select/ProfileDropdown/index.js +10 -83
- package/components/Select/Select/Select.js +1 -257
- package/components/Select/Select/SelectDesktop/index.js +2 -223
- package/components/Select/Select/SelectMobile/MobileTopContent.js +2 -91
- package/components/Select/Select/SelectMobile/index.js +5 -196
- package/components/Select/Select/helpers.js +1 -10
- package/components/Select/SharedComponents/Actions.js +3 -116
- package/components/Select/SharedComponents/ButtonSelectWrapper/Button/Button.js +3 -44
- package/components/Select/SharedComponents/ButtonSelectWrapper/ButtonSelectWrapper.js +3 -132
- package/components/Select/SharedComponents/ContentTop.d.ts +1 -0
- package/components/Select/SharedComponents/ContentTop.js +3 -179
- package/components/Select/SharedComponents/Footer.js +6 -99
- package/components/Select/SharedComponents/InputSelectWrapper/InputSelectWrapper.js +3 -164
- package/components/Select/SharedComponents/Loading.js +2 -17
- package/components/Select/SharedComponents/index.js +1 -92
- package/components/Select/constants.js +1 -9
- package/components/Select/helper.d.ts +0 -0
- package/components/Select/helper.js +0 -0
- package/components/Select/index.js +1 -114
- package/components/Select/localization.js +1 -31
- package/components/Select/types.d.ts +9 -5
- package/components/Select/types.js +0 -1
- package/components/SideSheet/Footer/Footer.js +5 -101
- package/components/SideSheet/SideSheet.js +8 -211
- package/components/SideSheet/index.js +1 -56
- package/components/SideSheet/types.js +0 -1
- package/components/Snackbar/Snackbar.js +5 -126
- package/components/Snackbar/consts.d.ts +3 -4
- package/components/Snackbar/consts.js +1 -15
- package/components/Snackbar/index.js +1 -54
- package/components/Snackbar/types.js +0 -1
- package/components/Status/Status.js +4 -53
- package/components/Status/index.js +1 -8
- package/components/Status/types.d.ts +1 -1
- package/components/Status/types.js +0 -1
- package/components/Stepper/Stepper.js +2 -45
- package/components/Stepper/index.js +1 -3
- package/components/Stepper/types.js +0 -1
- package/components/Switcher/Switcher.js +5 -116
- package/components/Switcher/index.js +1 -55
- package/components/Switcher/types.d.ts +2 -0
- package/components/Switcher/types.js +0 -1
- package/components/Tab/Tab.js +2 -37
- package/components/Tab/TabItem.js +3 -54
- package/components/Tab/index.js +1 -11
- package/components/Tab/types.js +0 -1
- package/components/Table/Header.d.ts +2 -1
- package/components/Table/Header.js +4 -123
- package/components/Table/IndeterminateCheckbox.d.ts +1 -0
- package/components/Table/IndeterminateCheckbox.js +1 -78
- package/components/Table/Row.d.ts +2 -1
- package/components/Table/Row.js +3 -94
- package/components/Table/Table.d.ts +1 -1
- package/components/Table/Table.js +6 -163
- package/components/Table/index.js +1 -61
- package/components/Table/localization.d.ts +5 -0
- package/components/Table/localization.js +1 -0
- package/components/Table/types.d.ts +6 -0
- package/components/Table/types.js +0 -1
- package/components/Table/utils.js +3 -78
- package/components/TableV2/AdvancedPagination.d.ts +8 -0
- package/components/TableV2/AdvancedPagination.js +12 -0
- package/components/TableV2/ColumnHeader.d.ts +9 -0
- package/components/TableV2/ColumnHeader.js +6 -0
- package/components/TableV2/ColumnSettings.d.ts +9 -0
- package/components/TableV2/ColumnSettings.js +8 -0
- package/components/TableV2/IndeterminateCheckbox.d.ts +13 -0
- package/components/TableV2/IndeterminateCheckbox.js +2 -0
- package/components/TableV2/Table.d.ts +3 -0
- package/components/TableV2/Table.js +8 -0
- package/components/TableV2/constants/index.d.ts +6 -0
- package/components/TableV2/constants/index.js +1 -0
- package/components/TableV2/hooks/useTableColumnSettings.d.ts +2 -0
- package/components/TableV2/hooks/useTableColumnSettings.js +1 -0
- package/components/TableV2/hooks/useTableControl.d.ts +11 -0
- package/components/TableV2/hooks/useTableControl.js +1 -0
- package/components/TableV2/index.d.ts +3 -0
- package/components/TableV2/index.js +1 -0
- package/components/TableV2/loadTableSettings.d.ts +2 -0
- package/components/TableV2/loadTableSettings.js +1 -0
- package/components/TableV2/types.d.ts +70 -0
- package/components/TableV2/types.js +0 -0
- package/components/Text/Text.js +2 -36
- package/components/Text/index.js +1 -5
- package/components/Text/types.d.ts +1 -1
- package/components/Text/types.js +0 -1
- package/components/Textarea/Textarea.js +6 -144
- package/components/Textarea/index.js +1 -56
- package/components/Textarea/types.js +0 -1
- package/components/Tooltip/Tooltip.js +1 -103
- package/components/Tooltip/index.js +1 -18
- package/components/Tooltip/types.d.ts +0 -1
- package/components/Tooltip/types.js +1 -13
- package/components/UnderConstruction/UnderConstruction.d.ts +3 -0
- package/components/UnderConstruction/UnderConstruction.js +6 -0
- package/components/UnderConstruction/index.d.ts +1 -0
- package/components/UnderConstruction/index.js +1 -0
- package/components/UnderConstruction/localization.d.ts +4 -0
- package/components/UnderConstruction/localization.js +1 -0
- package/components/UnderConstruction/types.d.ts +12 -0
- package/components/UnderConstruction/types.js +0 -0
- package/consts/index.d.ts +18 -0
- package/consts/index.js +1 -67
- package/context/FormContextProvider.d.ts +3 -2
- package/context/FormContextProvider.js +1 -12
- package/context/index.js +1 -5
- package/context/types.js +1 -12
- package/helperComponents/AnimatePresenceWrapper/AnimatePresenceWrapper.js +2 -15
- package/helperComponents/AnimatePresenceWrapper/index.js +1 -3
- package/helperComponents/CodeBlock/CodeBlock.js +2 -178
- package/helperComponents/CodeBlock/index.js +1 -3
- package/helperComponents/ErrorMessage/ErrorMessage.js +3 -27
- package/helperComponents/ErrorMessage/consts.d.ts +3 -0
- package/helperComponents/ErrorMessage/consts.js +1 -0
- package/helperComponents/ErrorMessage/index.js +1 -8
- package/helperComponents/ErrorMessage/types.js +0 -1
- package/helperComponents/GoToWebPage/GoToWebPage.js +1 -67
- package/helperComponents/IconDynamicComponent/IconDynamicComponent.d.ts +6 -8
- package/helperComponents/IconDynamicComponent/IconDynamicComponent.js +1 -26
- package/helperComponents/IconDynamicComponent/index.js +1 -3
- package/helperComponents/Label/Label.js +1 -29
- package/helperComponents/Label/index.js +1 -6
- package/helperComponents/Label/types.js +0 -1
- package/helperComponents/Loader/Loader.js +2 -15
- package/helperComponents/Loader/index.js +1 -2
- package/helperComponents/Loader/types.js +0 -1
- package/helperComponents/OptionItem/OptionItem.js +5 -150
- package/helperComponents/OptionItem/index.js +1 -64
- package/helperComponents/OptionItem/types.js +0 -1
- package/helpers/check-authorization.js +1 -114
- package/helpers/download-file.js +1 -10
- package/helpers/format-date.js +1 -46
- package/helpers/get-module-prefix.js +1 -6
- package/helpers/index.d.ts +1 -0
- package/helpers/index.js +1 -59
- package/helpers/isDeepEqual.js +1 -18
- package/helpers/locale.js +1 -17
- package/helpers/logout.d.ts +1 -0
- package/helpers/logout.js +1 -0
- package/helpers/storage.js +1 -20
- package/hooks/index.js +1 -21
- package/hooks/useAnimation.d.ts +12 -0
- package/hooks/useAnimation.js +1 -0
- package/hooks/useChangePositionsOnScroll.js +1 -34
- package/hooks/useDispatchEventOnScroll.js +1 -14
- package/hooks/useEscapeKey.d.ts +5 -0
- package/hooks/useEscapeKey.js +1 -0
- package/hooks/useFieldArray.js +1 -1
- package/hooks/useFormContext.js +1 -10
- package/hooks/useFormProps.js +1 -10
- package/hooks/useGetElemPositions.js +1 -19
- package/hooks/useGetElemSizes.js +1 -16
- package/hooks/useGetHasBottomSpace.js +1 -26
- package/hooks/useGetIsMobile.js +1 -49
- package/hooks/useGetTooltipPosition.js +1 -85
- package/hooks/useGetTooltipStyles.js +1 -89
- package/hooks/useHideBodyScroll.js +1 -35
- package/hooks/useHideOnScroll.d.ts +1 -1
- package/hooks/useHideOnScroll.js +1 -26
- package/hooks/useOnOutsideClick.js +1 -52
- package/hooks/useScreenSize.js +1 -38
- package/package.json +16 -8
- package/type/file-upload.js +1 -8
- package/type/index.d.ts +1 -0
- package/type/index.js +1 -4
- package/type/locale.js +1 -14
- package/type/notification.js +1 -9
- package/type/status-code.js +1 -9
- package/type/svg-icons.js +0 -0
- package/utils/helpers.d.ts +1 -0
- package/utils/helpers.js +1 -89
- package/Alert-V_kH4Snn.js +0 -751
- package/assets/images/avatar.jpg +0 -0
- package/assets/styles/styles.scss +0 -1
- package/components/SVGIcons/index.d.ts +0 -300
- package/components/SVGIcons/index.js +0 -303
- package/components/SVGIcons/types.js +0 -1
- package/helperComponents/IconDynamicComponent/constants.d.ts +0 -3
- package/helperComponents/IconDynamicComponent/constants.js +0 -33
- package/helperComponents/index.d.ts +0 -6
- package/helperComponents/index.js +0 -65
- package/index.d.ts +0 -46
- package/index.js +0 -454
- package/types.d.js +0 -1
- /package/{components/SVGIcons/types.d.ts → type/svg-icons.d.ts} +0 -0
|
@@ -1,32 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
var IconPeopleAdd = function IconPeopleAdd(_ref) {
|
|
6
|
-
var size = _ref.size,
|
|
7
|
-
type = _ref.type,
|
|
8
|
-
_ref$className = _ref.className,
|
|
9
|
-
className = _ref$className === void 0 ? '' : _ref$className,
|
|
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.5 7C5.5 5.61929 6.61929 4.5 8 4.5C9.38071 4.5 10.5 5.61929 10.5 7C10.5 8.38071 9.38071 9.5 8 9.5C6.61929 9.5 5.5 8.38071 5.5 7ZM8 3C5.79086 3 4 4.79086 4 7C4 9.20914 5.79086 11 8 11C10.2091 11 12 9.20914 12 7C12 4.79086 10.2091 3 8 3ZM15.5 8C15.5 7.17157 16.1716 6.5 17 6.5C17.8284 6.5 18.5 7.17157 18.5 8C18.5 8.82843 17.8284 9.5 17 9.5C16.1716 9.5 15.5 8.82843 15.5 8ZM17 5C15.3431 5 14 6.34315 14 8C14 9.65685 15.3431 11 17 11C18.6569 11 20 9.65685 20 8C20 6.34315 18.6569 5 17 5ZM4.25 13C3.00736 13 2 14.0074 2 15.25V15.5011L2 15.5022L2.00001 15.5048L2.00007 15.5111L2.00035 15.5277C2.00064 15.5406 2.00117 15.5571 2.0021 15.5771C2.00396 15.6169 2.00745 15.6705 2.01398 15.7358C2.02701 15.8661 2.05233 16.045 2.10165 16.2564C2.19995 16.6776 2.39654 17.2404 2.79183 17.8051C3.61066 18.9749 5.17178 20 8 20C9.36897 20 10.4411 19.7598 11.2758 19.3793C11.1268 18.8851 11.035 18.366 11.0082 17.8299C10.3633 18.2108 9.41267 18.5 8 18.5C5.57822 18.5 4.51434 17.6501 4.02067 16.9449C3.75971 16.5721 3.62818 16.1974 3.56241 15.9155C3.5297 15.7753 3.514 15.6612 3.50653 15.5865C3.50281 15.5493 3.50117 15.5222 3.50047 15.5072L3.5 15.4947V15.25C3.5 14.8358 3.83579 14.5 4.25 14.5H11.7322C11.9807 14.0233 12.2865 13.5813 12.6405 13.1831C12.3674 13.0653 12.0663 13 11.75 13H4.25ZM23 17.5C23 14.4624 20.5376 12 17.5 12C14.4624 12 12 14.4624 12 17.5C12 20.5376 14.4624 23 17.5 23C20.5376 23 23 20.5376 23 17.5ZM18.0006 18L18.0011 20.5035C18.0011 20.7797 17.7773 21.0035 17.5011 21.0035C17.225 21.0035 17.0011 20.7797 17.0011 20.5035L17.0006 18H14.4956C14.2197 18 13.9961 17.7762 13.9961 17.5C13.9961 17.2239 14.2197 17 14.4956 17H17.0005L17 14.4993C17 14.2231 17.2239 13.9993 17.5 13.9993C17.7761 13.9993 18 14.2231 18 14.4993L18.0005 17H20.4966C20.7725 17 20.9961 17.2239 20.9961 17.5C20.9961 17.7762 20.7725 18 20.4966 18H18.0006Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconPeopleAdd, IconPeopleAdd as default };
|
|
1
|
+
import{jsx as C}from"react/jsx-runtime";import g from"classnames";const d=({size:e,type:i,className:s="",onClick:a,refHandler:d,id:n,dataId:o})=>/* @__PURE__ */C("svg",{xmlns:"http://www.w3.org/2000/svg",className:g("svg-icon",{[`svg-icon__size-${e}`]:e,[`svg-icon__type-${i}`]:i,[s]:s}),viewBox:"0 0 24 24",fill:"none",onClick:a,ref:d,id:n,"data-id":o?`${o}-svg-icon`:"",children:/* @__PURE__ */C("g",{id:"Size=24, Theme=Regular",children:/* @__PURE__ */C("path",{id:"Shape",d:"M5.5 7C5.5 5.61929 6.61929 4.5 8 4.5C9.38071 4.5 10.5 5.61929 10.5 7C10.5 8.38071 9.38071 9.5 8 9.5C6.61929 9.5 5.5 8.38071 5.5 7ZM8 3C5.79086 3 4 4.79086 4 7C4 9.20914 5.79086 11 8 11C10.2091 11 12 9.20914 12 7C12 4.79086 10.2091 3 8 3ZM15.5 8C15.5 7.17157 16.1716 6.5 17 6.5C17.8284 6.5 18.5 7.17157 18.5 8C18.5 8.82843 17.8284 9.5 17 9.5C16.1716 9.5 15.5 8.82843 15.5 8ZM17 5C15.3431 5 14 6.34315 14 8C14 9.65685 15.3431 11 17 11C18.6569 11 20 9.65685 20 8C20 6.34315 18.6569 5 17 5ZM4.25 13C3.00736 13 2 14.0074 2 15.25V15.5011L2 15.5022L2.00001 15.5048L2.00007 15.5111L2.00035 15.5277C2.00064 15.5406 2.00117 15.5571 2.0021 15.5771C2.00396 15.6169 2.00745 15.6705 2.01398 15.7358C2.02701 15.8661 2.05233 16.045 2.10165 16.2564C2.19995 16.6776 2.39654 17.2404 2.79183 17.8051C3.61066 18.9749 5.17178 20 8 20C9.36897 20 10.4411 19.7598 11.2758 19.3793C11.1268 18.8851 11.035 18.366 11.0082 17.8299C10.3633 18.2108 9.41267 18.5 8 18.5C5.57822 18.5 4.51434 17.6501 4.02067 16.9449C3.75971 16.5721 3.62818 16.1974 3.56241 15.9155C3.5297 15.7753 3.514 15.6612 3.50653 15.5865C3.50281 15.5493 3.50117 15.5222 3.50047 15.5072L3.5 15.4947V15.25C3.5 14.8358 3.83579 14.5 4.25 14.5H11.7322C11.9807 14.0233 12.2865 13.5813 12.6405 13.1831C12.3674 13.0653 12.0663 13 11.75 13H4.25ZM23 17.5C23 14.4624 20.5376 12 17.5 12C14.4624 12 12 14.4624 12 17.5C12 20.5376 14.4624 23 17.5 23C20.5376 23 23 20.5376 23 17.5ZM18.0006 18L18.0011 20.5035C18.0011 20.7797 17.7773 21.0035 17.5011 21.0035C17.225 21.0035 17.0011 20.7797 17.0011 20.5035L17.0006 18H14.4956C14.2197 18 13.9961 17.7762 13.9961 17.5C13.9961 17.2239 14.2197 17 14.4956 17H17.0005L17 14.4993C17 14.2231 17.2239 13.9993 17.5 13.9993C17.7761 13.9993 18 14.2231 18 14.4993L18.0005 17H20.4966C20.7725 17 20.9961 17.2239 20.9961 17.5C20.9961 17.7762 20.7725 18 20.4966 18H18.0006Z"})})});export{d as default};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ReactElement } from 'react';
|
|
2
|
-
import { ISVGIconProps } from '
|
|
3
|
-
|
|
2
|
+
import { ISVGIconProps } from '../../type';
|
|
3
|
+
declare const IconPeopleAddFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
|
|
4
4
|
export default IconPeopleAddFilled;
|
|
@@ -1,32 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
var IconPeopleAddFilled = function IconPeopleAddFilled(_ref) {
|
|
6
|
-
var size = _ref.size,
|
|
7
|
-
type = _ref.type,
|
|
8
|
-
_ref$className = _ref.className,
|
|
9
|
-
className = _ref$className === void 0 ? '' : _ref$className,
|
|
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 11C10.2091 11 12 9.20914 12 7C12 4.79086 10.2091 3 8 3C5.79086 3 4 4.79086 4 7C4 9.20914 5.79086 11 8 11ZM17 11C18.6569 11 20 9.65685 20 8C20 6.34315 18.6569 5 17 5C15.3431 5 14 6.34315 14 8C14 9.65685 15.3431 11 17 11ZM4.25 13C3.00736 13 2 14.0074 2 15.25V15.5C2 15.5 2 20 8 20C9.38985 20 10.4578 19.7585 11.2783 19.3875C11.0973 18.7901 11 18.1564 11 17.5C11 15.8431 11.6199 14.3311 12.6405 13.1831C12.3674 13.0653 12.0663 13 11.75 13H4.25ZM23 17.5C23 14.4624 20.5376 12 17.5 12C14.4624 12 12 14.4624 12 17.5C12 20.5376 14.4624 23 17.5 23C20.5376 23 23 20.5376 23 17.5ZM18.0006 18L18.0011 20.5035C18.0011 20.7797 17.7773 21.0035 17.5011 21.0035C17.225 21.0035 17.0011 20.7797 17.0011 20.5035L17.0006 18H14.4956C14.2197 18 13.9961 17.7762 13.9961 17.5C13.9961 17.2239 14.2197 17 14.4956 17H17.0005L17 14.4993C17 14.2231 17.2239 13.9993 17.5 13.9993C17.7761 13.9993 18 14.2231 18 14.4993L18.0005 17H20.4966C20.7725 17 20.9961 17.2239 20.9961 17.5C20.9961 17.7762 20.7725 18 20.4966 18H18.0006Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconPeopleAddFilled, IconPeopleAddFilled as default };
|
|
1
|
+
import{jsx as C}from"react/jsx-runtime";import c from"classnames";const t=({size:e,type:i,className:s="",onClick:a,refHandler:t,id:n,dataId:o})=>/* @__PURE__ */C("svg",{xmlns:"http://www.w3.org/2000/svg",className:c("svg-icon",{[`svg-icon__size-${e}`]:e,[`svg-icon__type-${i}`]:i,[s]:s}),viewBox:"0 0 24 24",fill:"none",onClick:a,ref:t,id:n,"data-id":o?`${o}-svg-icon`:"",children:/* @__PURE__ */C("g",{id:"Size=24, Theme=Filled",children:/* @__PURE__ */C("path",{id:"Shape",d:"M8 11C10.2091 11 12 9.20914 12 7C12 4.79086 10.2091 3 8 3C5.79086 3 4 4.79086 4 7C4 9.20914 5.79086 11 8 11ZM17 11C18.6569 11 20 9.65685 20 8C20 6.34315 18.6569 5 17 5C15.3431 5 14 6.34315 14 8C14 9.65685 15.3431 11 17 11ZM4.25 13C3.00736 13 2 14.0074 2 15.25V15.5C2 15.5 2 20 8 20C9.38985 20 10.4578 19.7585 11.2783 19.3875C11.0973 18.7901 11 18.1564 11 17.5C11 15.8431 11.6199 14.3311 12.6405 13.1831C12.3674 13.0653 12.0663 13 11.75 13H4.25ZM23 17.5C23 14.4624 20.5376 12 17.5 12C14.4624 12 12 14.4624 12 17.5C12 20.5376 14.4624 23 17.5 23C20.5376 23 23 20.5376 23 17.5ZM18.0006 18L18.0011 20.5035C18.0011 20.7797 17.7773 21.0035 17.5011 21.0035C17.225 21.0035 17.0011 20.7797 17.0011 20.5035L17.0006 18H14.4956C14.2197 18 13.9961 17.7762 13.9961 17.5C13.9961 17.2239 14.2197 17 14.4956 17H17.0005L17 14.4993C17 14.2231 17.2239 13.9993 17.5 13.9993C17.7761 13.9993 18 14.2231 18 14.4993L18.0005 17H20.4966C20.7725 17 20.9961 17.2239 20.9961 17.5C20.9961 17.7762 20.7725 18 20.4966 18H18.0006Z"})})});export{t as default};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ReactElement } from 'react';
|
|
2
|
-
import { ISVGIconProps } from '
|
|
3
|
-
|
|
2
|
+
import { ISVGIconProps } from '../../type';
|
|
3
|
+
declare const IconPeopleFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
|
|
4
4
|
export default IconPeopleFilled;
|
|
@@ -1,32 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
var IconPeopleFilled = function IconPeopleFilled(_ref) {
|
|
6
|
-
var size = _ref.size,
|
|
7
|
-
type = _ref.type,
|
|
8
|
-
_ref$className = _ref.className,
|
|
9
|
-
className = _ref$className === void 0 ? '' : _ref$className,
|
|
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 12C10.2091 12 12 10.2091 12 8C12 5.79086 10.2091 4 8 4C5.79086 4 4 5.79086 4 8C4 10.2091 5.79086 12 8 12ZM17 12C18.6569 12 20 10.6569 20 9C20 7.34315 18.6569 6 17 6C15.3431 6 14 7.34315 14 9C14 10.6569 15.3431 12 17 12ZM4.25 14C3.00736 14 2 15.0074 2 16.25V16.5C2 16.5 2 21 8 21C14 21 14 16.5 14 16.5V16.25C14 15.0074 12.9926 14 11.75 14H4.25ZM17.0002 19.5C15.829 19.5 14.9321 19.3189 14.2453 19.0416C14.5873 18.4667 14.7719 17.9142 14.8724 17.4836C14.9328 17.2247 14.9645 17.0027 14.9813 16.8353C14.9897 16.7512 14.9944 16.68 14.997 16.6237C14.9983 16.5955 14.9991 16.5709 14.9996 16.5503L15.0001 16.5222L15.0002 16.5103L15.0002 16.505L15.0002 16.5024C15.0002 16.4992 15.0002 16.5 15.0002 16.5V16.25C15.0002 15.3779 14.6567 14.5861 14.0977 14.0023C14.1316 14.0008 14.1658 14 14.2002 14H19.8002C21.0152 14 22.0002 14.985 22.0002 16.2C22.0002 16.2 22.0002 19.5 17.0002 19.5Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconPeopleFilled, IconPeopleFilled as default };
|
|
1
|
+
import{jsx as C}from"react/jsx-runtime";import r from"classnames";const t=({size:e,type:i,className:s="",onClick:a,refHandler:t,id:n,dataId:o})=>/* @__PURE__ */C("svg",{xmlns:"http://www.w3.org/2000/svg",className:r("svg-icon",{[`svg-icon__size-${e}`]:e,[`svg-icon__type-${i}`]:i,[s]:s}),viewBox:"0 0 24 24",fill:"none",onClick:a,ref:t,id:n,"data-id":o?`${o}-svg-icon`:"",children:/* @__PURE__ */C("g",{id:"Size=24, Theme=Filled",children:/* @__PURE__ */C("path",{id:"Shape",d:"M8 12C10.2091 12 12 10.2091 12 8C12 5.79086 10.2091 4 8 4C5.79086 4 4 5.79086 4 8C4 10.2091 5.79086 12 8 12ZM17 12C18.6569 12 20 10.6569 20 9C20 7.34315 18.6569 6 17 6C15.3431 6 14 7.34315 14 9C14 10.6569 15.3431 12 17 12ZM4.25 14C3.00736 14 2 15.0074 2 16.25V16.5C2 16.5 2 21 8 21C14 21 14 16.5 14 16.5V16.25C14 15.0074 12.9926 14 11.75 14H4.25ZM17.0002 19.5C15.829 19.5 14.9321 19.3189 14.2453 19.0416C14.5873 18.4667 14.7719 17.9142 14.8724 17.4836C14.9328 17.2247 14.9645 17.0027 14.9813 16.8353C14.9897 16.7512 14.9944 16.68 14.997 16.6237C14.9983 16.5955 14.9991 16.5709 14.9996 16.5503L15.0001 16.5222L15.0002 16.5103L15.0002 16.505L15.0002 16.5024C15.0002 16.4992 15.0002 16.5 15.0002 16.5V16.25C15.0002 15.3779 14.6567 14.5861 14.0977 14.0023C14.1316 14.0008 14.1658 14 14.2002 14H19.8002C21.0152 14 22.0002 14.985 22.0002 16.2C22.0002 16.2 22.0002 19.5 17.0002 19.5Z"})})});export{t as default};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{jsx as n}from"react/jsx-runtime";import Z from"classnames";const H=({size:C,type:s,className:e="",onClick:i,refHandler:a,id:o,dataId:t})=>/* @__PURE__ */n("svg",{xmlns:"http://www.w3.org/2000/svg",className:Z("svg-icon",{[`svg-icon__size-${C}`]:C,[`svg-icon__type-${s}`]:s,[e]:e}),viewBox:"0 0 24 24",fill:"none",onClick:i,ref:a,id:o,"data-id":t?`${t}-svg-icon`:"",children:/* @__PURE__ */n("path",{d:"M5.5 8C5.5 6.61929 6.61929 5.5 8 5.5C9.38071 5.5 10.5 6.61929 10.5 8C10.5 9.38071 9.38071 10.5 8 10.5C6.61929 10.5 5.5 9.38071 5.5 8ZM8 4C5.79086 4 4 5.79086 4 8C4 10.2091 5.79086 12 8 12C10.2091 12 12 10.2091 12 8C12 5.79086 10.2091 4 8 4ZM15.5 9C15.5 8.17157 16.1716 7.5 17 7.5C17.8284 7.5 18.5 8.17157 18.5 9C18.5 9.82843 17.8284 10.5 17 10.5C16.1716 10.5 15.5 9.82843 15.5 9ZM17 6C15.3431 6 14 7.34315 14 9C14 10.6569 15.3431 12 17 12C18.6569 12 20 10.6569 20 9C20 7.34315 18.6569 6 17 6ZM4.25 14C3.00736 14 2 15.0074 2 16.25V16.5011L2 16.5022L2.00001 16.5048L2.00007 16.5111L2.00035 16.5277C2.00064 16.5406 2.00117 16.5571 2.0021 16.5771C2.00396 16.6169 2.00745 16.6705 2.01398 16.7358C2.02701 16.8661 2.05233 17.045 2.10165 17.2564C2.19995 17.6776 2.39654 18.2404 2.79183 18.8051C3.61066 19.9749 5.17178 21 8 21C9.81853 21 11.1132 20.5762 12.0235 19.9626C12.0853 19.5883 12.2659 19.2541 12.5253 19C12.2357 18.7162 12.0443 18.3327 12.0068 17.905C11.9978 17.9183 11.9886 17.9316 11.9793 17.9449C11.4857 18.6501 10.4218 19.5 8 19.5C5.57822 19.5 4.51434 18.6501 4.02067 17.9449C3.75971 17.5721 3.62818 17.1974 3.56241 16.9155C3.5297 16.7753 3.514 16.6612 3.50653 16.5865C3.50281 16.5493 3.50117 16.5222 3.50047 16.5072L3.5 16.4947V16.25C3.5 15.8358 3.83579 15.5 4.25 15.5H11.75C11.8475 15.5 11.9406 15.5186 12.026 15.5524C12.0089 15.4542 12 15.3531 12 15.25C12 14.8116 12.1612 14.4109 12.4276 14.1038C12.2137 14.0364 11.9861 14 11.75 14H4.25ZM12.5253 16.5C12.5162 16.5089 12.5073 16.5178 12.4984 16.5269L12.4995 16.5072L12.5 16.4946V16.4747C12.5083 16.4832 12.5168 16.4917 12.5253 16.5ZM13.75 14.5C13.3358 14.5 13 14.8358 13 15.25C13 15.6642 13.3358 16 13.75 16H21.25C21.6642 16 22 15.6642 22 15.25C22 14.8358 21.6642 14.5 21.25 14.5H13.75ZM13.75 17C13.3358 17 13 17.3358 13 17.75C13 18.1642 13.3358 18.5 13.75 18.5H21.25C21.6642 18.5 22 18.1642 22 17.75C22 17.3358 21.6642 17 21.25 17H13.75ZM13.75 19.5C13.3358 19.5 13 19.8358 13 20.25C13 20.6642 13.3358 21 13.75 21H21.25C21.6642 21 22 20.6642 22 20.25C22 19.8358 21.6642 19.5 21.25 19.5H13.75Z"})});export{H as default};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{jsx as e}from"react/jsx-runtime";import c from"classnames";const v=({size:C,type:s,className:i="",onClick:a,refHandler:o,id:n,dataId:t})=>/* @__PURE__ */e("svg",{xmlns:"http://www.w3.org/2000/svg",className:c("svg-icon",{[`svg-icon__size-${C}`]:C,[`svg-icon__type-${s}`]:s,[i]:i}),viewBox:"0 0 24 24",fill:"none",onClick:a,ref:o,id:n,"data-id":t?`${t}-svg-icon`:"",children:/* @__PURE__ */e("path",{d:"M8 12C10.2091 12 12 10.2091 12 8C12 5.79086 10.2091 4 8 4C5.79086 4 4 5.79086 4 8C4 10.2091 5.79086 12 8 12ZM17 12C18.6569 12 20 10.6569 20 9C20 7.34315 18.6569 6 17 6C15.3431 6 14 7.34315 14 9C14 10.6569 15.3431 12 17 12ZM4.25 14C3.00736 14 2 15.0074 2 16.25V16.5C2 16.5 2 21 8 21C9.85469 21 11.1361 20.57 12.0213 19.9759C12.0811 19.5962 12.2628 19.2571 12.5253 19C12.2011 18.6824 12 18.2397 12 17.75C12 17.2603 12.2011 16.8176 12.5253 16.5C12.2011 16.1824 12 15.7397 12 15.25C12 14.8116 12.1612 14.4109 12.4276 14.1038C12.2137 14.0364 11.9861 14 11.75 14H4.25ZM13.75 14.5C13.3358 14.5 13 14.8358 13 15.25C13 15.6642 13.3358 16 13.75 16H21.25C21.6642 16 22 15.6642 22 15.25C22 14.8358 21.6642 14.5 21.25 14.5H13.75ZM13.75 17C13.3358 17 13 17.3358 13 17.75C13 18.1642 13.3358 18.5 13.75 18.5H21.25C21.6642 18.5 22 18.1642 22 17.75C22 17.3358 21.6642 17 21.25 17H13.75ZM13.75 19.5C13.3358 19.5 13 19.8358 13 20.25C13 20.6642 13.3358 21 13.75 21H21.25C21.6642 21 22 20.6642 22 20.25C22 19.8358 21.6642 19.5 21.25 19.5H13.75Z"})});export{v as default};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{jsx as i}from"react/jsx-runtime";import c from"classnames";const V=({size:C,type:s,className:e="",onClick:a,refHandler:o,id:n,dataId:t})=>/* @__PURE__ */i("svg",{xmlns:"http://www.w3.org/2000/svg",className:c("svg-icon",{[`svg-icon__size-${C}`]:C,[`svg-icon__type-${s}`]:s,[e]:e}),viewBox:"0 0 24 24",fill:"none",onClick:a,ref:o,id:n,"data-id":t?`${t}-svg-icon`:"",children:/* @__PURE__ */i("path",{d:"M14.754 10C15.7205 10 16.504 10.7835 16.504 11.75V16.499C16.504 18.9848 14.4888 21 12.003 21C9.51712 21 7.50193 18.9848 7.50193 16.499V11.75C7.50193 10.7835 8.28543 10 9.25193 10H14.754ZM14.754 11.5H9.25193C9.11386 11.5 9.00193 11.6119 9.00193 11.75V16.499C9.00193 18.1564 10.3455 19.5 12.003 19.5C13.6604 19.5 15.004 18.1564 15.004 16.499V11.75C15.004 11.6119 14.8921 11.5 14.754 11.5ZM3.75 10L7.13128 9.99906C6.78791 10.4145 6.56424 10.9325 6.51312 11.5002L3.75 11.5C3.61193 11.5 3.5 11.6119 3.5 11.75V14.9988C3.5 16.3802 4.61984 17.5 6.00124 17.5C6.20123 17.5 6.39574 17.4765 6.58216 17.4322C6.66687 17.9361 6.82156 18.4167 7.03487 18.864C6.70577 18.953 6.35899 19 6.00124 19C3.79142 19 2 17.2086 2 14.9988V11.75C2 10.7835 2.7835 10 3.75 10ZM16.8747 9.99906L20.25 10C21.2165 10 22 10.7835 22 11.75V15C22 17.2091 20.2091 19 18 19C17.6436 19 17.298 18.9534 16.9691 18.8659C17.184 18.4177 17.3388 17.9371 17.425 17.4331C17.6092 17.477 17.8019 17.5 18 17.5C19.3807 17.5 20.5 16.3807 20.5 15V11.75C20.5 11.6119 20.3881 11.5 20.25 11.5L17.4928 11.5002C17.4417 10.9325 17.218 10.4145 16.8747 9.99906ZM12 3C13.6569 3 15 4.34315 15 6C15 7.65685 13.6569 9 12 9C10.3431 9 9 7.65685 9 6C9 4.34315 10.3431 3 12 3ZM18.5 4C19.8807 4 21 5.11929 21 6.5C21 7.88071 19.8807 9 18.5 9C17.1193 9 16 7.88071 16 6.5C16 5.11929 17.1193 4 18.5 4ZM5.5 4C6.88071 4 8 5.11929 8 6.5C8 7.88071 6.88071 9 5.5 9C4.11929 9 3 7.88071 3 6.5C3 5.11929 4.11929 4 5.5 4ZM12 4.5C11.1716 4.5 10.5 5.17157 10.5 6C10.5 6.82843 11.1716 7.5 12 7.5C12.8284 7.5 13.5 6.82843 13.5 6C13.5 5.17157 12.8284 4.5 12 4.5ZM18.5 5.5C17.9477 5.5 17.5 5.94772 17.5 6.5C17.5 7.05228 17.9477 7.5 18.5 7.5C19.0523 7.5 19.5 7.05228 19.5 6.5C19.5 5.94772 19.0523 5.5 18.5 5.5ZM5.5 5.5C4.94772 5.5 4.5 5.94772 4.5 6.5C4.5 7.05228 4.94772 7.5 5.5 7.5C6.05228 7.5 6.5 7.05228 6.5 6.5C6.5 5.94772 6.05228 5.5 5.5 5.5Z"})});export{V as default};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{jsx as i}from"react/jsx-runtime";import r from"classnames";const m=({size:C,type:s,className:e="",onClick:a,refHandler:o,id:n,dataId:t})=>/* @__PURE__ */i("svg",{xmlns:"http://www.w3.org/2000/svg",className:r("svg-icon",{[`svg-icon__size-${C}`]:C,[`svg-icon__type-${s}`]:s,[e]:e}),viewBox:"0 0 24 24",fill:"none",onClick:a,ref:o,id:n,"data-id":t?`${t}-svg-icon`:"",children:/* @__PURE__ */i("path",{d:"M14.754 10C15.7205 10 16.504 10.7835 16.504 11.75V16.499C16.504 18.9848 14.4888 21 12.003 21C9.51712 21 7.50193 18.9848 7.50193 16.499V11.75C7.50193 10.7835 8.28543 10 9.25193 10H14.754ZM7.13128 9.99906C6.78183 10.4218 6.55636 10.9508 6.51057 11.5304L6.50193 11.75V16.499C6.50193 17.3456 6.69319 18.1476 7.03487 18.864C6.70577 18.953 6.35899 19 6.00124 19C3.79142 19 2 17.2086 2 14.9988V11.75C2 10.8318 2.70711 10.0788 3.60647 10.0058L3.75 10L7.13128 9.99906ZM16.8747 9.99906L20.25 10C21.2165 10 22 10.7835 22 11.75V15C22 17.2091 20.2091 19 18 19C17.6436 19 17.298 18.9534 16.9691 18.8659C17.2697 18.238 17.4538 17.5452 17.4951 16.8144L17.504 16.499V11.75C17.504 11.0847 17.2678 10.4747 16.8747 9.99906ZM12 3C13.6569 3 15 4.34315 15 6C15 7.65685 13.6569 9 12 9C10.3431 9 9 7.65685 9 6C9 4.34315 10.3431 3 12 3ZM18.5 4C19.8807 4 21 5.11929 21 6.5C21 7.88071 19.8807 9 18.5 9C17.1193 9 16 7.88071 16 6.5C16 5.11929 17.1193 4 18.5 4ZM5.5 4C6.88071 4 8 5.11929 8 6.5C8 7.88071 6.88071 9 5.5 9C4.11929 9 3 7.88071 3 6.5C3 5.11929 4.11929 4 5.5 4Z"})});export{m as default};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ReactElement } from 'react';
|
|
2
|
-
import { ISVGIconProps } from '
|
|
3
|
-
|
|
2
|
+
import { ISVGIconProps } from '../../type';
|
|
3
|
+
declare const IconPercent: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
|
|
4
4
|
export default IconPercent;
|
|
@@ -1,34 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
var IconPercent = function IconPercent(_ref) {
|
|
6
|
-
var size = _ref.size,
|
|
7
|
-
type = _ref.type,
|
|
8
|
-
_ref$className = _ref.className,
|
|
9
|
-
className = _ref$className === void 0 ? '' : _ref$className,
|
|
10
|
-
onClick = _ref.onClick,
|
|
11
|
-
refHandler = _ref.refHandler,
|
|
12
|
-
id = _ref.id,
|
|
13
|
-
dataId = _ref.dataId;
|
|
14
|
-
return /*#__PURE__*/React.createElement("svg", {
|
|
15
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
-
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
17
|
-
viewBox: "0 0 24 24",
|
|
18
|
-
fill: "none",
|
|
19
|
-
onClick: onClick,
|
|
20
|
-
ref: refHandler,
|
|
21
|
-
id: id,
|
|
22
|
-
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
23
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
24
|
-
id: "Theme=Line"
|
|
25
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
26
|
-
id: "shape",
|
|
27
|
-
fillRule: "evenodd",
|
|
28
|
-
clipRule: "evenodd",
|
|
29
|
-
d: "M6.5 5C5.67157 5 5 5.67157 5 6.5C5 7.32843 5.67157 8 6.5 8C7.32843 8 8 7.32843 8 6.5C8 5.67157 7.32843 5 6.5 5ZM3 6.5C3 4.567 4.567 3 6.5 3C8.433 3 10 4.567 10 6.5C10 8.433 8.433 10 6.5 10C4.567 10 3 8.433 3 6.5ZM19.7071 5.70711L5.70711 19.7071C5.31658 20.0976 4.68342 20.0976 4.29289 19.7071C3.90237 19.3166 3.90237 18.6834 4.29289 18.2929L18.2929 4.29289C18.6834 3.90237 19.3166 3.90237 19.7071 4.29289C20.0976 4.68342 20.0976 5.31658 19.7071 5.70711ZM16 17.5C16 16.6716 16.6716 16 17.5 16C18.3284 16 19 16.6716 19 17.5C19 18.3284 18.3284 19 17.5 19C16.6716 19 16 18.3284 16 17.5ZM17.5 14C15.567 14 14 15.567 14 17.5C14 19.433 15.567 21 17.5 21C19.433 21 21 19.433 21 17.5C21 15.567 19.433 14 17.5 14Z",
|
|
30
|
-
fill: "#222222"
|
|
31
|
-
})));
|
|
32
|
-
};
|
|
33
|
-
|
|
34
|
-
export { IconPercent, IconPercent as default };
|
|
1
|
+
import{jsx as e}from"react/jsx-runtime";import d from"classnames";const v=({size:i,type:s,className:C="",onClick:n,refHandler:a,id:l,dataId:o})=>/* @__PURE__ */e("svg",{xmlns:"http://www.w3.org/2000/svg",className:d("svg-icon",{[`svg-icon__size-${i}`]:i,[`svg-icon__type-${s}`]:s,[C]:C}),viewBox:"0 0 24 24",fill:"none",onClick:n,ref:a,id:l,"data-id":o?`${o}-svg-icon`:"",children:/* @__PURE__ */e("g",{id:"Theme=Line",children:/* @__PURE__ */e("path",{id:"shape",fillRule:"evenodd",clipRule:"evenodd",d:"M6.5 5C5.67157 5 5 5.67157 5 6.5C5 7.32843 5.67157 8 6.5 8C7.32843 8 8 7.32843 8 6.5C8 5.67157 7.32843 5 6.5 5ZM3 6.5C3 4.567 4.567 3 6.5 3C8.433 3 10 4.567 10 6.5C10 8.433 8.433 10 6.5 10C4.567 10 3 8.433 3 6.5ZM19.7071 5.70711L5.70711 19.7071C5.31658 20.0976 4.68342 20.0976 4.29289 19.7071C3.90237 19.3166 3.90237 18.6834 4.29289 18.2929L18.2929 4.29289C18.6834 3.90237 19.3166 3.90237 19.7071 4.29289C20.0976 4.68342 20.0976 5.31658 19.7071 5.70711ZM16 17.5C16 16.6716 16.6716 16 17.5 16C18.3284 16 19 16.6716 19 17.5C19 18.3284 18.3284 19 17.5 19C16.6716 19 16 18.3284 16 17.5ZM17.5 14C15.567 14 14 15.567 14 17.5C14 19.433 15.567 21 17.5 21C19.433 21 21 19.433 21 17.5C21 15.567 19.433 14 17.5 14Z"})})});export{v as default};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ReactElement } from 'react';
|
|
2
|
-
import { ISVGIconProps } from '
|
|
3
|
-
|
|
2
|
+
import { ISVGIconProps } from '../../type';
|
|
3
|
+
declare const IconPerson: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
|
|
4
4
|
export default IconPerson;
|
|
@@ -1,32 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
var IconPerson = function IconPerson(_ref) {
|
|
6
|
-
var size = _ref.size,
|
|
7
|
-
type = _ref.type,
|
|
8
|
-
_ref$className = _ref.className,
|
|
9
|
-
className = _ref$className === void 0 ? '' : _ref$className,
|
|
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: "M17.7542 13.9999C18.9962 13.9999 20.003 15.0068 20.003 16.2488V16.8242C20.003 17.7185 19.6835 18.5833 19.1019 19.2627C17.5326 21.0962 15.1454 22.0011 12 22.0011C8.85414 22.0011 6.46812 21.0959 4.90182 19.2617C4.32206 18.5828 4.00354 17.7193 4.00354 16.8265V16.2488C4.00354 15.0068 5.0104 13.9999 6.25242 13.9999H17.7542ZM17.7542 15.4999H6.25242C5.83882 15.4999 5.50354 15.8352 5.50354 16.2488V16.8265C5.50354 17.3622 5.69465 17.8802 6.04251 18.2876C7.29582 19.7553 9.26169 20.5011 12 20.5011C14.7383 20.5011 16.7059 19.7553 17.9624 18.2873C18.3113 17.8797 18.503 17.3608 18.503 16.8242V16.2488C18.503 15.8352 18.1678 15.4999 17.7542 15.4999ZM12 2.00464C14.7614 2.00464 17 4.24321 17 7.00464C17 9.76606 14.7614 12.0046 12 12.0046C9.23857 12.0046 7 9.76606 7 7.00464C7 4.24321 9.23857 2.00464 12 2.00464ZM12 3.50464C10.067 3.50464 8.5 5.07164 8.5 7.00464C8.5 8.93764 10.067 10.5046 12 10.5046C13.933 10.5046 15.5 8.93764 15.5 7.00464C15.5 5.07164 13.933 3.50464 12 3.50464Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconPerson, IconPerson as default };
|
|
1
|
+
import{jsx as C}from"react/jsx-runtime";import g from"classnames";const a=({size:e,type:i,className:s="",onClick:a,refHandler:n,id:o,dataId:r})=>/* @__PURE__ */C("svg",{xmlns:"http://www.w3.org/2000/svg",className:g("svg-icon",{[`svg-icon__size-${e}`]:e,[`svg-icon__type-${i}`]:i,[s]:s}),viewBox:"0 0 24 24",fill:"none",onClick:a,ref:n,id:o,"data-id":r?`${r}-svg-icon`:"",children:/* @__PURE__ */C("g",{id:"Size=24, Theme=Regular",children:/* @__PURE__ */C("path",{id:"Shape",d:"M17.7542 13.9999C18.9962 13.9999 20.003 15.0068 20.003 16.2488V16.8242C20.003 17.7185 19.6835 18.5833 19.1019 19.2627C17.5326 21.0962 15.1454 22.0011 12 22.0011C8.85414 22.0011 6.46812 21.0959 4.90182 19.2617C4.32206 18.5828 4.00354 17.7193 4.00354 16.8265V16.2488C4.00354 15.0068 5.0104 13.9999 6.25242 13.9999H17.7542ZM17.7542 15.4999H6.25242C5.83882 15.4999 5.50354 15.8352 5.50354 16.2488V16.8265C5.50354 17.3622 5.69465 17.8802 6.04251 18.2876C7.29582 19.7553 9.26169 20.5011 12 20.5011C14.7383 20.5011 16.7059 19.7553 17.9624 18.2873C18.3113 17.8797 18.503 17.3608 18.503 16.8242V16.2488C18.503 15.8352 18.1678 15.4999 17.7542 15.4999ZM12 2.00464C14.7614 2.00464 17 4.24321 17 7.00464C17 9.76606 14.7614 12.0046 12 12.0046C9.23857 12.0046 7 9.76606 7 7.00464C7 4.24321 9.23857 2.00464 12 2.00464ZM12 3.50464C10.067 3.50464 8.5 5.07164 8.5 7.00464C8.5 8.93764 10.067 10.5046 12 10.5046C13.933 10.5046 15.5 8.93764 15.5 7.00464C15.5 5.07164 13.933 3.50464 12 3.50464Z"})})});export{a as default};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ReactElement } from 'react';
|
|
2
|
-
import { ISVGIconProps } from '
|
|
3
|
-
|
|
2
|
+
import { ISVGIconProps } from '../../type';
|
|
3
|
+
declare const IconPersonAccount: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
|
|
4
4
|
export default IconPersonAccount;
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
var IconPersonAccount = function IconPersonAccount(_ref) {
|
|
6
|
-
var size = _ref.size,
|
|
7
|
-
type = _ref.type,
|
|
8
|
-
_ref$className = _ref.className,
|
|
9
|
-
className = _ref$className === void 0 ? '' : _ref$className,
|
|
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 14.0503V14.0002H4.25278C3.01076 14.0002 2.00391 15.007 2.00391 16.2491V16.8267C2.00391 17.7195 2.32242 18.583 2.90219 19.2619C4.46849 21.0962 6.8545 22.0013 10.0004 22.0013C10.3579 22.0013 10.7055 21.9896 11.0434 21.9662C11.0149 21.8153 11 21.6595 11 21.5002V20.4658C10.679 20.4895 10.3458 20.5013 10.0004 20.5013C7.26206 20.5013 5.29618 19.7555 4.04287 18.2878C3.69502 17.8805 3.50391 17.3624 3.50391 16.8267V16.2491C3.50391 15.8355 3.83919 15.5002 4.25278 15.5002H11.2081C11.5294 14.7648 12.1944 14.2138 13 14.0503ZM10.0004 2.00488C12.7618 2.00488 15.0004 4.24346 15.0004 7.00488C15.0004 9.76631 12.7618 12.0049 10.0004 12.0049C7.23894 12.0049 5.00036 9.76631 5.00036 7.00488C5.00036 4.24346 7.23894 2.00488 10.0004 2.00488ZM10.0004 3.50488C8.06737 3.50488 6.50036 5.07189 6.50036 7.00488C6.50036 8.93788 8.06737 10.5049 10.0004 10.5049C11.9334 10.5049 13.5004 8.93788 13.5004 7.00488C13.5004 5.07189 11.9334 3.50488 10.0004 3.50488ZM14 15.0003H13.5C12.6716 15.0003 12 15.6719 12 16.5003V21.5002C12 22.3287 12.6716 23.0002 13.5 23.0002H21.5C22.3284 23.0002 23 22.3287 23 21.5002V16.5003C23 15.6719 22.3284 15.0003 21.5 15.0003H21V13.7502C21 12.7837 20.2165 12.0002 19.25 12.0002H15.75C14.7835 12.0002 14 12.7837 14 13.7502V15.0003ZM15.5 13.7502C15.5 13.6122 15.6119 13.5002 15.75 13.5002H19.25C19.3881 13.5002 19.5 13.6122 19.5 13.7502V15.0003H15.5V13.7502Z",
|
|
25
|
-
fill: "#222222"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconPersonAccount, IconPersonAccount as default };
|
|
1
|
+
import{jsx as c}from"react/jsx-runtime";import t from"classnames";const g=({size:C,type:s,className:e="",onClick:i,refHandler:a,id:o,dataId:n})=>/* @__PURE__ */c("svg",{xmlns:"http://www.w3.org/2000/svg",className:t("svg-icon",{[`svg-icon__size-${C}`]:C,[`svg-icon__type-${s}`]:s,[e]:e}),viewBox:"0 0 24 24",fill:"none",onClick:i,ref:a,id:o,"data-id":n?`${n}-svg-icon`:"",children:/* @__PURE__ */c("path",{d:"M13 14.0503V14.0002H4.25278C3.01076 14.0002 2.00391 15.007 2.00391 16.2491V16.8267C2.00391 17.7195 2.32242 18.583 2.90219 19.2619C4.46849 21.0962 6.8545 22.0013 10.0004 22.0013C10.3579 22.0013 10.7055 21.9896 11.0434 21.9662C11.0149 21.8153 11 21.6595 11 21.5002V20.4658C10.679 20.4895 10.3458 20.5013 10.0004 20.5013C7.26206 20.5013 5.29618 19.7555 4.04287 18.2878C3.69502 17.8805 3.50391 17.3624 3.50391 16.8267V16.2491C3.50391 15.8355 3.83919 15.5002 4.25278 15.5002H11.2081C11.5294 14.7648 12.1944 14.2138 13 14.0503ZM10.0004 2.00488C12.7618 2.00488 15.0004 4.24346 15.0004 7.00488C15.0004 9.76631 12.7618 12.0049 10.0004 12.0049C7.23894 12.0049 5.00036 9.76631 5.00036 7.00488C5.00036 4.24346 7.23894 2.00488 10.0004 2.00488ZM10.0004 3.50488C8.06737 3.50488 6.50036 5.07189 6.50036 7.00488C6.50036 8.93788 8.06737 10.5049 10.0004 10.5049C11.9334 10.5049 13.5004 8.93788 13.5004 7.00488C13.5004 5.07189 11.9334 3.50488 10.0004 3.50488ZM14 15.0003H13.5C12.6716 15.0003 12 15.6719 12 16.5003V21.5002C12 22.3287 12.6716 23.0002 13.5 23.0002H21.5C22.3284 23.0002 23 22.3287 23 21.5002V16.5003C23 15.6719 22.3284 15.0003 21.5 15.0003H21V13.7502C21 12.7837 20.2165 12.0002 19.25 12.0002H15.75C14.7835 12.0002 14 12.7837 14 13.7502V15.0003ZM15.5 13.7502C15.5 13.6122 15.6119 13.5002 15.75 13.5002H19.25C19.3881 13.5002 19.5 13.6122 19.5 13.7502V15.0003H15.5V13.7502Z"})});export{g as default};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ReactElement } from 'react';
|
|
2
|
-
import { ISVGIconProps } from '
|
|
3
|
-
|
|
2
|
+
import { ISVGIconProps } from '../../type';
|
|
3
|
+
declare const IconPersonAccountFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
|
|
4
4
|
export default IconPersonAccountFilled;
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
var IconPersonAccountFilled = function IconPersonAccountFilled(_ref) {
|
|
6
|
-
var size = _ref.size,
|
|
7
|
-
type = _ref.type,
|
|
8
|
-
_ref$className = _ref.className,
|
|
9
|
-
className = _ref$className === void 0 ? '' : _ref$className,
|
|
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 14.0503V14.0002H4.25278C3.01076 14.0002 2.00391 15.007 2.00391 16.2491V17.169C2.00391 17.7411 2.18231 18.2989 2.51427 18.7648C4.05643 20.9292 6.5794 22.0013 10.0004 22.0013C10.3578 22.0013 10.7055 21.9896 11.0433 21.9662C11.0149 21.8152 11 21.6595 11 21.5002V16.5003C11 15.2908 11.8589 14.2819 13 14.0503ZM10.0004 2.00488C12.7618 2.00488 15.0004 4.24346 15.0004 7.00488C15.0004 9.76631 12.7618 12.0049 10.0004 12.0049C7.23894 12.0049 5.00036 9.76631 5.00036 7.00488C5.00036 4.24346 7.23894 2.00488 10.0004 2.00488ZM14 15.0003H13.5C12.6716 15.0003 12 15.6719 12 16.5003V21.5002C12 22.3287 12.6716 23.0002 13.5 23.0002H21.5C22.3284 23.0002 23 22.3287 23 21.5002V16.5003C23 15.6719 22.3284 15.0003 21.5 15.0003H21V13.7502C21 12.7837 20.2165 12.0002 19.25 12.0002H15.75C14.7835 12.0002 14 12.7837 14 13.7502V15.0003ZM15.5 13.7502C15.5 13.6122 15.6119 13.5002 15.75 13.5002H19.25C19.3881 13.5002 19.5 13.6122 19.5 13.7502V15.0003H15.5V13.7502Z",
|
|
25
|
-
fill: "#222222"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconPersonAccountFilled, IconPersonAccountFilled as default };
|
|
1
|
+
import{jsx as i}from"react/jsx-runtime";import t from"classnames";const g=({size:s,type:C,className:e="",onClick:a,refHandler:o,id:n,dataId:c})=>/* @__PURE__ */i("svg",{xmlns:"http://www.w3.org/2000/svg",className:t("svg-icon",{[`svg-icon__size-${s}`]:s,[`svg-icon__type-${C}`]:C,[e]:e}),viewBox:"0 0 24 24",fill:"none",onClick:a,ref:o,id:n,"data-id":c?`${c}-svg-icon`:"",children:/* @__PURE__ */i("path",{d:"M13 14.0503V14.0002H4.25278C3.01076 14.0002 2.00391 15.007 2.00391 16.2491V17.169C2.00391 17.7411 2.18231 18.2989 2.51427 18.7648C4.05643 20.9292 6.5794 22.0013 10.0004 22.0013C10.3578 22.0013 10.7055 21.9896 11.0433 21.9662C11.0149 21.8152 11 21.6595 11 21.5002V16.5003C11 15.2908 11.8589 14.2819 13 14.0503ZM10.0004 2.00488C12.7618 2.00488 15.0004 4.24346 15.0004 7.00488C15.0004 9.76631 12.7618 12.0049 10.0004 12.0049C7.23894 12.0049 5.00036 9.76631 5.00036 7.00488C5.00036 4.24346 7.23894 2.00488 10.0004 2.00488ZM14 15.0003H13.5C12.6716 15.0003 12 15.6719 12 16.5003V21.5002C12 22.3287 12.6716 23.0002 13.5 23.0002H21.5C22.3284 23.0002 23 22.3287 23 21.5002V16.5003C23 15.6719 22.3284 15.0003 21.5 15.0003H21V13.7502C21 12.7837 20.2165 12.0002 19.25 12.0002H15.75C14.7835 12.0002 14 12.7837 14 13.7502V15.0003ZM15.5 13.7502C15.5 13.6122 15.6119 13.5002 15.75 13.5002H19.25C19.3881 13.5002 19.5 13.6122 19.5 13.7502V15.0003H15.5V13.7502Z"})});export{g as default};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ReactElement } from 'react';
|
|
2
|
-
import { ISVGIconProps } from '
|
|
3
|
-
|
|
2
|
+
import { ISVGIconProps } from '../../type';
|
|
3
|
+
declare const IconPersonAdd: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
|
|
4
4
|
export default IconPersonAdd;
|
|
@@ -1,32 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
var IconPersonAdd = function IconPersonAdd(_ref) {
|
|
6
|
-
var size = _ref.size,
|
|
7
|
-
type = _ref.type,
|
|
8
|
-
_ref$className = _ref.className,
|
|
9
|
-
className = _ref$className === void 0 ? '' : _ref$className,
|
|
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: "M17.5004 12C20.5379 12 23.0004 14.4624 23.0004 17.5C23.0004 20.5376 20.5379 23 17.5004 23C14.4628 23 12.0004 20.5376 12.0004 17.5C12.0004 14.4624 14.4628 12 17.5004 12ZM12.0226 13.9993C11.7259 14.4626 11.4864 14.966 11.314 15.4996L4.25278 15.4999C3.83919 15.4999 3.50391 15.8352 3.50391 16.2488V16.8265C3.50391 17.3622 3.69502 17.8802 4.04287 18.2876C5.29618 19.7553 7.26206 20.5011 10.0004 20.5011C10.5968 20.5011 11.1567 20.4657 11.6806 20.3952C11.9258 20.8901 12.2333 21.3486 12.5921 21.7615C11.7966 21.9217 10.9317 22.0011 10.0004 22.0011C6.8545 22.0011 4.46849 21.0959 2.90219 19.2617C2.32242 18.5828 2.00391 17.7193 2.00391 16.8265V16.2488C2.00391 15.0068 3.01076 13.9999 4.25278 13.9999L12.0226 13.9993ZM17.5004 14L17.4105 14.0081C17.2064 14.0451 17.0455 14.206 17.0084 14.4101L17.0004 14.5L16.9994 17H14.5043L14.4144 17.0081C14.2103 17.0451 14.0494 17.206 14.0123 17.4101L14.0043 17.5L14.0123 17.5899C14.0494 17.794 14.2103 17.9549 14.4144 17.992L14.5043 18H16.9994L17.0004 20.5L17.0084 20.5899C17.0455 20.794 17.2064 20.9549 17.4105 20.9919L17.5004 21L17.5902 20.9919C17.7943 20.9549 17.9553 20.794 17.9923 20.5899L18.0004 20.5L17.9994 18H20.5043L20.5941 17.992C20.7982 17.9549 20.9592 17.794 20.9962 17.5899L21.0043 17.5L20.9962 17.4101C20.9592 17.206 20.7982 17.0451 20.5941 17.0081L20.5043 17H17.9994L18.0004 14.5L17.9923 14.4101C17.9553 14.206 17.7943 14.0451 17.5902 14.0081L17.5004 14ZM10.0004 2.00464C12.7618 2.00464 15.0004 4.24321 15.0004 7.00464C15.0004 9.76606 12.7618 12.0046 10.0004 12.0046C7.23894 12.0046 5.00036 9.76606 5.00036 7.00464C5.00036 4.24321 7.23894 2.00464 10.0004 2.00464ZM10.0004 3.50464C8.06737 3.50464 6.50036 5.07164 6.50036 7.00464C6.50036 8.93764 8.06737 10.5046 10.0004 10.5046C11.9334 10.5046 13.5004 8.93764 13.5004 7.00464C13.5004 5.07164 11.9334 3.50464 10.0004 3.50464Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconPersonAdd, IconPersonAdd as default };
|
|
1
|
+
import{jsx as C}from"react/jsx-runtime";import c from"classnames";const l=({size:e,type:L,className:i="",onClick:s,refHandler:a,id:l,dataId:n})=>/* @__PURE__ */C("svg",{xmlns:"http://www.w3.org/2000/svg",className:c("svg-icon",{[`svg-icon__size-${e}`]:e,[`svg-icon__type-${L}`]:L,[i]:i}),viewBox:"0 0 24 24",fill:"none",onClick:s,ref:a,id:l,"data-id":n?`${n}-svg-icon`:"",children:/* @__PURE__ */C("g",{id:"Size=24, Theme=Regular",children:/* @__PURE__ */C("path",{id:"Shape",d:"M17.5004 12C20.5379 12 23.0004 14.4624 23.0004 17.5C23.0004 20.5376 20.5379 23 17.5004 23C14.4628 23 12.0004 20.5376 12.0004 17.5C12.0004 14.4624 14.4628 12 17.5004 12ZM12.0226 13.9993C11.7259 14.4626 11.4864 14.966 11.314 15.4996L4.25278 15.4999C3.83919 15.4999 3.50391 15.8352 3.50391 16.2488V16.8265C3.50391 17.3622 3.69502 17.8802 4.04287 18.2876C5.29618 19.7553 7.26206 20.5011 10.0004 20.5011C10.5968 20.5011 11.1567 20.4657 11.6806 20.3952C11.9258 20.8901 12.2333 21.3486 12.5921 21.7615C11.7966 21.9217 10.9317 22.0011 10.0004 22.0011C6.8545 22.0011 4.46849 21.0959 2.90219 19.2617C2.32242 18.5828 2.00391 17.7193 2.00391 16.8265V16.2488C2.00391 15.0068 3.01076 13.9999 4.25278 13.9999L12.0226 13.9993ZM17.5004 14L17.4105 14.0081C17.2064 14.0451 17.0455 14.206 17.0084 14.4101L17.0004 14.5L16.9994 17H14.5043L14.4144 17.0081C14.2103 17.0451 14.0494 17.206 14.0123 17.4101L14.0043 17.5L14.0123 17.5899C14.0494 17.794 14.2103 17.9549 14.4144 17.992L14.5043 18H16.9994L17.0004 20.5L17.0084 20.5899C17.0455 20.794 17.2064 20.9549 17.4105 20.9919L17.5004 21L17.5902 20.9919C17.7943 20.9549 17.9553 20.794 17.9923 20.5899L18.0004 20.5L17.9994 18H20.5043L20.5941 17.992C20.7982 17.9549 20.9592 17.794 20.9962 17.5899L21.0043 17.5L20.9962 17.4101C20.9592 17.206 20.7982 17.0451 20.5941 17.0081L20.5043 17H17.9994L18.0004 14.5L17.9923 14.4101C17.9553 14.206 17.7943 14.0451 17.5902 14.0081L17.5004 14ZM10.0004 2.00464C12.7618 2.00464 15.0004 4.24321 15.0004 7.00464C15.0004 9.76606 12.7618 12.0046 10.0004 12.0046C7.23894 12.0046 5.00036 9.76606 5.00036 7.00464C5.00036 4.24321 7.23894 2.00464 10.0004 2.00464ZM10.0004 3.50464C8.06737 3.50464 6.50036 5.07164 6.50036 7.00464C6.50036 8.93764 8.06737 10.5046 10.0004 10.5046C11.9334 10.5046 13.5004 8.93764 13.5004 7.00464C13.5004 5.07164 11.9334 3.50464 10.0004 3.50464Z"})})});export{l as default};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ReactElement } from 'react';
|
|
2
|
-
import { ISVGIconProps } from '
|
|
3
|
-
|
|
2
|
+
import { ISVGIconProps } from '../../type';
|
|
3
|
+
declare const IconPersonAddFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
|
|
4
4
|
export default IconPersonAddFilled;
|
|
@@ -1,32 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
var IconPersonAddFilled = function IconPersonAddFilled(_ref) {
|
|
6
|
-
var size = _ref.size,
|
|
7
|
-
type = _ref.type,
|
|
8
|
-
_ref$className = _ref.className,
|
|
9
|
-
className = _ref$className === void 0 ? '' : _ref$className,
|
|
10
|
-
onClick = _ref.onClick,
|
|
11
|
-
refHandler = _ref.refHandler,
|
|
12
|
-
id = _ref.id,
|
|
13
|
-
dataId = _ref.dataId;
|
|
14
|
-
return /*#__PURE__*/React.createElement("svg", {
|
|
15
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
-
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
17
|
-
viewBox: "0 0 24 24",
|
|
18
|
-
fill: "none",
|
|
19
|
-
onClick: onClick,
|
|
20
|
-
ref: refHandler,
|
|
21
|
-
id: id,
|
|
22
|
-
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
23
|
-
}, /*#__PURE__*/React.createElement("g", {
|
|
24
|
-
id: "Size=24, Theme=Filled"
|
|
25
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
26
|
-
id: "Shape",
|
|
27
|
-
d: "M11.0004 17.5C11.0004 16.2111 11.3755 15.0098 12.0226 13.9993L4.25278 13.9999C3.01076 13.9999 2.00391 15.0068 2.00391 16.2488V17.1688C2.00391 17.7409 2.18231 18.2987 2.51427 18.7646C4.05643 20.9289 6.5794 22.0011 10.0004 22.0011C10.9317 22.0011 11.7966 21.9216 12.5921 21.7615C11.6006 20.6205 11.0004 19.1303 11.0004 17.5ZM15.0004 7.00464C15.0004 4.24321 12.7618 2.00464 10.0004 2.00464C7.23894 2.00464 5.00036 4.24321 5.00036 7.00464C5.00036 9.76606 7.23894 12.0046 10.0004 12.0046C12.7618 12.0046 15.0004 9.76606 15.0004 7.00464ZM23.0004 17.5C23.0004 14.4624 20.5379 12 17.5004 12C14.4628 12 12.0004 14.4624 12.0004 17.5C12.0004 20.5376 14.4628 23 17.5004 23C20.5379 23 23.0004 20.5376 23.0004 17.5ZM17.4105 14.008L17.5004 14L17.5902 14.008C17.7943 14.0451 17.9553 14.206 17.9923 14.4101L18.0004 14.5L17.9994 17H20.5043L20.5942 17.0081C20.7982 17.0451 20.9592 17.206 20.9962 17.4101L21.0043 17.5L20.9962 17.5899C20.9592 17.794 20.7982 17.9549 20.5942 17.9919L20.5043 18H17.9994L18.0004 20.5L17.9923 20.5899C17.9553 20.794 17.7943 20.9549 17.5902 20.9919L17.5004 21L17.4105 20.9919C17.2064 20.9549 17.0455 20.794 17.0084 20.5899L17.0004 20.5L16.9994 18H14.5043L14.4144 17.9919C14.2103 17.9549 14.0494 17.794 14.0123 17.5899L14.0043 17.5L14.0123 17.4101C14.0494 17.206 14.2103 17.0451 14.4144 17.0081L14.5043 17H16.9994L17.0004 14.5L17.0084 14.4101C17.0455 14.206 17.2064 14.0451 17.4105 14.008Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconPersonAddFilled, IconPersonAddFilled as default };
|
|
1
|
+
import{jsx as C}from"react/jsx-runtime";import d from"classnames";const g=({size:e,type:i,className:s="",onClick:L,refHandler:a,id:n,dataId:o})=>/* @__PURE__ */C("svg",{xmlns:"http://www.w3.org/2000/svg",className:d("svg-icon",{[`svg-icon__size-${e}`]:e,[`svg-icon__type-${i}`]:i,[s]:s}),viewBox:"0 0 24 24",fill:"none",onClick:L,ref:a,id:n,"data-id":o?`${o}-svg-icon`:"",children:/* @__PURE__ */C("g",{id:"Size=24, Theme=Filled",children:/* @__PURE__ */C("path",{id:"Shape",d:"M11.0004 17.5C11.0004 16.2111 11.3755 15.0098 12.0226 13.9993L4.25278 13.9999C3.01076 13.9999 2.00391 15.0068 2.00391 16.2488V17.1688C2.00391 17.7409 2.18231 18.2987 2.51427 18.7646C4.05643 20.9289 6.5794 22.0011 10.0004 22.0011C10.9317 22.0011 11.7966 21.9216 12.5921 21.7615C11.6006 20.6205 11.0004 19.1303 11.0004 17.5ZM15.0004 7.00464C15.0004 4.24321 12.7618 2.00464 10.0004 2.00464C7.23894 2.00464 5.00036 4.24321 5.00036 7.00464C5.00036 9.76606 7.23894 12.0046 10.0004 12.0046C12.7618 12.0046 15.0004 9.76606 15.0004 7.00464ZM23.0004 17.5C23.0004 14.4624 20.5379 12 17.5004 12C14.4628 12 12.0004 14.4624 12.0004 17.5C12.0004 20.5376 14.4628 23 17.5004 23C20.5379 23 23.0004 20.5376 23.0004 17.5ZM17.4105 14.008L17.5004 14L17.5902 14.008C17.7943 14.0451 17.9553 14.206 17.9923 14.4101L18.0004 14.5L17.9994 17H20.5043L20.5942 17.0081C20.7982 17.0451 20.9592 17.206 20.9962 17.4101L21.0043 17.5L20.9962 17.5899C20.9592 17.794 20.7982 17.9549 20.5942 17.9919L20.5043 18H17.9994L18.0004 20.5L17.9923 20.5899C17.9553 20.794 17.7943 20.9549 17.5902 20.9919L17.5004 21L17.4105 20.9919C17.2064 20.9549 17.0455 20.794 17.0084 20.5899L17.0004 20.5L16.9994 18H14.5043L14.4144 17.9919C14.2103 17.9549 14.0494 17.794 14.0123 17.5899L14.0043 17.5L14.0123 17.4101C14.0494 17.206 14.2103 17.0451 14.4144 17.0081L14.5043 17H16.9994L17.0004 14.5L17.0084 14.4101C17.0455 14.206 17.2064 14.0451 17.4105 14.008Z"})})});export{g as default};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ReactElement } from 'react';
|
|
2
|
-
import { ISVGIconProps } from '
|
|
3
|
-
|
|
2
|
+
import { ISVGIconProps } from '../../type';
|
|
3
|
+
declare const IconPersonArrowLeft: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
|
|
4
4
|
export default IconPersonArrowLeft;
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
var IconPersonArrowLeft = function IconPersonArrowLeft(_ref) {
|
|
6
|
-
var size = _ref.size,
|
|
7
|
-
type = _ref.type,
|
|
8
|
-
_ref$className = _ref.className,
|
|
9
|
-
className = _ref$className === void 0 ? '' : _ref$className,
|
|
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.5001 12C20.5377 12 23.0001 14.4624 23.0001 17.5C23.0001 20.5376 20.5377 23 17.5001 23C14.4626 23 12.0001 20.5376 12.0001 17.5C12.0001 14.4624 14.4626 12 17.5001 12ZM12.0224 13.9993C11.7257 14.4626 11.4862 14.966 11.3137 15.4996L4.25366 15.4999C3.83945 15.4999 3.50366 15.8357 3.50366 16.2499V17.1573C3.50366 17.8129 3.78965 18.4359 4.28683 18.8634C5.54491 19.945 7.44092 20.5011 10.0001 20.5011C10.599 20.5011 11.1616 20.4706 11.6883 20.4101C11.9372 20.9103 12.251 21.374 12.6172 21.7905C11.815 21.9313 10.9421 22.0011 10.0001 22.0011C7.11062 22.0011 4.87181 21.3445 3.30894 20.0008C2.48032 19.2884 2.00366 18.25 2.00366 17.1573V16.2499C2.00366 15.0073 3.01102 13.9999 4.25366 13.9999L12.0224 13.9993ZM16.7193 14.5886L16.6501 14.6465L14.1345 17.1628L14.0938 17.2134L14.0592 17.2708L14.0269 17.3488L14.0154 17.392L14.0041 17.4784L14.008 17.5659L14.0269 17.651L14.0589 17.7287L14.0835 17.7711L14.1344 17.8371L16.6501 20.3536C16.8454 20.5488 17.1619 20.5488 17.3572 20.3536C17.5308 20.18 17.5501 19.9106 17.4151 19.7157L17.3572 19.6465L15.7111 18H20.5001C20.7456 18 20.9497 17.8231 20.9921 17.5899L21.0001 17.5C21.0001 17.2546 20.8232 17.0504 20.59 17.0081L20.5001 17H15.7111L17.3572 15.3536C17.5308 15.18 17.5501 14.9106 17.4151 14.7157L17.3572 14.6465C17.1836 14.4729 16.9142 14.4536 16.7193 14.5886ZM10.0001 2.00464C12.7615 2.00464 15.0001 4.24321 15.0001 7.00464C15.0001 9.76606 12.7615 12.0046 10.0001 12.0046C7.2387 12.0046 5.00012 9.76606 5.00012 7.00464C5.00012 4.24321 7.2387 2.00464 10.0001 2.00464ZM10.0001 3.50464C8.06712 3.50464 6.50012 5.07164 6.50012 7.00464C6.50012 8.93764 8.06712 10.5046 10.0001 10.5046C11.9331 10.5046 13.5001 8.93764 13.5001 7.00464C13.5001 5.07164 11.9331 3.50464 10.0001 3.50464Z",
|
|
25
|
-
fill: "#0E121B"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconPersonArrowLeft, IconPersonArrowLeft as default };
|
|
1
|
+
import{jsx as n}from"react/jsx-runtime";import t from"classnames";const v=({size:C,type:s,className:L="",onClick:e,refHandler:i,id:a,dataId:o})=>/* @__PURE__ */n("svg",{xmlns:"http://www.w3.org/2000/svg",className:t("svg-icon",{[`svg-icon__size-${C}`]:C,[`svg-icon__type-${s}`]:s,[L]:L}),viewBox:"0 0 24 24",fill:"none",onClick:e,ref:i,id:a,"data-id":o?`${o}-svg-icon`:"",children:/* @__PURE__ */n("path",{d:"M17.5001 12C20.5377 12 23.0001 14.4624 23.0001 17.5C23.0001 20.5376 20.5377 23 17.5001 23C14.4626 23 12.0001 20.5376 12.0001 17.5C12.0001 14.4624 14.4626 12 17.5001 12ZM12.0224 13.9993C11.7257 14.4626 11.4862 14.966 11.3137 15.4996L4.25366 15.4999C3.83945 15.4999 3.50366 15.8357 3.50366 16.2499V17.1573C3.50366 17.8129 3.78965 18.4359 4.28683 18.8634C5.54491 19.945 7.44092 20.5011 10.0001 20.5011C10.599 20.5011 11.1616 20.4706 11.6883 20.4101C11.9372 20.9103 12.251 21.374 12.6172 21.7905C11.815 21.9313 10.9421 22.0011 10.0001 22.0011C7.11062 22.0011 4.87181 21.3445 3.30894 20.0008C2.48032 19.2884 2.00366 18.25 2.00366 17.1573V16.2499C2.00366 15.0073 3.01102 13.9999 4.25366 13.9999L12.0224 13.9993ZM16.7193 14.5886L16.6501 14.6465L14.1345 17.1628L14.0938 17.2134L14.0592 17.2708L14.0269 17.3488L14.0154 17.392L14.0041 17.4784L14.008 17.5659L14.0269 17.651L14.0589 17.7287L14.0835 17.7711L14.1344 17.8371L16.6501 20.3536C16.8454 20.5488 17.1619 20.5488 17.3572 20.3536C17.5308 20.18 17.5501 19.9106 17.4151 19.7157L17.3572 19.6465L15.7111 18H20.5001C20.7456 18 20.9497 17.8231 20.9921 17.5899L21.0001 17.5C21.0001 17.2546 20.8232 17.0504 20.59 17.0081L20.5001 17H15.7111L17.3572 15.3536C17.5308 15.18 17.5501 14.9106 17.4151 14.7157L17.3572 14.6465C17.1836 14.4729 16.9142 14.4536 16.7193 14.5886ZM10.0001 2.00464C12.7615 2.00464 15.0001 4.24321 15.0001 7.00464C15.0001 9.76606 12.7615 12.0046 10.0001 12.0046C7.2387 12.0046 5.00012 9.76606 5.00012 7.00464C5.00012 4.24321 7.2387 2.00464 10.0001 2.00464ZM10.0001 3.50464C8.06712 3.50464 6.50012 5.07164 6.50012 7.00464C6.50012 8.93764 8.06712 10.5046 10.0001 10.5046C11.9331 10.5046 13.5001 8.93764 13.5001 7.00464C13.5001 5.07164 11.9331 3.50464 10.0001 3.50464Z"})});export{v as default};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ReactElement } from 'react';
|
|
2
|
-
import { ISVGIconProps } from '
|
|
3
|
-
|
|
2
|
+
import { ISVGIconProps } from '../../type';
|
|
3
|
+
declare const IconPersonArrowLeftFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
|
|
4
4
|
export default IconPersonArrowLeftFilled;
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
var IconPersonArrowLeftFilled = function IconPersonArrowLeftFilled(_ref) {
|
|
6
|
-
var size = _ref.size,
|
|
7
|
-
type = _ref.type,
|
|
8
|
-
_ref$className = _ref.className,
|
|
9
|
-
className = _ref$className === void 0 ? '' : _ref$className,
|
|
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.5001 12C20.5377 12 23.0001 14.4624 23.0001 17.5C23.0001 20.5376 20.5377 23 17.5001 23C14.4626 23 12.0001 20.5376 12.0001 17.5C12.0001 14.4624 14.4626 12 17.5001 12ZM12.0224 13.9993C11.3753 15.0098 11.0001 16.2111 11.0001 17.5C11.0001 19.1442 11.6106 20.6458 12.6172 21.7905C11.815 21.9313 10.9421 22.0011 10.0001 22.0011C7.11062 22.0011 4.87181 21.3445 3.30894 20.0008C2.48032 19.2884 2.00366 18.25 2.00366 17.1573V16.2499C2.00366 15.0073 3.01102 13.9999 4.25366 13.9999L12.0224 13.9993ZM16.7193 14.5886L16.6501 14.6465L14.1345 17.1628L14.0938 17.2134L14.0592 17.2708L14.0269 17.3488L14.0154 17.392L14.0041 17.4784L14.008 17.5659L14.0269 17.651L14.0589 17.7287L14.0835 17.7711L14.1344 17.8371L16.6501 20.3536C16.8454 20.5488 17.1619 20.5488 17.3572 20.3536C17.5308 20.18 17.5501 19.9106 17.4151 19.7157L17.3572 19.6465L15.7111 18H20.5001C20.7456 18 20.9497 17.8231 20.9921 17.5899L21.0001 17.5C21.0001 17.2546 20.8232 17.0504 20.59 17.0081L20.5001 17H15.7111L17.3572 15.3536C17.5308 15.18 17.5501 14.9106 17.4151 14.7157L17.3572 14.6465C17.1836 14.4729 16.9142 14.4536 16.7193 14.5886ZM10.0001 2.00464C12.7615 2.00464 15.0001 4.24321 15.0001 7.00464C15.0001 9.76606 12.7615 12.0046 10.0001 12.0046C7.2387 12.0046 5.00012 9.76606 5.00012 7.00464C5.00012 4.24321 7.2387 2.00464 10.0001 2.00464Z",
|
|
25
|
-
fill: "#0E121B"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconPersonArrowLeftFilled, IconPersonArrowLeftFilled as default };
|
|
1
|
+
import{jsx as i}from"react/jsx-runtime";import t from"classnames";const g=({size:C,type:s,className:L="",onClick:e,refHandler:a,id:o,dataId:n})=>/* @__PURE__ */i("svg",{xmlns:"http://www.w3.org/2000/svg",className:t("svg-icon",{[`svg-icon__size-${C}`]:C,[`svg-icon__type-${s}`]:s,[L]:L}),viewBox:"0 0 24 24",fill:"none",onClick:e,ref:a,id:o,"data-id":n?`${n}-svg-icon`:"",children:/* @__PURE__ */i("path",{d:"M17.5001 12C20.5377 12 23.0001 14.4624 23.0001 17.5C23.0001 20.5376 20.5377 23 17.5001 23C14.4626 23 12.0001 20.5376 12.0001 17.5C12.0001 14.4624 14.4626 12 17.5001 12ZM12.0224 13.9993C11.3753 15.0098 11.0001 16.2111 11.0001 17.5C11.0001 19.1442 11.6106 20.6458 12.6172 21.7905C11.815 21.9313 10.9421 22.0011 10.0001 22.0011C7.11062 22.0011 4.87181 21.3445 3.30894 20.0008C2.48032 19.2884 2.00366 18.25 2.00366 17.1573V16.2499C2.00366 15.0073 3.01102 13.9999 4.25366 13.9999L12.0224 13.9993ZM16.7193 14.5886L16.6501 14.6465L14.1345 17.1628L14.0938 17.2134L14.0592 17.2708L14.0269 17.3488L14.0154 17.392L14.0041 17.4784L14.008 17.5659L14.0269 17.651L14.0589 17.7287L14.0835 17.7711L14.1344 17.8371L16.6501 20.3536C16.8454 20.5488 17.1619 20.5488 17.3572 20.3536C17.5308 20.18 17.5501 19.9106 17.4151 19.7157L17.3572 19.6465L15.7111 18H20.5001C20.7456 18 20.9497 17.8231 20.9921 17.5899L21.0001 17.5C21.0001 17.2546 20.8232 17.0504 20.59 17.0081L20.5001 17H15.7111L17.3572 15.3536C17.5308 15.18 17.5501 14.9106 17.4151 14.7157L17.3572 14.6465C17.1836 14.4729 16.9142 14.4536 16.7193 14.5886ZM10.0001 2.00464C12.7615 2.00464 15.0001 4.24321 15.0001 7.00464C15.0001 9.76606 12.7615 12.0046 10.0001 12.0046C7.2387 12.0046 5.00012 9.76606 5.00012 7.00464C5.00012 4.24321 7.2387 2.00464 10.0001 2.00464Z"})});export{g as default};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ReactElement } from 'react';
|
|
2
|
-
import { ISVGIconProps } from '
|
|
3
|
-
|
|
2
|
+
import { ISVGIconProps } from '../../type';
|
|
3
|
+
declare const IconPersonArrowRight: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
|
|
4
4
|
export default IconPersonArrowRight;
|