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,29 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
var IconUpload = function IconUpload(_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: "M11.8991 12.4688L15.2935 15.8624L14.1615 16.9944L12.6991 15.532V20H11.0991V15.5304L9.63673 16.9944L8.50473 15.8624L11.8991 12.4688ZM11.8991 4C13.2727 4.00007 14.5984 4.50489 15.6241 5.41849C16.6498 6.3321 17.304 7.59077 17.4623 8.9552C18.4577 9.22665 19.3261 9.83928 19.9157 10.686C20.5052 11.5328 20.7785 12.5598 20.6876 13.5875C20.5968 14.6153 20.1477 15.5784 19.4188 16.3087C18.6899 17.0389 17.7275 17.4897 16.6999 17.5824V15.9712C17.0681 15.9186 17.422 15.7932 17.7412 15.6024C18.0604 15.4115 18.3383 15.159 18.5588 14.8595C18.7793 14.5601 18.9379 14.2197 19.0254 13.8583C19.1129 13.4968 19.1276 13.1216 19.0685 12.7545C19.0094 12.3873 18.8778 12.0356 18.6813 11.7199C18.4848 11.4042 18.2274 11.1307 17.9241 10.9156C17.6208 10.7004 17.2777 10.5478 16.9147 10.4667C16.5518 10.3856 16.1764 10.3776 15.8103 10.4432C15.9356 9.85991 15.9288 9.25598 15.7905 8.67564C15.6522 8.09531 15.3858 7.55327 15.0108 7.08922C14.6359 6.62518 14.1619 6.25089 13.6235 5.99376C13.0852 5.73663 12.4961 5.60317 11.8995 5.60317C11.3029 5.60317 10.7139 5.73663 10.1756 5.99376C9.63721 6.25089 9.16321 6.62518 8.78826 7.08922C8.4133 7.55327 8.1469 8.09531 8.00856 8.67564C7.87022 9.25598 7.86345 9.85991 7.98873 10.4432C7.25886 10.3061 6.50443 10.4646 5.89141 10.8838C5.27839 11.303 4.857 11.9485 4.71993 12.6784C4.58287 13.4083 4.74136 14.1627 5.16054 14.7757C5.57972 15.3887 6.22526 15.8101 6.95513 15.9472L7.09913 15.9712V17.5824C6.07149 17.4899 5.10906 17.0391 4.38004 16.309C3.65102 15.5788 3.2018 14.6156 3.11087 13.5879C3.01995 12.5601 3.29312 11.533 3.88263 10.6862C4.47214 9.83941 5.3405 9.22671 6.33593 8.9552C6.4941 7.5907 7.14826 6.33193 8.174 5.41829C9.19974 4.50466 10.5255 3.99989 11.8991 4V4Z",
|
|
25
|
-
fill: "#555555"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconUpload, IconUpload as default };
|
|
1
|
+
import{jsx as n}from"react/jsx-runtime";import e from"classnames";const v=({size:C,type:s,className:i="",onClick:a,refHandler:o,id:t,dataId:c})=>/* @__PURE__ */n("svg",{xmlns:"http://www.w3.org/2000/svg",className:e("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:t,"data-id":c?`${c}-svg-icon`:"",children:/* @__PURE__ */n("path",{d:"M11.8991 12.4688L15.2935 15.8624L14.1615 16.9944L12.6991 15.532V20H11.0991V15.5304L9.63673 16.9944L8.50473 15.8624L11.8991 12.4688ZM11.8991 4C13.2727 4.00007 14.5984 4.50489 15.6241 5.41849C16.6498 6.3321 17.304 7.59077 17.4623 8.9552C18.4577 9.22665 19.3261 9.83928 19.9157 10.686C20.5052 11.5328 20.7785 12.5598 20.6876 13.5875C20.5968 14.6153 20.1477 15.5784 19.4188 16.3087C18.6899 17.0389 17.7275 17.4897 16.6999 17.5824V15.9712C17.0681 15.9186 17.422 15.7932 17.7412 15.6024C18.0604 15.4115 18.3383 15.159 18.5588 14.8595C18.7793 14.5601 18.9379 14.2197 19.0254 13.8583C19.1129 13.4968 19.1276 13.1216 19.0685 12.7545C19.0094 12.3873 18.8778 12.0356 18.6813 11.7199C18.4848 11.4042 18.2274 11.1307 17.9241 10.9156C17.6208 10.7004 17.2777 10.5478 16.9147 10.4667C16.5518 10.3856 16.1764 10.3776 15.8103 10.4432C15.9356 9.85991 15.9288 9.25598 15.7905 8.67564C15.6522 8.09531 15.3858 7.55327 15.0108 7.08922C14.6359 6.62518 14.1619 6.25089 13.6235 5.99376C13.0852 5.73663 12.4961 5.60317 11.8995 5.60317C11.3029 5.60317 10.7139 5.73663 10.1756 5.99376C9.63721 6.25089 9.16321 6.62518 8.78826 7.08922C8.4133 7.55327 8.1469 8.09531 8.00856 8.67564C7.87022 9.25598 7.86345 9.85991 7.98873 10.4432C7.25886 10.3061 6.50443 10.4646 5.89141 10.8838C5.27839 11.303 4.857 11.9485 4.71993 12.6784C4.58287 13.4083 4.74136 14.1627 5.16054 14.7757C5.57972 15.3887 6.22526 15.8101 6.95513 15.9472L7.09913 15.9712V17.5824C6.07149 17.4899 5.10906 17.0391 4.38004 16.309C3.65102 15.5788 3.2018 14.6156 3.11087 13.5879C3.01995 12.5601 3.29312 11.533 3.88263 10.6862C4.47214 9.83941 5.3405 9.22671 6.33593 8.9552C6.4941 7.5907 7.14826 6.33193 8.174 5.41829C9.19974 4.50466 10.5255 3.99989 11.8991 4V4Z"})});export{v as default};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import{jsxs as h,jsx as i}from"react/jsx-runtime";import n from"classnames";const d=({size:e,type:t,className:l="",onClick:s,refHandler:a,id:d,dataId:r})=>/* @__PURE__ */h("svg",{xmlns:"http://www.w3.org/2000/svg",className:n("svg-icon",{[`svg-icon__size-${e}`]:e,[`svg-icon__type-${t}`]:t,[l]:l}),viewBox:"0 0 24 24",fill:"none",onClick:s,ref:a,id:d,"data-id":r?`${r}-svg-icon`:"",children:[
|
|
2
|
+
/* @__PURE__ */i("rect",{y:"3.42999",width:"24",height:"17.1429",rx:"2",fill:"white"}),
|
|
3
|
+
/* @__PURE__ */i("mask",{id:"mask0_1993_2165",style:{maskType:"luminance"},maskUnits:"userSpaceOnUse",x:"0",y:"3",width:"24",height:"18",children:/* @__PURE__ */i("rect",{y:"3.42999",width:"24",height:"17.1429",rx:"2",fill:"white"})}),
|
|
4
|
+
/* @__PURE__ */h("g",{mask:"url(#mask0_1993_2165)",children:[
|
|
5
|
+
/* @__PURE__ */i("rect",{y:"3.42999",width:"24",height:"17.1429",fill:"#0A17A7"}),
|
|
6
|
+
/* @__PURE__ */i("path",{d:"M-1.09929 1.78735L9.14287 8.69577V2.28718H14.8572V8.69573L25.0992 1.78736L26.3774 3.6823L18.2796 9.14432H24V14.8586H18.2796L26.3774 20.3206L25.0992 22.2155L14.8572 15.3072V21.7157H9.14287V15.3071L-1.09928 22.2156L-2.37744 20.3206L5.72032 14.8586H7.62939e-06V9.14432H5.72034L-2.37744 3.6823L-1.09929 1.78735Z",fill:"white"}),
|
|
7
|
+
/* @__PURE__ */i("path",{d:"M27.1356 1.53249C27.2368 1.68629 27.1942 1.89299 27.0404 1.99417L16.1843 9.13605C16.0305 9.23723 15.8238 9.19457 15.7227 9.04078C15.6215 8.88698 15.6641 8.68028 15.8179 8.5791L26.674 1.43722C26.8277 1.33604 27.0344 1.3787 27.1356 1.53249Z",fill:"#DB1F35"}),
|
|
8
|
+
/* @__PURE__ */i("path",{d:"M27.1621 21.9165C27.265 21.7639 27.2247 21.5567 27.072 21.4538L17.3401 14.8943C17.1875 14.7914 16.9803 14.8317 16.8774 14.9844C16.7745 15.137 16.8149 15.3442 16.9675 15.4471L26.6994 22.0066C26.852 22.1095 27.0592 22.0692 27.1621 21.9165Z",fill:"#DB1F35"}),
|
|
9
|
+
/* @__PURE__ */i("path",{d:"M-3.56564 1.81145C-3.46276 1.65878 -3.25559 1.61843 -3.10293 1.72132L7.04823 8.56255C7.20089 8.66544 7.24124 8.8726 7.13836 9.02526C7.03547 9.17792 6.82831 9.21828 6.67565 9.11539L-3.47551 2.27415C-3.62817 2.17127 -3.66853 1.96411 -3.56564 1.81145Z",fill:"#DB1F35"}),
|
|
10
|
+
/* @__PURE__ */i("path",{d:"M-3.56702 22.7375C-3.46528 22.8909 -3.25842 22.9328 -3.105 22.831L8.14717 15.3691C8.30059 15.2674 8.34249 15.0605 8.24074 14.9071C8.139 14.7537 7.93214 14.7118 7.77872 14.8135L-3.47344 22.2754C-3.62687 22.3772 -3.66876 22.584 -3.56702 22.7375Z",fill:"#DB1F35"}),
|
|
11
|
+
/* @__PURE__ */i("path",{d:"M0 13.7157H10.2857V20.5728H13.7143V13.7157H24V10.2871H13.7143V3.42999H10.2857V10.2871H0V13.7157Z",fill:"#E6273E"})]})]});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 IconUsd: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
|
|
4
4
|
export default IconUsd;
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
var IconUsd = function IconUsd(_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: "M12.7699 3.13324C12.7699 2.70841 12.4255 2.36401 12.0007 2.36401C11.5758 2.36401 11.2314 2.70841 11.2314 3.13324V5.44116H9.94869C8.92863 5.44116 7.95035 5.84638 7.22905 6.56767C6.50776 7.28897 6.10254 8.26725 6.10254 9.28732C6.10254 10.3074 6.50776 11.2857 7.22905 12.007C7.95035 12.7283 8.92863 13.1335 9.94869 13.1335H14.0513C14.6633 13.1335 15.2503 13.3766 15.683 13.8094C16.1158 14.2422 16.3589 14.8291 16.3589 15.4412C16.3589 16.0532 16.1158 16.6402 15.683 17.0729C15.2503 17.5057 14.6633 17.7489 14.0513 17.7489H12.0195C12.0132 17.7487 12.007 17.7486 12.0007 17.7486C11.9944 17.7486 11.9881 17.7487 11.9819 17.7489H9.96648C9.51179 17.7262 9.07383 17.5695 8.70782 17.2984C8.33768 17.0242 8.05807 16.6455 7.90495 16.2111C7.76374 15.8104 7.32445 15.6001 6.92377 15.7413C6.52309 15.8825 6.31276 16.3218 6.45397 16.7225C6.70916 17.4466 7.17519 18.0777 7.79209 18.5346C8.40898 18.9916 9.14852 19.2535 9.91551 19.2866C9.92656 19.2871 9.93763 19.2873 9.94869 19.2873H11.2314V21.5948C11.2314 22.0196 11.5758 22.364 12.0007 22.364C12.4255 22.364 12.7699 22.0196 12.7699 21.5948V19.2873H14.0513C15.0713 19.2873 16.0496 18.8821 16.7709 18.1608C17.4922 17.4395 17.8974 16.4612 17.8974 15.4412C17.8974 14.4211 17.4922 13.4428 16.7709 12.7215C16.0496 12.0002 15.0713 11.595 14.0513 11.595H9.94869C9.33665 11.595 8.74968 11.3519 8.31691 10.9191C7.88413 10.4863 7.641 9.89935 7.641 9.28732C7.641 8.67528 7.88413 8.08831 8.31691 7.65553C8.74968 7.22275 9.33666 6.97962 9.94869 6.97962H14.0335C14.4882 7.0023 14.9261 7.15897 15.2921 7.43009C15.6623 7.70427 15.9419 8.08294 16.095 8.51737C16.2362 8.91805 16.6755 9.12838 17.0762 8.98717C17.4769 8.84595 17.6872 8.40666 17.546 8.00598C17.2908 7.28193 16.8248 6.65081 16.2079 6.19385C15.591 5.73689 14.8514 5.475 14.0844 5.44188C14.0734 5.4414 14.0623 5.44116 14.0513 5.44116H12.7699V3.13324Z",
|
|
25
|
-
fill: "#222222"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconUsd, IconUsd as default };
|
|
1
|
+
import{jsx as n}from"react/jsx-runtime";import t from"classnames";const v=({size:C,type:s,className:e="",onClick:i,refHandler:a,id:o,dataId:c})=>/* @__PURE__ */n("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":c?`${c}-svg-icon`:"",children:/* @__PURE__ */n("path",{d:"M12.7699 3.13324C12.7699 2.70841 12.4255 2.36401 12.0007 2.36401C11.5758 2.36401 11.2314 2.70841 11.2314 3.13324V5.44116H9.94869C8.92863 5.44116 7.95035 5.84638 7.22905 6.56767C6.50776 7.28897 6.10254 8.26725 6.10254 9.28732C6.10254 10.3074 6.50776 11.2857 7.22905 12.007C7.95035 12.7283 8.92863 13.1335 9.94869 13.1335H14.0513C14.6633 13.1335 15.2503 13.3766 15.683 13.8094C16.1158 14.2422 16.3589 14.8291 16.3589 15.4412C16.3589 16.0532 16.1158 16.6402 15.683 17.0729C15.2503 17.5057 14.6633 17.7489 14.0513 17.7489H12.0195C12.0132 17.7487 12.007 17.7486 12.0007 17.7486C11.9944 17.7486 11.9881 17.7487 11.9819 17.7489H9.96648C9.51179 17.7262 9.07383 17.5695 8.70782 17.2984C8.33768 17.0242 8.05807 16.6455 7.90495 16.2111C7.76374 15.8104 7.32445 15.6001 6.92377 15.7413C6.52309 15.8825 6.31276 16.3218 6.45397 16.7225C6.70916 17.4466 7.17519 18.0777 7.79209 18.5346C8.40898 18.9916 9.14852 19.2535 9.91551 19.2866C9.92656 19.2871 9.93763 19.2873 9.94869 19.2873H11.2314V21.5948C11.2314 22.0196 11.5758 22.364 12.0007 22.364C12.4255 22.364 12.7699 22.0196 12.7699 21.5948V19.2873H14.0513C15.0713 19.2873 16.0496 18.8821 16.7709 18.1608C17.4922 17.4395 17.8974 16.4612 17.8974 15.4412C17.8974 14.4211 17.4922 13.4428 16.7709 12.7215C16.0496 12.0002 15.0713 11.595 14.0513 11.595H9.94869C9.33665 11.595 8.74968 11.3519 8.31691 10.9191C7.88413 10.4863 7.641 9.89935 7.641 9.28732C7.641 8.67528 7.88413 8.08831 8.31691 7.65553C8.74968 7.22275 9.33666 6.97962 9.94869 6.97962H14.0335C14.4882 7.0023 14.9261 7.15897 15.2921 7.43009C15.6623 7.70427 15.9419 8.08294 16.095 8.51737C16.2362 8.91805 16.6755 9.12838 17.0762 8.98717C17.4769 8.84595 17.6872 8.40666 17.546 8.00598C17.2908 7.28193 16.8248 6.65081 16.2079 6.19385C15.591 5.73689 14.8514 5.475 14.0844 5.44188C14.0734 5.4414 14.0623 5.44116 14.0513 5.44116H12.7699V3.13324Z"})});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 IconUsdFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
|
|
4
4
|
export default IconUsdFilled;
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
var IconUsdFilled = function IconUsdFilled(_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: "M12.7699 3.13324C12.7699 2.70841 12.4255 2.36401 12.0007 2.36401C11.5758 2.36401 11.2314 2.70841 11.2314 3.13324V5.44116H9.94869C8.92863 5.44116 7.95035 5.84638 7.22905 6.56767C6.50776 7.28897 6.10254 8.26725 6.10254 9.28732C6.10254 10.3074 6.50776 11.2857 7.22905 12.007C7.95035 12.7283 8.92863 13.1335 9.94869 13.1335H14.0513C14.6633 13.1335 15.2503 13.3766 15.683 13.8094C16.1158 14.2422 16.3589 14.8291 16.3589 15.4412C16.3589 16.0532 16.1158 16.6402 15.683 17.0729C15.2503 17.5057 14.6633 17.7489 14.0513 17.7489H12.0195C12.0132 17.7487 12.007 17.7486 12.0007 17.7486C11.9944 17.7486 11.9881 17.7487 11.9819 17.7489H9.96648C9.51179 17.7262 9.07383 17.5695 8.70782 17.2984C8.33768 17.0242 8.05807 16.6455 7.90495 16.2111C7.76374 15.8104 7.32445 15.6001 6.92377 15.7413C6.52309 15.8825 6.31276 16.3218 6.45397 16.7225C6.70916 17.4466 7.17519 18.0777 7.79209 18.5346C8.40898 18.9916 9.14852 19.2535 9.91551 19.2866C9.92656 19.2871 9.93763 19.2873 9.94869 19.2873H11.2314V21.5948C11.2314 22.0196 11.5758 22.364 12.0007 22.364C12.4255 22.364 12.7699 22.0196 12.7699 21.5948V19.2873H14.0513C15.0713 19.2873 16.0496 18.8821 16.7709 18.1608C17.4922 17.4395 17.8974 16.4612 17.8974 15.4412C17.8974 14.4211 17.4922 13.4428 16.7709 12.7215C16.0496 12.0002 15.0713 11.595 14.0513 11.595H9.94869C9.33665 11.595 8.74968 11.3519 8.31691 10.9191C7.88413 10.4863 7.641 9.89935 7.641 9.28732C7.641 8.67528 7.88413 8.08831 8.31691 7.65553C8.74968 7.22275 9.33666 6.97962 9.94869 6.97962H14.0335C14.4882 7.0023 14.9261 7.15897 15.2921 7.43009C15.6623 7.70427 15.9419 8.08294 16.095 8.51737C16.2362 8.91805 16.6755 9.12838 17.0762 8.98717C17.4769 8.84595 17.6872 8.40666 17.546 8.00598C17.2908 7.28193 16.8248 6.65081 16.2079 6.19385C15.591 5.73689 14.8514 5.475 14.0844 5.44188C14.0734 5.4414 14.0623 5.44116 14.0513 5.44116H12.7699V3.13324Z",
|
|
25
|
-
fill: "#222222"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconUsdFilled, IconUsdFilled as default };
|
|
1
|
+
import{jsx as n}from"react/jsx-runtime";import l from"classnames";const g=({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:l("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:"M12.7699 3.13324C12.7699 2.70841 12.4255 2.36401 12.0007 2.36401C11.5758 2.36401 11.2314 2.70841 11.2314 3.13324V5.44116H9.94869C8.92863 5.44116 7.95035 5.84638 7.22905 6.56767C6.50776 7.28897 6.10254 8.26725 6.10254 9.28732C6.10254 10.3074 6.50776 11.2857 7.22905 12.007C7.95035 12.7283 8.92863 13.1335 9.94869 13.1335H14.0513C14.6633 13.1335 15.2503 13.3766 15.683 13.8094C16.1158 14.2422 16.3589 14.8291 16.3589 15.4412C16.3589 16.0532 16.1158 16.6402 15.683 17.0729C15.2503 17.5057 14.6633 17.7489 14.0513 17.7489H12.0195C12.0132 17.7487 12.007 17.7486 12.0007 17.7486C11.9944 17.7486 11.9881 17.7487 11.9819 17.7489H9.96648C9.51179 17.7262 9.07383 17.5695 8.70782 17.2984C8.33768 17.0242 8.05807 16.6455 7.90495 16.2111C7.76374 15.8104 7.32445 15.6001 6.92377 15.7413C6.52309 15.8825 6.31276 16.3218 6.45397 16.7225C6.70916 17.4466 7.17519 18.0777 7.79209 18.5346C8.40898 18.9916 9.14852 19.2535 9.91551 19.2866C9.92656 19.2871 9.93763 19.2873 9.94869 19.2873H11.2314V21.5948C11.2314 22.0196 11.5758 22.364 12.0007 22.364C12.4255 22.364 12.7699 22.0196 12.7699 21.5948V19.2873H14.0513C15.0713 19.2873 16.0496 18.8821 16.7709 18.1608C17.4922 17.4395 17.8974 16.4612 17.8974 15.4412C17.8974 14.4211 17.4922 13.4428 16.7709 12.7215C16.0496 12.0002 15.0713 11.595 14.0513 11.595H9.94869C9.33665 11.595 8.74968 11.3519 8.31691 10.9191C7.88413 10.4863 7.641 9.89935 7.641 9.28732C7.641 8.67528 7.88413 8.08831 8.31691 7.65553C8.74968 7.22275 9.33666 6.97962 9.94869 6.97962H14.0335C14.4882 7.0023 14.9261 7.15897 15.2921 7.43009C15.6623 7.70427 15.9419 8.08294 16.095 8.51737C16.2362 8.91805 16.6755 9.12838 17.0762 8.98717C17.4769 8.84595 17.6872 8.40666 17.546 8.00598C17.2908 7.28193 16.8248 6.65081 16.2079 6.19385C15.591 5.73689 14.8514 5.475 14.0844 5.44188C14.0734 5.4414 14.0623 5.44116 14.0513 5.44116H12.7699V3.13324Z"})});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 IconUserMinus: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
|
|
4
4
|
export default IconUserMinus;
|
|
@@ -1,32 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
var IconUserMinus = function IconUserMinus(_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.3327 15H18.3327M9.99935 12.9167H6.24935C5.08638 12.9167 4.50489 12.9167 4.03173 13.0602C2.96639 13.3834 2.13272 14.217 1.80955 15.2824C1.66602 15.7555 1.66602 16.337 1.66602 17.5M12.0827 6.25C12.0827 8.32107 10.4038 10 8.33268 10C6.26161 10 4.58268 8.32107 4.58268 6.25C4.58268 4.17893 6.26161 2.5 8.33268 2.5C10.4038 2.5 12.0827 4.17893 12.0827 6.25Z",
|
|
25
|
-
stroke: "#5B5B81",
|
|
26
|
-
strokeWidth: "1.66667",
|
|
27
|
-
strokeLinecap: "round",
|
|
28
|
-
strokeLinejoin: "round"
|
|
29
|
-
}));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconUserMinus, IconUserMinus as default };
|
|
1
|
+
import{jsx as r}from"react/jsx-runtime";import g from"classnames";const a=({size:s,type:e,className:o="",onClick:i,refHandler:a,id:n,dataId:t})=>/* @__PURE__ */r("svg",{xmlns:"http://www.w3.org/2000/svg",className:g("svg-icon",{[`svg-icon__size-${s}`]:s,[`svg-icon__type-${e}`]:e,[o]:o}),viewBox:"0 0 24 24",fill:"none",onClick:i,ref:a,id:n,"data-id":t?`${t}-svg-icon`:"",children:/* @__PURE__ */r("path",{d:"M13.3327 15H18.3327M9.99935 12.9167H6.24935C5.08638 12.9167 4.50489 12.9167 4.03173 13.0602C2.96639 13.3834 2.13272 14.217 1.80955 15.2824C1.66602 15.7555 1.66602 16.337 1.66602 17.5M12.0827 6.25C12.0827 8.32107 10.4038 10 8.33268 10C6.26161 10 4.58268 8.32107 4.58268 6.25C4.58268 4.17893 6.26161 2.5 8.33268 2.5C10.4038 2.5 12.0827 4.17893 12.0827 6.25Z",stroke:"#5B5B81",strokeWidth:"1.66667",strokeLinecap:"round",strokeLinejoin:"round"})});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 IconVideo: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
|
|
4
4
|
export default IconVideo;
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
var IconVideo = function IconVideo(_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.75 4.5C15.5449 4.5 17 5.95507 17 7.75V7.923L20.8639 5.605C21.3638 5.30486 22 5.66493 22 6.248V17.75C22 18.333 21.364 18.6931 20.8641 18.3931L17 16.075V16.25C17 18.0449 15.5449 19.5 13.75 19.5H5.25C3.45507 19.5 2 18.0449 2 16.25V7.75C2 5.95507 3.45507 4.5 5.25 4.5H13.75ZM13.75 6H5.25C4.2835 6 3.5 6.7835 3.5 7.75V16.25C3.5 17.2165 4.2835 18 5.25 18H13.75C14.7165 18 15.5 17.2165 15.5 16.25V7.75C15.5 6.7835 14.7165 6 13.75 6ZM20.5 7.5731L17 9.6745V14.3254L20.5 16.4254V7.5731Z",
|
|
25
|
-
fill: "#222222"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconVideo, IconVideo as default };
|
|
1
|
+
import{jsx as C}from"react/jsx-runtime";import r from"classnames";const v=({size:s,type:e,className:i="",onClick:a,refHandler:o,id:n,dataId:t})=>/* @__PURE__ */C("svg",{xmlns:"http://www.w3.org/2000/svg",className:r("svg-icon",{[`svg-icon__size-${s}`]:s,[`svg-icon__type-${e}`]:e,[i]:i}),viewBox:"0 0 24 24",fill:"none",onClick:a,ref:o,id:n,"data-id":t?`${t}-svg-icon`:"",children:/* @__PURE__ */C("path",{d:"M13.75 4.5C15.5449 4.5 17 5.95507 17 7.75V7.923L20.8639 5.605C21.3638 5.30486 22 5.66493 22 6.248V17.75C22 18.333 21.364 18.6931 20.8641 18.3931L17 16.075V16.25C17 18.0449 15.5449 19.5 13.75 19.5H5.25C3.45507 19.5 2 18.0449 2 16.25V7.75C2 5.95507 3.45507 4.5 5.25 4.5H13.75ZM13.75 6H5.25C4.2835 6 3.5 6.7835 3.5 7.75V16.25C3.5 17.2165 4.2835 18 5.25 18H13.75C14.7165 18 15.5 17.2165 15.5 16.25V7.75C15.5 6.7835 14.7165 6 13.75 6ZM20.5 7.5731L17 9.6745V14.3254L20.5 16.4254V7.5731Z"})});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 IconVideoFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
|
|
4
4
|
export default IconVideoFilled;
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
var IconVideoFilled = function IconVideoFilled(_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: "M16 16.25C16 18.0449 14.5449 19.5 12.75 19.5H5.25C3.45507 19.5 2 18.0449 2 16.25V7.75C2 5.95507 3.45507 4.5 5.25 4.5H12.75C14.5449 4.5 16 5.95507 16 7.75V16.25ZM21.762 5.89334C21.9156 6.07414 22 6.30368 22 6.54096V17.4588C22 18.0111 21.5523 18.4588 21 18.4588C20.7627 18.4588 20.5332 18.3744 20.3524 18.2208L17 15.3709V8.62794L20.3524 5.77899C20.7732 5.42132 21.4043 5.47252 21.762 5.89334Z",
|
|
25
|
-
fill: "#222222"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconVideoFilled, IconVideoFilled as default };
|
|
1
|
+
import{jsx as e}from"react/jsx-runtime";import t from"classnames";const v=({size:s,type:i,className:a="",onClick:o,refHandler:n,id:c,dataId:r})=>/* @__PURE__ */e("svg",{xmlns:"http://www.w3.org/2000/svg",className:t("svg-icon",{[`svg-icon__size-${s}`]:s,[`svg-icon__type-${i}`]:i,[a]:a}),viewBox:"0 0 24 24",fill:"none",onClick:o,ref:n,id:c,"data-id":r?`${r}-svg-icon`:"",children:/* @__PURE__ */e("path",{d:"M16 16.25C16 18.0449 14.5449 19.5 12.75 19.5H5.25C3.45507 19.5 2 18.0449 2 16.25V7.75C2 5.95507 3.45507 4.5 5.25 4.5H12.75C14.5449 4.5 16 5.95507 16 7.75V16.25ZM21.762 5.89334C21.9156 6.07414 22 6.30368 22 6.54096V17.4588C22 18.0111 21.5523 18.4588 21 18.4588C20.7627 18.4588 20.5332 18.3744 20.3524 18.2208L17 15.3709V8.62794L20.3524 5.77899C20.7732 5.42132 21.4043 5.47252 21.762 5.89334Z"})});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 IconWallet: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
|
|
4
4
|
export default IconWallet;
|
|
@@ -1,32 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
var IconWallet = function IconWallet(_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: "M15.5 13.75C15.5 13.3358 15.8358 13 16.25 13H18.25C18.6642 13 19 13.3358 19 13.75C19 14.1642 18.6642 14.5 18.25 14.5H16.25C15.8358 14.5 15.5 14.1642 15.5 13.75ZM3 5H3.01373C3.13809 3.87501 4.09186 3 5.25 3H16.75C17.9926 3 19 4.00736 19 5.25V6.08697C20.4333 6.42555 21.5 7.71321 21.5 9.25V17.75C21.5 19.5449 20.0449 21 18.25 21H6.25C4.45508 21 3 19.5449 3 17.75V5ZM18.25 7.5H4.5V17.75C4.5 18.7165 5.2835 19.5 6.25 19.5H18.25C19.2165 19.5 20 18.7165 20 17.75V9.25C20 8.2835 19.2165 7.5 18.25 7.5ZM17.5 6V5.25C17.5 4.83579 17.1642 4.5 16.75 4.5H5.25C4.83579 4.5 4.5 4.83579 4.5 5.25C4.5 5.66421 4.83579 6 5.25 6H17.5Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconWallet, IconWallet as default };
|
|
1
|
+
import{jsx as C}from"react/jsx-runtime";import c from"classnames";const H=({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: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: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:"M15.5 13.75C15.5 13.3358 15.8358 13 16.25 13H18.25C18.6642 13 19 13.3358 19 13.75C19 14.1642 18.6642 14.5 18.25 14.5H16.25C15.8358 14.5 15.5 14.1642 15.5 13.75ZM3 5H3.01373C3.13809 3.87501 4.09186 3 5.25 3H16.75C17.9926 3 19 4.00736 19 5.25V6.08697C20.4333 6.42555 21.5 7.71321 21.5 9.25V17.75C21.5 19.5449 20.0449 21 18.25 21H6.25C4.45508 21 3 19.5449 3 17.75V5ZM18.25 7.5H4.5V17.75C4.5 18.7165 5.2835 19.5 6.25 19.5H18.25C19.2165 19.5 20 18.7165 20 17.75V9.25C20 8.2835 19.2165 7.5 18.25 7.5ZM17.5 6V5.25C17.5 4.83579 17.1642 4.5 16.75 4.5H5.25C4.83579 4.5 4.5 4.83579 4.5 5.25C4.5 5.66421 4.83579 6 5.25 6H17.5Z"})})});export{H 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 IconWalletFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
|
|
4
4
|
export default IconWalletFilled;
|
|
@@ -1,32 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
var IconWalletFilled = function IconWalletFilled(_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: "M3 5V17.75C3 19.5449 4.45508 21 6.25 21H18.25C20.0449 21 21.5 19.5449 21.5 17.75V9.25C21.5 7.71321 20.4333 6.42555 19 6.08697V5.25C19 4.00736 17.9926 3 16.75 3H5.25C4.09186 3 3.13809 3.87501 3.01373 5H3ZM5.25 6C4.83579 6 4.5 5.66421 4.5 5.25C4.5 4.83579 4.83579 4.5 5.25 4.5H16.75C17.1642 4.5 17.5 4.83579 17.5 5.25V6H5.25ZM16.25 13H18.25C18.6642 13 19 13.3358 19 13.75C19 14.1642 18.6642 14.5 18.25 14.5H16.25C15.8358 14.5 15.5 14.1642 15.5 13.75C15.5 13.3358 15.8358 13 16.25 13Z",
|
|
28
|
-
fill: "#222222"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconWalletFilled, IconWalletFilled as default };
|
|
1
|
+
import{jsx as i}from"react/jsx-runtime";import r from"classnames";const g=({size:e,type:s,className:a="",onClick:n,refHandler:o,id:d,dataId:l})=>/* @__PURE__ */i("svg",{xmlns:"http://www.w3.org/2000/svg",className:r("svg-icon",{[`svg-icon__size-${e}`]:e,[`svg-icon__type-${s}`]:s,[a]:a}),viewBox:"0 0 24 24",fill:"none",onClick:n,ref:o,id:d,"data-id":l?`${l}-svg-icon`:"",children:/* @__PURE__ */i("g",{id:"Size=24, Theme=Filled",children:/* @__PURE__ */i("path",{id:"Shape",d:"M3 5V17.75C3 19.5449 4.45508 21 6.25 21H18.25C20.0449 21 21.5 19.5449 21.5 17.75V9.25C21.5 7.71321 20.4333 6.42555 19 6.08697V5.25C19 4.00736 17.9926 3 16.75 3H5.25C4.09186 3 3.13809 3.87501 3.01373 5H3ZM5.25 6C4.83579 6 4.5 5.66421 4.5 5.25C4.5 4.83579 4.83579 4.5 5.25 4.5H16.75C17.1642 4.5 17.5 4.83579 17.5 5.25V6H5.25ZM16.25 13H18.25C18.6642 13 19 13.3358 19 13.75C19 14.1642 18.6642 14.5 18.25 14.5H16.25C15.8358 14.5 15.5 14.1642 15.5 13.75C15.5 13.3358 15.8358 13 16.25 13Z"})})});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 IconWarning: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
|
|
4
4
|
export default IconWarning;
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
var IconWarning = function IconWarning(_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: "M12.9993 17C12.9993 16.4484 12.5522 16.0013 12.0006 16.0013C11.4491 16.0013 11.002 16.4484 11.002 17C11.002 17.5515 11.4491 17.9986 12.0006 17.9986C12.5522 17.9986 12.9993 17.5515 12.9993 17ZM12.7401 9.1467C12.6901 8.78066 12.3761 8.49876 11.9964 8.49906C11.5822 8.49939 11.2467 8.83545 11.247 9.24966L11.2506 13.7513L11.2575 13.853C11.3075 14.2191 11.6215 14.501 12.0012 14.5007C12.4154 14.5003 12.7509 14.1643 12.7506 13.7501L12.747 9.24846L12.7401 9.1467ZM13.9693 3.65888C13.113 2.11108 10.8878 2.1111 10.0316 3.65893L2.28634 17.6604C1.45678 19.16 2.5414 20.9995 4.25518 20.9995H19.7462C21.46 20.9995 22.5446 19.16 21.715 17.6603L13.9693 3.65888ZM11.3442 4.38501C11.6296 3.86907 12.3713 3.86906 12.6567 4.38499L20.4025 18.3865C20.679 18.8863 20.3175 19.4995 19.7462 19.4995H4.25518C3.68392 19.4995 3.32238 18.8863 3.5989 18.3865L11.3442 4.38501Z",
|
|
25
|
-
fill: "#222222"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconWarning, IconWarning as default };
|
|
1
|
+
import{jsx as i}from"react/jsx-runtime";import t from"classnames";const v=({size:s,type:e,className:a="",onClick:C,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-${e}`]:e,[a]:a}),viewBox:"0 0 24 24",fill:"none",onClick:C,ref:o,id:n,"data-id":c?`${c}-svg-icon`:"",children:/* @__PURE__ */i("path",{d:"M12.9993 17C12.9993 16.4484 12.5522 16.0013 12.0006 16.0013C11.4491 16.0013 11.002 16.4484 11.002 17C11.002 17.5515 11.4491 17.9986 12.0006 17.9986C12.5522 17.9986 12.9993 17.5515 12.9993 17ZM12.7401 9.1467C12.6901 8.78066 12.3761 8.49876 11.9964 8.49906C11.5822 8.49939 11.2467 8.83545 11.247 9.24966L11.2506 13.7513L11.2575 13.853C11.3075 14.2191 11.6215 14.501 12.0012 14.5007C12.4154 14.5003 12.7509 14.1643 12.7506 13.7501L12.747 9.24846L12.7401 9.1467ZM13.9693 3.65888C13.113 2.11108 10.8878 2.1111 10.0316 3.65893L2.28634 17.6604C1.45678 19.16 2.5414 20.9995 4.25518 20.9995H19.7462C21.46 20.9995 22.5446 19.16 21.715 17.6603L13.9693 3.65888ZM11.3442 4.38501C11.6296 3.86907 12.3713 3.86906 12.6567 4.38499L20.4025 18.3865C20.679 18.8863 20.3175 19.4995 19.7462 19.4995H4.25518C3.68392 19.4995 3.32238 18.8863 3.5989 18.3865L11.3442 4.38501Z"})});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 IconWarningFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
|
|
4
4
|
export default IconWarningFilled;
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
var IconWarningFilled = function IconWarningFilled(_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: "M10.0297 3.65893C10.8859 2.1111 13.1111 2.11108 13.9673 3.65888L21.7131 17.6603C22.5427 19.16 21.4581 20.9995 19.7443 20.9995H4.25323C2.53945 20.9995 1.45483 19.16 2.28438 17.6604L10.0297 3.65893ZM12.9973 17.0009C12.9973 16.4494 12.5502 16.0022 11.9987 16.0022C11.4471 16.0022 11 16.4494 11 17.0009C11 17.5524 11.4471 17.9996 11.9987 17.9996C12.5502 17.9996 12.9973 17.5524 12.9973 17.0009ZM12.7381 9.14764C12.6882 8.7816 12.3742 8.4997 11.9945 8.5C11.5802 8.50033 11.2447 8.83639 11.2451 9.2506L11.2487 13.7522L11.2556 13.854C11.3055 14.22 11.6196 14.5019 11.9993 14.5016C12.4135 14.5013 12.749 14.1652 12.7487 13.751L12.7451 9.2494L12.7381 9.14764Z",
|
|
25
|
-
fill: "#222222"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export { IconWarningFilled, IconWarningFilled as default };
|
|
1
|
+
import{jsx as C}from"react/jsx-runtime";import g from"classnames";const v=({size:s,type:e,className:i="",onClick:a,refHandler:o,id:n,dataId:t})=>/* @__PURE__ */C("svg",{xmlns:"http://www.w3.org/2000/svg",className:g("svg-icon",{[`svg-icon__size-${s}`]:s,[`svg-icon__type-${e}`]:e,[i]:i}),viewBox:"0 0 24 24",fill:"none",onClick:a,ref:o,id:n,"data-id":t?`${t}-svg-icon`:"",children:/* @__PURE__ */C("path",{d:"M10.0297 3.65893C10.8859 2.1111 13.1111 2.11108 13.9673 3.65888L21.7131 17.6603C22.5427 19.16 21.4581 20.9995 19.7443 20.9995H4.25323C2.53945 20.9995 1.45483 19.16 2.28438 17.6604L10.0297 3.65893ZM12.9973 17.0009C12.9973 16.4494 12.5502 16.0022 11.9987 16.0022C11.4471 16.0022 11 16.4494 11 17.0009C11 17.5524 11.4471 17.9996 11.9987 17.9996C12.5502 17.9996 12.9973 17.5524 12.9973 17.0009ZM12.7381 9.14764C12.6882 8.7816 12.3742 8.4997 11.9945 8.5C11.5802 8.50033 11.2447 8.83639 11.2451 9.2506L11.2487 13.7522L11.2556 13.854C11.3055 14.22 11.6196 14.5019 11.9993 14.5016C12.4135 14.5013 12.749 14.1652 12.7487 13.751L12.7451 9.2494L12.7381 9.14764Z"})});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 IconYoutube: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
|
|
4
4
|
export default IconYoutube;
|
|
@@ -1,32 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import classNames from 'classnames';
|
|
4
|
-
|
|
5
|
-
var IconYoutube = function IconYoutube(_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: "Lozenge"
|
|
25
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
26
|
-
id: "Vector",
|
|
27
|
-
d: "M23.7609 4.20005C23.7609 4.20005 23.5266 2.54536 22.8047 1.8188C21.8906 0.862549 20.8688 0.857861 20.4 0.801611C17.0438 0.557861 12.0047 0.557861 12.0047 0.557861H11.9953C11.9953 0.557861 6.95625 0.557861 3.6 0.801611C3.13125 0.857861 2.10938 0.862549 1.19531 1.8188C0.473438 2.54536 0.24375 4.20005 0.24375 4.20005C0.24375 4.20005 0 6.14536 0 8.08599V9.90474C0 11.8454 0.239062 13.7907 0.239062 13.7907C0.239062 13.7907 0.473437 15.4454 1.19062 16.1719C2.10469 17.1282 3.30469 17.0954 3.83906 17.1985C5.76094 17.3813 12 17.4375 12 17.4375C12 17.4375 17.0438 17.4282 20.4 17.1891C20.8688 17.1329 21.8906 17.1282 22.8047 16.1719C23.5266 15.4454 23.7609 13.7907 23.7609 13.7907C23.7609 13.7907 24 11.85 24 9.90474V8.08599C24 6.14536 23.7609 4.20005 23.7609 4.20005ZM9.52031 12.1125V5.36724L16.0031 8.75161L9.52031 12.1125Z",
|
|
28
|
-
fill: "#555555"
|
|
29
|
-
})));
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { IconYoutube, IconYoutube as default };
|
|
1
|
+
import{jsx as o}from"react/jsx-runtime";import t from"classnames";const v=({size:e,type:s,className:i="",onClick:C,refHandler:a,id:n,dataId:c})=>/* @__PURE__ */o("svg",{xmlns:"http://www.w3.org/2000/svg",className:t("svg-icon",{[`svg-icon__size-${e}`]:e,[`svg-icon__type-${s}`]:s,[i]:i}),viewBox:"0 0 24 24",fill:"none",onClick:C,ref:a,id:n,"data-id":c?`${c}-svg-icon`:"",children:/* @__PURE__ */o("g",{id:"Lozenge",children:/* @__PURE__ */o("path",{id:"Vector",d:"M23.7609 4.20005C23.7609 4.20005 23.5266 2.54536 22.8047 1.8188C21.8906 0.862549 20.8688 0.857861 20.4 0.801611C17.0438 0.557861 12.0047 0.557861 12.0047 0.557861H11.9953C11.9953 0.557861 6.95625 0.557861 3.6 0.801611C3.13125 0.857861 2.10938 0.862549 1.19531 1.8188C0.473438 2.54536 0.24375 4.20005 0.24375 4.20005C0.24375 4.20005 0 6.14536 0 8.08599V9.90474C0 11.8454 0.239062 13.7907 0.239062 13.7907C0.239062 13.7907 0.473437 15.4454 1.19062 16.1719C2.10469 17.1282 3.30469 17.0954 3.83906 17.1985C5.76094 17.3813 12 17.4375 12 17.4375C12 17.4375 17.0438 17.4282 20.4 17.1891C20.8688 17.1329 21.8906 17.1282 22.8047 16.1719C23.5266 15.4454 23.7609 13.7907 23.7609 13.7907C23.7609 13.7907 24 11.85 24 9.90474V8.08599C24 6.14536 23.7609 4.20005 23.7609 4.20005ZM9.52031 12.1125V5.36724L16.0031 8.75161L9.52031 12.1125Z"})})});export{v as default};
|