@alif-ui-test/core 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.txt +5 -0
- package/dist/assets/fonts/ALS_Hauss_VF_1.1.ttf +0 -0
- package/dist/assets/fonts/als_hauss_bold.woff2 +0 -0
- package/dist/assets/fonts/als_hauss_medium.woff2 +0 -0
- package/dist/assets/fonts/als_hauss_regular.woff2 +0 -0
- package/dist/components/Accordion/Accordion.js +33 -0
- package/dist/components/Accordion/Accordion.module.css.js +21 -0
- package/dist/components/Accordion/Accordion.types.js +1 -0
- package/dist/components/Accordion/Accordion.utils.js +10 -0
- package/dist/components/Accordion/AccordionDetails/AccordionDetails.js +11 -0
- package/dist/components/Accordion/AccordionSummary/AccordionSummary.js +53 -0
- package/dist/components/ActionButton/ActionButton.js +50 -0
- package/dist/components/ActionButton/ActionButton.module.css.js +9 -0
- package/dist/components/ActionButton/ActionButton.types.js +1 -0
- package/dist/components/ActionButton/ActionButton.utils.js +48 -0
- package/dist/components/Alert/Alert.js +42 -0
- package/dist/components/Alert/Alert.module.css.js +11 -0
- package/dist/components/Alert/Alert.types.js +1 -0
- package/dist/components/Alert/Alert.utils.js +9 -0
- package/dist/components/AppLayout/AppLayout.js +12 -0
- package/dist/components/AppLayout/AppLayout.module.css.js +13 -0
- package/dist/components/AppLayout/AppLayout.types.js +1 -0
- package/dist/components/Avatar/Avatar.js +41 -0
- package/dist/components/Avatar/Avatar.module.css.js +19 -0
- package/dist/components/Avatar/Avatar.types.js +1 -0
- package/dist/components/Avatar/Avatar.utils.js +130 -0
- package/dist/components/Avatar/AvatarGroup/AvatarGroup.js +12 -0
- package/dist/components/Avatar/AvatarGroup/AvatarGroup.module.css.js +7 -0
- package/dist/components/Backdrop/Backdrop.js +59 -0
- package/dist/components/Backdrop/Backdrop.module.css.js +9 -0
- package/dist/components/Backdrop/Backdrop.types.js +1 -0
- package/dist/components/Backdrop/BackdropOverlay.js +8 -0
- package/dist/components/Backdrop/useZIndexStack.js +28 -0
- package/dist/components/Badge/Badge.js +31 -0
- package/dist/components/Badge/Badge.module.css.js +9 -0
- package/dist/components/Badge/Badge.types.js +1 -0
- package/dist/components/Badge/Badge.utils.js +40 -0
- package/dist/components/Breadcrumbs/Breadcrumb/Breadcrumb.js +19 -0
- package/dist/components/Breadcrumbs/Breadcrumb/Breadcrumb.module.css.js +9 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.js +58 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.module.css.js +9 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.types.js +1 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.utils.js +18 -0
- package/dist/components/Breadcrumbs/BreadcrumbsMenu/BreadcrumbsMenu.js +46 -0
- package/dist/components/Breadcrumbs/BreadcrumbsMenu/BreadcrumbsMenu.module.css.js +11 -0
- package/dist/components/Button/Button.js +46 -0
- package/dist/components/Button/Button.module.css.js +11 -0
- package/dist/components/Button/Button.types.js +1 -0
- package/dist/components/Button/Button.utils.js +69 -0
- package/dist/components/Checkbox/Checkbox.js +54 -0
- package/dist/components/Checkbox/Checkbox.module.css.js +21 -0
- package/dist/components/Checkbox/Checkbox.types.js +1 -0
- package/dist/components/Checkbox/Checkbox.utils.js +44 -0
- package/dist/components/Collapse/Collapse.js +11 -0
- package/dist/components/Collapse/Collapse.types.js +1 -0
- package/dist/components/DatePicker/DatePicker.js +134 -0
- package/dist/components/DatePicker/DatePicker.module.css.js +13 -0
- package/dist/components/DatePicker/DatePicker.types.js +1 -0
- package/dist/components/DatePicker/DatePicker.utils.js +86 -0
- package/dist/components/DatePicker/Picker/Picker.js +944 -0
- package/dist/components/DatePicker/Picker/Picker.module.css.js +55 -0
- package/dist/components/DatePicker/Picker/Picker.types.js +1 -0
- package/dist/components/DatePicker/Picker/Picker.utils.js +62 -0
- package/dist/components/Dates/Dates.module.css.js +73 -0
- package/dist/components/Dates/Dates.utils.js +65 -0
- package/dist/components/Dates/InputDatePicker/DatePicker/DatePicker.constants.js +8 -0
- package/dist/components/Dates/InputDatePicker/DatePicker/DatePicker.js +238 -0
- package/dist/components/Dates/InputDatePicker/DatePicker/DatePicker.types.js +1 -0
- package/dist/components/Dates/InputDatePicker/DatePicker/DatePicker.utils.js +47 -0
- package/dist/components/Dates/InputDatePicker/InputDatePicker.js +119 -0
- package/dist/components/Dates/InputDatePicker/InputDatePicker.types.js +1 -0
- package/dist/components/Dates/InputDatePicker/InputDatePicker.utils.js +70 -0
- package/dist/components/Dates/InputMonthPicker/InputMonthPicker.js +110 -0
- package/dist/components/Dates/InputMonthPicker/InputMonthPicker.types.js +1 -0
- package/dist/components/Dates/InputMonthPicker/InputMonthPicker.utils.js +23 -0
- package/dist/components/Dates/InputMonthPicker/MonthPicker/MonthPicker.constants.js +47 -0
- package/dist/components/Dates/InputMonthPicker/MonthPicker/MonthPicker.js +59 -0
- package/dist/components/Dates/InputMonthPicker/MonthPicker/MonthPicker.types.js +1 -0
- package/dist/components/Dates/InputMonthYearPicker/InputMonthYearPicker.js +110 -0
- package/dist/components/Dates/InputMonthYearPicker/InputMonthYearPicker.utils.js +44 -0
- package/dist/components/Dates/InputMonthYearPicker/InputYearMonthPicker.types.js +1 -0
- package/dist/components/Dates/InputMonthYearPicker/MonthYearPicker/MonthYearPicker.js +134 -0
- package/dist/components/Dates/InputMonthYearPicker/MonthYearPicker/MonthYearPicker.types.js +1 -0
- package/dist/components/Dates/InputMonthYearPicker/MonthYearPicker/MonthYearPicker.utils.js +20 -0
- package/dist/components/Dates/InputTimePicker/InputTimePicker.js +88 -0
- package/dist/components/Dates/InputTimePicker/InputTimePicker.types.js +1 -0
- package/dist/components/Dates/InputTimePicker/InputTimePicker.utils.js +17 -0
- package/dist/components/Dates/InputTimePicker/TimePicker/TimeColumn.js +31 -0
- package/dist/components/Dates/InputTimePicker/TimePicker/TimePicker.js +102 -0
- package/dist/components/Dates/InputTimePicker/TimePicker/TimePicker.types.js +1 -0
- package/dist/components/Dates/InputTimePicker/TimePicker/TimePicker.utils.js +38 -0
- package/dist/components/Dates/InputTimePicker/TimePicker/useScrollSync.js +27 -0
- package/dist/components/Dates/InputYearPicker/InputYearPicker.js +100 -0
- package/dist/components/Dates/InputYearPicker/InputYearPicker.types.js +1 -0
- package/dist/components/Dates/InputYearPicker/InputYearPicker.utils.js +21 -0
- package/dist/components/Dates/InputYearPicker/YearPicker/YearPicker.js +61 -0
- package/dist/components/Dates/InputYearPicker/YearPicker/YearPicker.types.js +1 -0
- package/dist/components/Dates/PickerContent/PickerContent.js +64 -0
- package/dist/components/Dates/PickerContent/PickerContent.types.js +1 -0
- package/dist/components/Dates/PickerContent/PickerContent.utils.js +20 -0
- package/dist/components/Dates/PickerHeader/PickerHeader.js +60 -0
- package/dist/components/Dates/PickerHeader/PickerHeader.types.js +1 -0
- package/dist/components/Dates/PickerOptions/PickerOptions.js +36 -0
- package/dist/components/Dates/PickerOptions/PickerOptions.types.js +1 -0
- package/dist/components/Divider/Divider.js +18 -0
- package/dist/components/Divider/Divider.module.css.js +7 -0
- package/dist/components/Divider/Divider.types.js +1 -0
- package/dist/components/Divider/Divider.utils.js +10 -0
- package/dist/components/Drawer/Drawer.js +74 -0
- package/dist/components/Drawer/Drawer.module.css.js +33 -0
- package/dist/components/Drawer/Drawer.types.js +1 -0
- package/dist/components/Drawer/Drawer.utils.js +14 -0
- package/dist/components/Field/Field.js +69 -0
- package/dist/components/Field/Field.types.js +1 -0
- package/dist/components/Field/InputBase/InputBase.js +52 -0
- package/dist/components/Field/InputBase/InputBase.module.css.js +11 -0
- package/dist/components/Field/InputBase/InputBase.utils.js +24 -0
- package/dist/components/Field/InputBaseWrapper/InputBaseWrapper.js +86 -0
- package/dist/components/Field/InputBaseWrapper/InputBaseWrapper.module.css.js +35 -0
- package/dist/components/Field/InputBaseWrapper/InputBaseWrapper.utils.js +65 -0
- package/dist/components/FileUploader/FileUploader.js +131 -0
- package/dist/components/FileUploader/FileUploader.module.css.js +23 -0
- package/dist/components/FileUploader/FileUploader.types.js +1 -0
- package/dist/components/FileUploader/FileUploader.utils.js +29 -0
- package/dist/components/FileView/FileView.js +75 -0
- package/dist/components/FileView/FileView.module.css.js +27 -0
- package/dist/components/FileView/FileView.types.js +1 -0
- package/dist/components/FileView/FileView.utils.js +4 -0
- package/dist/components/FunctionButton/FunctionButton.js +28 -0
- package/dist/components/FunctionButton/FunctionButton.module.css.js +7 -0
- package/dist/components/FunctionButton/FunctionButton.types.js +1 -0
- package/dist/components/FunctionButton/FunctionButton.utils.js +36 -0
- package/dist/components/Hinter/Hinter.js +53 -0
- package/dist/components/Hinter/Hinter.module.css.js +15 -0
- package/dist/components/Hinter/Hinter.types.js +1 -0
- package/dist/components/Input/Input.js +43 -0
- package/dist/components/Input/Input.module.css.js +9 -0
- package/dist/components/Input/Input.types.js +1 -0
- package/dist/components/InputOtp/InputOtp.js +70 -0
- package/dist/components/InputOtp/InputOtp.module.css.js +13 -0
- package/dist/components/InputOtp/InputOtp.types.js +1 -0
- package/dist/components/InputOtp/InputOtp.utils.js +38 -0
- package/dist/components/ListItem/ListItem.js +119 -0
- package/dist/components/ListItem/ListItem.module.css.js +31 -0
- package/dist/components/ListItem/ListItem.types.js +1 -0
- package/dist/components/ListItem/ListItem.utils.js +50 -0
- package/dist/components/Loader/Loader.js +7 -0
- package/dist/components/Loader/Loader.module.css.js +7 -0
- package/dist/components/Loader/Loader.types.js +1 -0
- package/dist/components/Loader/Loader.utils.js +14 -0
- package/dist/components/Menu/Menu.context.js +6 -0
- package/dist/components/Menu/Menu.js +38 -0
- package/dist/components/Menu/Menu.module.css.js +9 -0
- package/dist/components/Menu/Menu.types.js +1 -0
- package/dist/components/Menu/Menu.utils.js +12 -0
- package/dist/components/Menu/MenuItem/MenuItem.js +47 -0
- package/dist/components/Menu/MenuItem/MenuItem.module.css.js +13 -0
- package/dist/components/Menu/MenuItem/MenuItem.utils.js +34 -0
- package/dist/components/Modal/Modal.js +48 -0
- package/dist/components/Modal/Modal.module.css.js +23 -0
- package/dist/components/Modal/Modal.types.js +1 -0
- package/dist/components/Modal/Modal.utils.js +8 -0
- package/dist/components/Modal/ModalActions/ModalActions.js +5 -0
- package/dist/components/Modal/ModalContent/ModalContent.js +7 -0
- package/dist/components/Modal/ModalHeader/ModalHeader.js +43 -0
- package/dist/components/Navbar/Navbar.js +23 -0
- package/dist/components/Navbar/Navbar.module.css.js +12 -0
- package/dist/components/Navbar/Navbar.types.js +1 -0
- package/dist/components/Pagination/Pagination.hook.js +27 -0
- package/dist/components/Pagination/Pagination.js +182 -0
- package/dist/components/Pagination/Pagination.module.css.js +27 -0
- package/dist/components/Pagination/Pagination.types.js +1 -0
- package/dist/components/Pagination/Pagination.utils.js +37 -0
- package/dist/components/Paper/Elevated/Elevated.js +39 -0
- package/dist/components/Paper/Elevated/Elevated.module.css.js +7 -0
- package/dist/components/Paper/Elevated/Elevated.types.js +1 -0
- package/dist/components/Paper/Elevated/Elevated.utils.js +8 -0
- package/dist/components/Paper/Paper.module.css.js +15 -0
- package/dist/components/Paper/Paper.type.js +1 -0
- package/dist/components/Paper/Paper.utils.js +15 -0
- package/dist/components/Paper/Surface/Surface.js +39 -0
- package/dist/components/Paper/Surface/Surface.module.css.js +7 -0
- package/dist/components/Paper/Surface/Surface.types.js +1 -0
- package/dist/components/Paper/Surface/Surface.utils.js +6 -0
- package/dist/components/Popover/Popover.context.js +8 -0
- package/dist/components/Popover/Popover.js +73 -0
- package/dist/components/Popover/Popover.module.css.js +9 -0
- package/dist/components/Popover/Popover.types.js +1 -0
- package/dist/components/Popover/PopoverDropdown/PopoverArrow.js +24 -0
- package/dist/components/Popover/PopoverDropdown/PopoverDropdown.js +71 -0
- package/dist/components/Popover/PopoverTrigger/PopoverTrigger.js +31 -0
- package/dist/components/Popover/useFloatingPosition/getScrollableAncestors.js +12 -0
- package/dist/components/Popover/useFloatingPosition/useFloating.types.js +1 -0
- package/dist/components/Popover/useFloatingPosition/useFloating.util.js +55 -0
- package/dist/components/Popover/useFloatingPosition/useFloatingPosition.js +43 -0
- package/dist/components/Portal/Portal.js +22 -0
- package/dist/components/Portal/Portal.types.js +1 -0
- package/dist/components/ProgressBar/ProgressBar.js +25 -0
- package/dist/components/ProgressBar/ProgressBar.module.css.js +7 -0
- package/dist/components/ProgressBar/ProgressBar.types.js +1 -0
- package/dist/components/ProgressBar/ProgressBar.utils.js +9 -0
- package/dist/components/Radio/Radio.js +44 -0
- package/dist/components/Radio/Radio.module.css.js +15 -0
- package/dist/components/Radio/Radio.types.js +1 -0
- package/dist/components/Radio/Radio.utils.js +59 -0
- package/dist/components/Radio/RadioGroup/RadioGroup.js +41 -0
- package/dist/components/Radio/RadioGroup/RadioGroup.module.css.js +11 -0
- package/dist/components/Radio/RadioGroup/RadioGroup.types.js +1 -0
- package/dist/components/Rating/Rating.js +43 -0
- package/dist/components/Rating/Rating.module.css.js +13 -0
- package/dist/components/Rating/Rating.types.js +1 -0
- package/dist/components/Rating/Rating.utils.js +9 -0
- package/dist/components/RemoveScroll/RemoveScroll.js +15 -0
- package/dist/components/Search/Search.js +44 -0
- package/dist/components/Search/Search.module.css.js +15 -0
- package/dist/components/Search/Search.types.js +1 -0
- package/dist/components/Search/Search.utils.js +14 -0
- package/dist/components/SearchAccent/SearchAccent.js +61 -0
- package/dist/components/SearchAccent/SearchAccent.module.css.js +11 -0
- package/dist/components/SearchAccent/SearchAccent.types.js +1 -0
- package/dist/components/SearchAccent/SearchAccent.utils.js +11 -0
- package/dist/components/SegmentedControl/SegmentedControl.js +40 -0
- package/dist/components/SegmentedControl/SegmentedControl.module.css.js +9 -0
- package/dist/components/SegmentedControl/SegmentedControl.types.js +1 -0
- package/dist/components/SegmentedControl/SegmentedControl.utils.js +22 -0
- package/dist/components/Select/Select.js +140 -0
- package/dist/components/Select/Select.module.css.js +15 -0
- package/dist/components/Select/Select.types.js +1 -0
- package/dist/components/Select/Select.utils.js +6 -0
- package/dist/components/SelectMultiple/SelectMultiple.js +182 -0
- package/dist/components/SelectMultiple/SelectMultiple.module.css.js +25 -0
- package/dist/components/SelectMultiple/SelectMultiple.types.js +1 -0
- package/dist/components/SelectorInput/SelectorInput.js +81 -0
- package/dist/components/SelectorInput/SelectorInput.module.css.js +21 -0
- package/dist/components/SelectorInput/SelectorInput.types.js +1 -0
- package/dist/components/SelectorInput/SelectorInput.utils.js +49 -0
- package/dist/components/Sidebar/Sidebar.context.js +6 -0
- package/dist/components/Sidebar/Sidebar.js +82 -0
- package/dist/components/Sidebar/Sidebar.module.css.js +21 -0
- package/dist/components/Sidebar/Sidebar.types.js +1 -0
- package/dist/components/Sidebar/Sidebar.utils.js +66 -0
- package/dist/components/Sidebar/SidebarBottom/SidebarBottom.js +20 -0
- package/dist/components/Sidebar/SidebarBottom/SidebarBottom.module.css.js +7 -0
- package/dist/components/Sidebar/SidebarCollapse/SidebarCollapse.js +65 -0
- package/dist/components/Sidebar/SidebarCollapse/SidebarCollapse.module.css.js +19 -0
- package/dist/components/Sidebar/SidebarControlButton/SidebarControlButton.js +16 -0
- package/dist/components/Sidebar/SidebarControlButton/SidebarControlButton.module.css.js +9 -0
- package/dist/components/Sidebar/SidebarElement/SidebarElement.js +10 -0
- package/dist/components/Sidebar/SidebarElement/SidebarElement.module.css.js +8 -0
- package/dist/components/Sidebar/SidebarHeader/SidebarHeader.js +17 -0
- package/dist/components/Sidebar/SidebarHeader/SidebarHeader.module.css.js +9 -0
- package/dist/components/Sidebar/SidebarItem/SidebarItem.js +36 -0
- package/dist/components/Sidebar/SidebarItem/SidebarItem.module.css.js +21 -0
- package/dist/components/Sidebar/SidebarItems/SidebarItems.js +25 -0
- package/dist/components/Skeleton/Skeleton.js +23 -0
- package/dist/components/Skeleton/Skeleton.module.css.js +7 -0
- package/dist/components/Skeleton/Skeleton.types.js +1 -0
- package/dist/components/Skeleton/Skeleton.utils.js +9 -0
- package/dist/components/Slider/Label/Label.js +35 -0
- package/dist/components/Slider/Label/Label.types.js +1 -0
- package/dist/components/Slider/Marks/Marks.js +33 -0
- package/dist/components/Slider/Marks/Marks.types.js +1 -0
- package/dist/components/Slider/RangeSlider/RangeSlider.js +78 -0
- package/dist/components/Slider/RangeSlider/RangeSlider.types.js +1 -0
- package/dist/components/Slider/RangeSlider/RangeSlider.utils.js +11 -0
- package/dist/components/Slider/Slider/Slider.js +48 -0
- package/dist/components/Slider/Slider/Slider.types.js +1 -0
- package/dist/components/Slider/Slider/Slider.utils.js +8 -0
- package/dist/components/Slider/Slider.module.css.js +33 -0
- package/dist/components/Slider/Slider.types.js +1 -0
- package/dist/components/Slider/Slider.utils.js +16 -0
- package/dist/components/Slider/SliderBase/SliderBase.js +38 -0
- package/dist/components/Slider/SliderBase/SliderBase.types.js +1 -0
- package/dist/components/Slider/Thumb/Thumb.js +70 -0
- package/dist/components/Slider/Thumb/Thumb.types.js +1 -0
- package/dist/components/Slider/Track/Track.js +16 -0
- package/dist/components/Slider/Track/Track.types.js +1 -0
- package/dist/components/Snackbar/Snackbar.js +105 -0
- package/dist/components/Snackbar/Snackbar.module.css.js +19 -0
- package/dist/components/Snackbar/Snackbar.types.js +1 -0
- package/dist/components/Snackbar/Snackbar.utils.js +52 -0
- package/dist/components/Snackbar/SnackbarTimer/SnackbarTimer.js +31 -0
- package/dist/components/Snackbar/SnackbarTimer/SnackbarTimer.module.css.js +11 -0
- package/dist/components/Switch/Switch.js +28 -0
- package/dist/components/Switch/Switch.module.css.js +17 -0
- package/dist/components/Switch/Switch.types.js +1 -0
- package/dist/components/Switch/Switch.utils.js +40 -0
- package/dist/components/Tab/Tab.js +61 -0
- package/dist/components/Tab/Tab.module.css.js +19 -0
- package/dist/components/Tab/Tab.types.js +1 -0
- package/dist/components/Tab/Tab.utils.js +128 -0
- package/dist/components/Tab/TabGroup/TabGroup.js +61 -0
- package/dist/components/Tab/TabGroup/TabGroup.module.css.js +9 -0
- package/dist/components/Tab/TabGroup/TabGroup.types.js +1 -0
- package/dist/components/Tab/TabMenu/TabMenu.js +11 -0
- package/dist/components/Tab/TabMenu/TabMenu.types.js +1 -0
- package/dist/components/Tab/TabMenu/TabMenu.utils.js +13 -0
- package/dist/components/TabMenuNew/TabMenuNew.js +49 -0
- package/dist/components/TabMenuNew/TabMenuNew.module.css.js +11 -0
- package/dist/components/TabMenuNew/TabMenuNew.types.js +1 -0
- package/dist/components/TabMenuNew/TabMenuNew.utils.js +8 -0
- package/dist/components/Table/Table.js +114 -0
- package/dist/components/Table/Table.module.css.js +45 -0
- package/dist/components/Table/Table.types.js +1 -0
- package/dist/components/Table/Table.utils.js +35 -0
- package/dist/components/Table/TableHeader/TableHeader.js +88 -0
- package/dist/components/Table/TableHeader/TableHeader.types.js +1 -0
- package/dist/components/Table/TableRow/TableRow.js +94 -0
- package/dist/components/Table/TableRow/TableRow.types.js +1 -0
- package/dist/components/Tag/Tag.js +40 -0
- package/dist/components/Tag/Tag.module.css.js +17 -0
- package/dist/components/Tag/Tag.types.js +1 -0
- package/dist/components/Tag/Tag.utils.js +95 -0
- package/dist/components/TextArea/TextArea.js +85 -0
- package/dist/components/TextArea/TextArea.module.css.js +21 -0
- package/dist/components/TextArea/TextArea.types.js +1 -0
- package/dist/components/TextArea/TextArea.utils.js +55 -0
- package/dist/components/Timeline/Timeline.context.js +8 -0
- package/dist/components/Timeline/Timeline.js +43 -0
- package/dist/components/Timeline/Timeline.module.css.js +9 -0
- package/dist/components/Timeline/Timeline.types.js +1 -0
- package/dist/components/Timeline/Timeline.utils.js +5 -0
- package/dist/components/Timeline/TimelineBullet/TimelineBullet.js +12 -0
- package/dist/components/Timeline/TimelineContent/TimelineContent.js +14 -0
- package/dist/components/Timeline/TimelineContent/TimelineContent.module.css.js +9 -0
- package/dist/components/Timeline/TimelineItem/TimelineItem.js +54 -0
- package/dist/components/Timeline/TimelineItem/TimelineItem.module.css.js +19 -0
- package/dist/components/Timeline/TimelineItem/TimelineItem.utils.js +21 -0
- package/dist/components/Timeline/TimelineOppositeContent/TimelineOppositeContent.js +23 -0
- package/dist/components/Timeline/TimelineOppositeContent/TimelineOppositeContent.module.css.js +9 -0
- package/dist/components/Tooltip/Tooltip.js +57 -0
- package/dist/components/Tooltip/Tooltip.module.css.js +11 -0
- package/dist/components/Tooltip/Tooltip.types.js +1 -0
- package/dist/components/Transition/Transition.constants.js +23 -0
- package/dist/components/Transition/Transition.hook.js +64 -0
- package/dist/components/Transition/Transition.js +40 -0
- package/dist/components/Transition/Transition.types.js +1 -0
- package/dist/components/Transition/Transition.utils.js +152 -0
- package/dist/components/Typography/Typography.js +23 -0
- package/dist/components/Typography/Typography.types.js +1 -0
- package/dist/core.css +1 -0
- package/dist/hooks/use-click-outside.js +15 -0
- package/dist/icons/components/AlifBusinessLogo.js +81 -0
- package/dist/icons/components/AlifIcon.js +34 -0
- package/dist/icons/components/ArrowIcon.js +16 -0
- package/dist/icons/components/OutlineFinanceAccounts.js +29 -0
- package/dist/icons/components/OutlineFinanceAnalytics.js +29 -0
- package/dist/icons/components/OutlineFinanceBank.js +29 -0
- package/dist/icons/components/OutlineFinanceBill.js +52 -0
- package/dist/icons/components/OutlineFinanceCardAdd.js +45 -0
- package/dist/icons/components/OutlineFinanceCardSalom.js +29 -0
- package/dist/icons/components/OutlineFinanceCardWebCheckout.js +47 -0
- package/dist/icons/components/OutlineFinanceCash.js +29 -0
- package/dist/icons/components/OutlineFinanceCashDollar.js +29 -0
- package/dist/icons/components/OutlineFinanceCoins.js +29 -0
- package/dist/icons/components/OutlineFinanceCreditCard.js +29 -0
- package/dist/icons/components/OutlineFinanceCurrencyDollar.js +29 -0
- package/dist/icons/components/OutlineFinanceCurrencyLira.js +29 -0
- package/dist/icons/components/OutlineFinanceCurrencyRuble.js +29 -0
- package/dist/icons/components/OutlineFinanceDeposit.js +29 -0
- package/dist/icons/components/OutlineFinanceDollar.js +29 -0
- package/dist/icons/components/OutlineFinanceDollarCoin.js +38 -0
- package/dist/icons/components/OutlineFinanceEuroCoin.js +38 -0
- package/dist/icons/components/OutlineFinanceLimits.js +52 -0
- package/dist/icons/components/OutlineFinanceMerch.js +29 -0
- package/dist/icons/components/OutlineFinanceMoney.js +29 -0
- package/dist/icons/components/OutlineFinanceOnline.js +29 -0
- package/dist/icons/components/OutlineFinancePercent.js +29 -0
- package/dist/icons/components/OutlineFinancePosTerminal.js +82 -0
- package/dist/icons/components/OutlineFinanceRubleCoin.js +40 -0
- package/dist/icons/components/OutlineFinanceSendCard.js +29 -0
- package/dist/icons/components/OutlineFinanceSendDoc.js +29 -0
- package/dist/icons/components/OutlineFinanceSomoniTjsCoin.js +38 -0
- package/dist/icons/components/OutlineFinanceStock.js +57 -0
- package/dist/icons/components/OutlineFinanceTerminal.js +29 -0
- package/dist/icons/components/OutlineFinanceTransfer.js +29 -0
- package/dist/icons/components/OutlineFinanceVisa.js +29 -0
- package/dist/icons/components/OutlineFinanceWallet.js +29 -0
- package/dist/icons/components/OutlineFinanceWalletPlus.js +29 -0
- package/dist/icons/components/OutlineFinanceWalletTransfer.js +29 -0
- package/dist/icons/components/OutlineFinanceYenYuanCoin.js +38 -0
- package/dist/icons/components/OutlineFinanceZP.js +29 -0
- package/dist/icons/components/OutlineNavigationArrowBack.js +29 -0
- package/dist/icons/components/OutlineNavigationArrowDown.js +29 -0
- package/dist/icons/components/OutlineNavigationArrowReturn.js +29 -0
- package/dist/icons/components/OutlineNavigationArrowUp.js +29 -0
- package/dist/icons/components/OutlineNavigationChevronDownSmall.js +29 -0
- package/dist/icons/components/OutlineNavigationChevronLeftSmall.js +29 -0
- package/dist/icons/components/OutlineNavigationChevronRightSmall.js +29 -0
- package/dist/icons/components/OutlineNavigationChevronUpSmall.js +29 -0
- package/dist/icons/components/OutlineNavigationDoubleLeft.js +29 -0
- package/dist/icons/components/OutlineNavigationDoubleRight.js +29 -0
- package/dist/icons/components/OutlineNavigationLeftArrow.js +29 -0
- package/dist/icons/components/OutlineNavigationLeftDown.js +29 -0
- package/dist/icons/components/OutlineNavigationRightArrow.js +29 -0
- package/dist/icons/components/OutlineNavigationRightIcon.js +24 -0
- package/dist/icons/components/OutlineNavigationRightTop.js +29 -0
- package/dist/icons/components/OutlineNavigationTrendingDown.js +29 -0
- package/dist/icons/components/OutlineNavigationTrendingUp.js +29 -0
- package/dist/icons/components/OutlineNavigationZoomOut.js +29 -0
- package/dist/icons/components/OutlineSystemAdd.js +29 -0
- package/dist/icons/components/OutlineSystemAdd2.js +29 -0
- package/dist/icons/components/OutlineSystemAlertCircle.js +29 -0
- package/dist/icons/components/OutlineSystemAll.js +43 -0
- package/dist/icons/components/OutlineSystemArticle.js +40 -0
- package/dist/icons/components/OutlineSystemBell.js +29 -0
- package/dist/icons/components/OutlineSystemBellOff.js +29 -0
- package/dist/icons/components/OutlineSystemBill.js +29 -0
- package/dist/icons/components/OutlineSystemBookOpen.js +29 -0
- package/dist/icons/components/OutlineSystemCalendar.js +29 -0
- package/dist/icons/components/OutlineSystemCalling.js +29 -0
- package/dist/icons/components/OutlineSystemCamera.js +40 -0
- package/dist/icons/components/OutlineSystemChat.js +27 -0
- package/dist/icons/components/OutlineSystemCheck.js +29 -0
- package/dist/icons/components/OutlineSystemCheckCircle.js +38 -0
- package/dist/icons/components/OutlineSystemCheckDouble.js +29 -0
- package/dist/icons/components/OutlineSystemClock.js +29 -0
- package/dist/icons/components/OutlineSystemClose.js +29 -0
- package/dist/icons/components/OutlineSystemConfities.js +73 -0
- package/dist/icons/components/OutlineSystemCopy.js +29 -0
- package/dist/icons/components/OutlineSystemDelete.js +29 -0
- package/dist/icons/components/OutlineSystemDoc.js +29 -0
- package/dist/icons/components/OutlineSystemDocEmpty.js +29 -0
- package/dist/icons/components/OutlineSystemDownload.js +29 -0
- package/dist/icons/components/OutlineSystemEdit.js +29 -0
- package/dist/icons/components/OutlineSystemEditAlt.js +29 -0
- package/dist/icons/components/OutlineSystemExpand.js +29 -0
- package/dist/icons/components/OutlineSystemEyeOff.js +29 -0
- package/dist/icons/components/OutlineSystemEyeOffAlt.js +29 -0
- package/dist/icons/components/OutlineSystemEyeOn.js +29 -0
- package/dist/icons/components/OutlineSystemFileAccept.js +38 -0
- package/dist/icons/components/OutlineSystemFileAdd.js +38 -0
- package/dist/icons/components/OutlineSystemFileError.js +38 -0
- package/dist/icons/components/OutlineSystemFilterFromLessToMore.js +43 -0
- package/dist/icons/components/OutlineSystemFilterFromMoreToLess.js +43 -0
- package/dist/icons/components/OutlineSystemFolder.js +29 -0
- package/dist/icons/components/OutlineSystemGame.js +52 -0
- package/dist/icons/components/OutlineSystemGridView.js +29 -0
- package/dist/icons/components/OutlineSystemGrowth.js +29 -0
- package/dist/icons/components/OutlineSystemHeadphones.js +29 -0
- package/dist/icons/components/OutlineSystemHeart.js +29 -0
- package/dist/icons/components/OutlineSystemHelpCircle.js +29 -0
- package/dist/icons/components/OutlineSystemHex.js +29 -0
- package/dist/icons/components/OutlineSystemHistory.js +38 -0
- package/dist/icons/components/OutlineSystemHome.js +29 -0
- package/dist/icons/components/OutlineSystemHomeFavourite.js +29 -0
- package/dist/icons/components/OutlineSystemIdea.js +66 -0
- package/dist/icons/components/OutlineSystemIn.js +36 -0
- package/dist/icons/components/OutlineSystemInfo.js +45 -0
- package/dist/icons/components/OutlineSystemIslam.js +40 -0
- package/dist/icons/components/OutlineSystemLanguage.js +29 -0
- package/dist/icons/components/OutlineSystemLink.js +36 -0
- package/dist/icons/components/OutlineSystemLink2.js +29 -0
- package/dist/icons/components/OutlineSystemListView.js +29 -0
- package/dist/icons/components/OutlineSystemLock.js +29 -0
- package/dist/icons/components/OutlineSystemMail.js +29 -0
- package/dist/icons/components/OutlineSystemMapPin.js +29 -0
- package/dist/icons/components/OutlineSystemMenu.js +29 -0
- package/dist/icons/components/OutlineSystemMistake.js +47 -0
- package/dist/icons/components/OutlineSystemMoon.js +29 -0
- package/dist/icons/components/OutlineSystemMoreHorizontal.js +29 -0
- package/dist/icons/components/OutlineSystemMoreVertical.js +29 -0
- package/dist/icons/components/OutlineSystemMove.js +29 -0
- package/dist/icons/components/OutlineSystemNavigation.js +29 -0
- package/dist/icons/components/OutlineSystemNews.js +29 -0
- package/dist/icons/components/OutlineSystemOut.js +36 -0
- package/dist/icons/components/OutlineSystemPaperclip.js +29 -0
- package/dist/icons/components/OutlineSystemPlus.js +29 -0
- package/dist/icons/components/OutlineSystemPlusRect.js +29 -0
- package/dist/icons/components/OutlineSystemPrinter.js +29 -0
- package/dist/icons/components/OutlineSystemRefresh.js +29 -0
- package/dist/icons/components/OutlineSystemRefreshCW.js +29 -0
- package/dist/icons/components/OutlineSystemRemove.js +29 -0
- package/dist/icons/components/OutlineSystemRemoveCircle.js +40 -0
- package/dist/icons/components/OutlineSystemRepeat.js +29 -0
- package/dist/icons/components/OutlineSystemResize.js +40 -0
- package/dist/icons/components/OutlineSystemSearch.js +29 -0
- package/dist/icons/components/OutlineSystemSend.js +29 -0
- package/dist/icons/components/OutlineSystemSettings.js +29 -0
- package/dist/icons/components/OutlineSystemShippingAndDelivery.js +29 -0
- package/dist/icons/components/OutlineSystemShoppingBasket.js +45 -0
- package/dist/icons/components/OutlineSystemSidebar.js +29 -0
- package/dist/icons/components/OutlineSystemSignature.js +29 -0
- package/dist/icons/components/OutlineSystemSlash.js +29 -0
- package/dist/icons/components/OutlineSystemSmartphone.js +27 -0
- package/dist/icons/components/OutlineSystemSmile.js +27 -0
- package/dist/icons/components/OutlineSystemStar.js +29 -0
- package/dist/icons/components/OutlineSystemSun.js +29 -0
- package/dist/icons/components/OutlineSystemSurvey.js +38 -0
- package/dist/icons/components/OutlineSystemTariffs.js +64 -0
- package/dist/icons/components/OutlineSystemTelegram.js +29 -0
- package/dist/icons/components/OutlineSystemTrash.js +29 -0
- package/dist/icons/components/OutlineSystemTune.js +29 -0
- package/dist/icons/components/OutlineSystemUnlock.js +29 -0
- package/dist/icons/components/OutlineSystemUpload.js +29 -0
- package/dist/icons/components/OutlineSystemUploadCloud.js +29 -0
- package/dist/icons/components/OutlineSystemUser.js +29 -0
- package/dist/icons/components/OutlineSystemUserAdd.js +29 -0
- package/dist/icons/components/OutlineSystemUsers.js +29 -0
- package/dist/icons/components/OutlineSystemWifiOff.js +50 -0
- package/dist/icons/components/SolidNavigationArrowDown.js +29 -0
- package/dist/icons/components/SolidNavigationArrowLeft.js +29 -0
- package/dist/icons/components/SolidNavigationArrowRight.js +29 -0
- package/dist/icons/components/SolidNavigationArrowUp.js +29 -0
- package/dist/icons/components/SolidNavigationDoubleLeft.js +40 -0
- package/dist/icons/components/SolidNavigationDoubleRight.js +40 -0
- package/dist/icons/components/SolidNavigationLeftPrev.js +29 -0
- package/dist/icons/components/SolidNavigationRightNext.js +29 -0
- package/dist/icons/components/SolidNavigationSelectOpenDown.js +29 -0
- package/dist/icons/components/SolidNavigationSelectTop.js +29 -0
- package/dist/icons/components/SolidSystemAdd.js +29 -0
- package/dist/icons/components/SolidSystemAdd2.js +29 -0
- package/dist/icons/components/SolidSystemAlertCircle.js +29 -0
- package/dist/icons/components/SolidSystemBell.js +29 -0
- package/dist/icons/components/SolidSystemBellOff.js +29 -0
- package/dist/icons/components/SolidSystemBill.js +29 -0
- package/dist/icons/components/SolidSystemCalendar.js +29 -0
- package/dist/icons/components/SolidSystemCamera.js +29 -0
- package/dist/icons/components/SolidSystemChat.js +29 -0
- package/dist/icons/components/SolidSystemCheck.js +29 -0
- package/dist/icons/components/SolidSystemCheckCircle.js +29 -0
- package/dist/icons/components/SolidSystemClock.js +29 -0
- package/dist/icons/components/SolidSystemClose.js +29 -0
- package/dist/icons/components/SolidSystemCopy.js +40 -0
- package/dist/icons/components/SolidSystemDoc.js +29 -0
- package/dist/icons/components/SolidSystemDocEmpty.js +29 -0
- package/dist/icons/components/SolidSystemDownload.js +29 -0
- package/dist/icons/components/SolidSystemEdit.js +29 -0
- package/dist/icons/components/SolidSystemEditAlt.js +47 -0
- package/dist/icons/components/SolidSystemExclamation.js +29 -0
- package/dist/icons/components/SolidSystemExpand.js +40 -0
- package/dist/icons/components/SolidSystemEyeOff.js +29 -0
- package/dist/icons/components/SolidSystemEyeOffAlt.js +40 -0
- package/dist/icons/components/SolidSystemEyeOn.js +29 -0
- package/dist/icons/components/SolidSystemFileAccept.js +29 -0
- package/dist/icons/components/SolidSystemFolder.js +27 -0
- package/dist/icons/components/SolidSystemGridView.js +29 -0
- package/dist/icons/components/SolidSystemHeadphones.js +29 -0
- package/dist/icons/components/SolidSystemHeart.js +29 -0
- package/dist/icons/components/SolidSystemHelpCircle.js +29 -0
- package/dist/icons/components/SolidSystemHex.js +58 -0
- package/dist/icons/components/SolidSystemHome.js +29 -0
- package/dist/icons/components/SolidSystemInfo.js +29 -0
- package/dist/icons/components/SolidSystemLanguage.js +29 -0
- package/dist/icons/components/SolidSystemLink.js +36 -0
- package/dist/icons/components/SolidSystemLink2.js +40 -0
- package/dist/icons/components/SolidSystemListView.js +76 -0
- package/dist/icons/components/SolidSystemLock.js +40 -0
- package/dist/icons/components/SolidSystemMail.js +29 -0
- package/dist/icons/components/SolidSystemMapPin.js +29 -0
- package/dist/icons/components/SolidSystemMenu.js +49 -0
- package/dist/icons/components/SolidSystemMoon.js +29 -0
- package/dist/icons/components/SolidSystemMoreHorizontal.js +29 -0
- package/dist/icons/components/SolidSystemMoreVertical.js +29 -0
- package/dist/icons/components/SolidSystemMove.js +40 -0
- package/dist/icons/components/SolidSystemPaperclip.js +29 -0
- package/dist/icons/components/SolidSystemPrinter.js +56 -0
- package/dist/icons/components/SolidSystemRefresh.js +29 -0
- package/dist/icons/components/SolidSystemRefresh2.js +58 -0
- package/dist/icons/components/SolidSystemRemove.js +29 -0
- package/dist/icons/components/SolidSystemRemoveCircle.js +29 -0
- package/dist/icons/components/SolidSystemRightNext.js +58 -0
- package/dist/icons/components/SolidSystemSearch.js +29 -0
- package/dist/icons/components/SolidSystemSend.js +40 -0
- package/dist/icons/components/SolidSystemSettings.js +29 -0
- package/dist/icons/components/SolidSystemSidebar.js +29 -0
- package/dist/icons/components/SolidSystemSlash.js +40 -0
- package/dist/icons/components/SolidSystemSmartphone.js +29 -0
- package/dist/icons/components/SolidSystemStar.js +29 -0
- package/dist/icons/components/SolidSystemSun.js +103 -0
- package/dist/icons/components/SolidSystemTickDouble.js +40 -0
- package/dist/icons/components/SolidSystemTrash.js +40 -0
- package/dist/icons/components/SolidSystemTune.js +29 -0
- package/dist/icons/components/SolidSystemUnlock.js +40 -0
- package/dist/icons/components/SolidSystemUpload.js +29 -0
- package/dist/icons/components/SolidSystemUploadCloud.js +40 -0
- package/dist/icons/components/SolidSystemUser.js +58 -0
- package/dist/icons/components/SolidSystemUserFilled.js +40 -0
- package/dist/icons/components/SolidSystemUsers.js +45 -0
- package/dist/icons/components/SolidSystemWifiOff.js +50 -0
- package/dist/icons/components/countries-flags/AeFlag.js +87 -0
- package/dist/icons/components/countries-flags/RuFlag.js +78 -0
- package/dist/icons/components/countries-flags/TjFlag.js +50 -0
- package/dist/icons/components/countries-flags/UsFlag.js +117 -0
- package/dist/icons/components/countries-flags/UzFlag.js +85 -0
- package/dist/main.d.ts +3885 -0
- package/dist/main.js +656 -0
- package/dist/providers/AlifProvider/AlifProvider.consts.js +5 -0
- package/dist/providers/AlifProvider/AlifProvider.context.js +6 -0
- package/dist/providers/AlifProvider/AlifProvider.js +31 -0
- package/dist/providers/AlifProvider/AlifProvider.types.js +1 -0
- package/dist/providers/Localization/localization.js +48 -0
- package/dist/providers/Localization/useTranslation/useTranslation.js +12 -0
- package/dist/providers/hooks/useLocale/useLocale.js +11 -0
- package/dist/providers/hooks/useMode/useMode.js +8 -0
- package/dist/types/css-modules.d.js +1 -0
- package/dist/types/global.js +1 -0
- package/dist/types/icon.js +1 -0
- package/dist/utils/class-names.js +4 -0
- package/dist/utils/close-escape.js +6 -0
- package/dist/utils/create-safe-context/create-safe-context.js +17 -0
- package/dist/utils/create-safe-context/create-safe-context.utils.js +11 -0
- package/dist/utils/get-default-z-index.js +12 -0
- package/dist/utils/get-size.js +24 -0
- package/dist/utils/typography.js +201 -0
- package/dist/utils/validate-icon-button-props.js +8 -0
- package/package.json +86 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { jsx as o } from "react/jsx-runtime";
|
|
2
|
+
const d = ({ width: r, height: n, fill: e, ...t }) => /* @__PURE__ */ o(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
width: r,
|
|
6
|
+
height: n,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
fill: e,
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
...t,
|
|
11
|
+
children: /* @__PURE__ */ o(
|
|
12
|
+
"path",
|
|
13
|
+
{
|
|
14
|
+
fillRule: "evenodd",
|
|
15
|
+
clipRule: "evenodd",
|
|
16
|
+
d: "M13.399 6.39895C13.7309 6.06701 14.2691 6.06701 14.601 6.39895L19.601 11.399C19.933 11.7309 19.933 12.2691 19.601 12.601L14.601 17.601C14.2691 17.933 13.7309 17.933 13.399 17.601C13.067 17.2691 13.067 16.7309 13.399 16.399L16.9479 12.85L4.99999 12.85C4.53055 12.85 4.14999 12.4694 4.14999 12C4.14999 11.5306 4.53055 11.15 4.99999 11.15L16.9479 11.15L13.399 7.60103C13.067 7.26909 13.067 6.7309 13.399 6.39895Z",
|
|
17
|
+
fill: e
|
|
18
|
+
}
|
|
19
|
+
)
|
|
20
|
+
}
|
|
21
|
+
);
|
|
22
|
+
export {
|
|
23
|
+
d as ArrowIcon
|
|
24
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
const r = ({
|
|
3
|
+
width: o,
|
|
4
|
+
height: i,
|
|
5
|
+
fill: l,
|
|
6
|
+
...n
|
|
7
|
+
}) => /* @__PURE__ */ e(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: o,
|
|
11
|
+
height: i,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
...n,
|
|
16
|
+
children: /* @__PURE__ */ e(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
clipRule: "evenodd",
|
|
21
|
+
d: "M8.68948 4C8.22004 4 7.83948 4.38056 7.83948 4.85C7.83948 5.31944 8.22004 5.7 8.68948 5.7H16.7039L4.71356 17.5311C4.3794 17.8609 4.37581 18.399 4.70553 18.7332C5.03525 19.0674 5.57343 19.0709 5.90758 18.7412L17.8395 6.96773V14.85C17.8395 15.3194 18.22 15.7 18.6895 15.7C19.1589 15.7 19.5395 15.3194 19.5395 14.85V4.85C19.5395 4.38056 19.1589 4 18.6895 4H8.68948Z",
|
|
22
|
+
fill: l
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
r as OutlineNavigationRightTop
|
|
29
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
const t = ({
|
|
3
|
+
width: n,
|
|
4
|
+
height: o,
|
|
5
|
+
fill: C,
|
|
6
|
+
...i
|
|
7
|
+
}) => /* @__PURE__ */ e(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: n,
|
|
11
|
+
height: o,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
...i,
|
|
16
|
+
children: /* @__PURE__ */ e(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
clipRule: "evenodd",
|
|
21
|
+
d: "M16.15 18.0011C16.15 18.4705 16.5306 18.8511 17 18.8511H23C23.4694 18.8511 23.85 18.4705 23.85 18.0011V12.0011C23.85 11.5317 23.4694 11.1511 23 11.1511C22.5306 11.1511 22.15 11.5317 22.15 12.0011V15.949L14.8081 8.60716C14.0857 7.88469 12.9143 7.88469 12.1918 8.60716L8.60606 12.1929C8.54748 12.2515 8.45251 12.2515 8.39393 12.1929L1.60103 5.40005C1.26909 5.06811 0.730899 5.06811 0.398953 5.40005C0.0670075 5.732 0.0670075 6.27019 0.398953 6.60213L7.19185 13.395C7.91432 14.1175 9.08567 14.1175 9.80814 13.395L13.3939 9.80924C13.4525 9.75066 13.5475 9.75066 13.6061 9.80924L20.9479 17.1511H17C16.5306 17.1511 16.15 17.5317 16.15 18.0011Z",
|
|
22
|
+
fill: C
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
t as OutlineNavigationTrendingDown
|
|
29
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
const t = ({
|
|
3
|
+
width: n,
|
|
4
|
+
height: C,
|
|
5
|
+
fill: i,
|
|
6
|
+
...l
|
|
7
|
+
}) => /* @__PURE__ */ e(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: n,
|
|
11
|
+
height: C,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
...l,
|
|
16
|
+
children: /* @__PURE__ */ e(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
clipRule: "evenodd",
|
|
21
|
+
d: "M16.15 6.00109C16.15 5.53165 16.5306 5.15109 17 5.15109H23C23.4694 5.15109 23.85 5.53165 23.85 6.00109V12.0011C23.85 12.4705 23.4694 12.8511 23 12.8511C22.5306 12.8511 22.15 12.4705 22.15 12.0011V8.05317L14.8081 15.395C14.0857 16.1175 12.9143 16.1175 12.1918 15.395L8.60606 11.8092C8.54748 11.7507 8.45251 11.7507 8.39393 11.8092L1.60103 18.6021C1.26909 18.9341 0.730899 18.9341 0.398953 18.6021C0.0670075 18.2702 0.0670075 17.732 0.398953 17.4001L7.19185 10.6072C7.91432 9.88469 9.08567 9.88469 9.80814 10.6072L13.3939 14.1929C13.4525 14.2515 13.5475 14.2515 13.6061 14.1929L20.9479 6.85109H17C16.5306 6.85109 16.15 6.47053 16.15 6.00109Z",
|
|
22
|
+
fill: i
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
t as OutlineNavigationTrendingUp
|
|
29
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
const i = ({
|
|
3
|
+
width: o,
|
|
4
|
+
height: l,
|
|
5
|
+
fill: n,
|
|
6
|
+
...t
|
|
7
|
+
}) => /* @__PURE__ */ e(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11
|
+
width: o,
|
|
12
|
+
height: l,
|
|
13
|
+
viewBox: "0 0 24 24",
|
|
14
|
+
fill: "none",
|
|
15
|
+
...t,
|
|
16
|
+
children: /* @__PURE__ */ e(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
clipRule: "evenodd",
|
|
21
|
+
d: "M13.5 6.84999C13.0306 6.84999 12.65 6.46944 12.65 5.99999C12.65 5.53055 13.0306 5.14999 13.5 5.14999H18C18.4694 5.14999 18.85 5.53055 18.85 5.99999V10.5C18.85 10.9694 18.4694 11.35 18 11.35C17.5306 11.35 17.15 10.9694 17.15 10.5V8.05208L8.05208 17.15H10.5C10.9694 17.15 11.35 17.5306 11.35 18C11.35 18.4694 10.9694 18.85 10.5 18.85H5.99999C5.53055 18.85 5.14999 18.4694 5.14999 18V13.5C5.14999 13.0306 5.53055 12.65 5.99999 12.65C6.46944 12.65 6.84999 13.0306 6.84999 13.5V15.9479L15.9479 6.84999H13.5Z",
|
|
22
|
+
fill: n
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
i as OutlineNavigationZoomOut
|
|
29
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
const C = ({
|
|
3
|
+
width: l,
|
|
4
|
+
height: n,
|
|
5
|
+
fill: o,
|
|
6
|
+
...t
|
|
7
|
+
}) => /* @__PURE__ */ e(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: l,
|
|
11
|
+
height: n,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
...t,
|
|
16
|
+
children: /* @__PURE__ */ e(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
clipRule: "evenodd",
|
|
21
|
+
d: "M12 3.15002C12.4694 3.15002 12.85 3.53058 12.85 4.00002V11.15H20C20.4694 11.15 20.85 11.5306 20.85 12C20.85 12.4695 20.4694 12.85 20 12.85H12.85V20C12.85 20.4695 12.4694 20.85 12 20.85C11.5306 20.85 11.15 20.4695 11.15 20V12.85H3.99999C3.53055 12.85 3.14999 12.4695 3.14999 12C3.14999 11.5306 3.53055 11.15 3.99999 11.15H11.15V4.00002C11.15 3.53058 11.5306 3.15002 12 3.15002Z",
|
|
22
|
+
fill: o
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
C as OutlineSystemAdd
|
|
29
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx as C } from "react/jsx-runtime";
|
|
2
|
+
const d = ({
|
|
3
|
+
width: e,
|
|
4
|
+
height: l,
|
|
5
|
+
fill: n,
|
|
6
|
+
...o
|
|
7
|
+
}) => /* @__PURE__ */ C(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: e,
|
|
11
|
+
height: l,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
...o,
|
|
16
|
+
children: /* @__PURE__ */ C(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
clipRule: "evenodd",
|
|
21
|
+
d: "M6.99999 2.15002C4.32141 2.15002 2.14999 4.32144 2.14999 7.00002V17C2.14999 19.6786 4.32141 21.85 6.99999 21.85H17C19.6786 21.85 21.85 19.6786 21.85 17V7.00002C21.85 4.32144 19.6786 2.15002 17 2.15002H6.99999ZM3.84999 7.00002C3.84999 5.26033 5.2603 3.85002 6.99999 3.85002H17C18.7397 3.85002 20.15 5.26033 20.15 7.00002V17C20.15 18.7397 18.7397 20.15 17 20.15H6.99999C5.2603 20.15 3.84999 18.7397 3.84999 17V7.00002ZM12.85 7.00002C12.85 6.53058 12.4694 6.15002 12 6.15002C11.5306 6.15002 11.15 6.53058 11.15 7.00002V11.15H6.99999C6.53055 11.15 6.14999 11.5306 6.14999 12C6.14999 12.4695 6.53055 12.85 6.99999 12.85H11.15V17C11.15 17.4695 11.5306 17.85 12 17.85C12.4694 17.85 12.85 17.4695 12.85 17V12.85H17C17.4694 12.85 17.85 12.4695 17.85 12C17.85 11.5306 17.4694 11.15 17 11.15H12.85V7.00002Z",
|
|
22
|
+
fill: n
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
d as OutlineSystemAdd2
|
|
29
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx as C } from "react/jsx-runtime";
|
|
2
|
+
const r = ({
|
|
3
|
+
width: e,
|
|
4
|
+
height: l,
|
|
5
|
+
fill: t,
|
|
6
|
+
...n
|
|
7
|
+
}) => /* @__PURE__ */ C(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: e,
|
|
11
|
+
height: l,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
...n,
|
|
16
|
+
children: /* @__PURE__ */ C(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
clipRule: "evenodd",
|
|
21
|
+
d: "M12 3.85002C7.4989 3.85002 3.85002 7.4989 3.85002 12C3.85002 16.5011 7.4989 20.15 12 20.15C16.5011 20.15 20.15 16.5011 20.15 12C20.15 7.4989 16.5011 3.85002 12 3.85002ZM2.15002 12C2.15002 6.56002 6.56002 2.15002 12 2.15002C17.44 2.15002 21.85 6.56002 21.85 12C21.85 17.44 17.44 21.85 12 21.85C6.56002 21.85 2.15002 17.44 2.15002 12ZM11 15.5C11 14.9477 11.4477 14.5 12 14.5C12.5523 14.5 13 14.9477 13 15.5C13 16.0523 12.5523 16.5 12 16.5C11.4477 16.5 11 16.0523 11 15.5ZM11.15 12.25C11.15 12.7194 11.5306 13.1 12 13.1C12.4695 13.1 12.85 12.7194 12.85 12.25V8.25C12.85 7.78056 12.4695 7.4 12 7.4C11.5306 7.4 11.15 7.78056 11.15 8.25V12.25Z",
|
|
22
|
+
fill: t
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
r as OutlineSystemAlertCircle
|
|
29
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { jsxs as o, jsx as t } from "react/jsx-runtime";
|
|
2
|
+
const p = ({
|
|
3
|
+
width: s,
|
|
4
|
+
height: e,
|
|
5
|
+
fill: C,
|
|
6
|
+
...n
|
|
7
|
+
}) => /* @__PURE__ */ o(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: s,
|
|
11
|
+
height: e,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
...n,
|
|
16
|
+
children: [
|
|
17
|
+
/* @__PURE__ */ t(
|
|
18
|
+
"path",
|
|
19
|
+
{
|
|
20
|
+
d: "M7.15002 6.00002C7.15002 5.53058 7.53058 5.15002 8.00002 5.15002H20C20.4695 5.15002 20.85 5.53058 20.85 6.00002C20.85 6.46947 20.4695 6.85002 20 6.85002H8.00002C7.53058 6.85002 7.15002 6.46947 7.15002 6.00002Z",
|
|
21
|
+
fill: C
|
|
22
|
+
}
|
|
23
|
+
),
|
|
24
|
+
/* @__PURE__ */ t(
|
|
25
|
+
"path",
|
|
26
|
+
{
|
|
27
|
+
d: "M5.15002 12C5.15002 11.5306 5.53058 11.15 6.00002 11.15H18C18.4695 11.15 18.85 11.5306 18.85 12C18.85 12.4695 18.4695 12.85 18 12.85H6.00002C5.53058 12.85 5.15002 12.4695 5.15002 12Z",
|
|
28
|
+
fill: C
|
|
29
|
+
}
|
|
30
|
+
),
|
|
31
|
+
/* @__PURE__ */ t(
|
|
32
|
+
"path",
|
|
33
|
+
{
|
|
34
|
+
d: "M4.00002 17.15C3.53058 17.15 3.15002 17.5306 3.15002 18C3.15002 18.4695 3.53058 18.85 4.00002 18.85H16C16.4695 18.85 16.85 18.4695 16.85 18C16.85 17.5306 16.4695 17.15 16 17.15H4.00002Z",
|
|
35
|
+
fill: C
|
|
36
|
+
}
|
|
37
|
+
)
|
|
38
|
+
]
|
|
39
|
+
}
|
|
40
|
+
);
|
|
41
|
+
export {
|
|
42
|
+
p as OutlineSystemAll
|
|
43
|
+
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { jsxs as o, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
const i = ({
|
|
3
|
+
width: l,
|
|
4
|
+
height: d,
|
|
5
|
+
fill: C,
|
|
6
|
+
...n
|
|
7
|
+
}) => /* @__PURE__ */ o(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: l,
|
|
11
|
+
height: d,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
...n,
|
|
16
|
+
children: [
|
|
17
|
+
/* @__PURE__ */ e(
|
|
18
|
+
"path",
|
|
19
|
+
{
|
|
20
|
+
fillRule: "evenodd",
|
|
21
|
+
clipRule: "evenodd",
|
|
22
|
+
d: "M8.99999 3.85063C8.36487 3.85063 7.84999 4.36551 7.84999 5.00064V8.00001C7.84999 8.46946 7.46944 8.85001 6.99999 8.85001C6.53055 8.85001 6.14999 8.46946 6.14999 8.00001V5.00064C6.14999 3.42662 7.42598 2.15063 8.99999 2.15063H19C20.574 2.15063 21.85 3.42662 21.85 5.00063V13C21.85 14.574 20.574 15.85 19 15.85H15.7397C15.2703 15.85 14.8897 15.4695 14.8897 15C14.8897 14.5306 15.2703 14.15 15.7397 14.15H19C19.6351 14.15 20.15 13.6351 20.15 13V5.00063C20.15 4.36551 19.6351 3.85063 19 3.85063H8.99999ZM10.15 7.00001C10.15 6.53057 10.5306 6.15001 11 6.15001H17C17.4694 6.15001 17.85 6.53057 17.85 7.00001C17.85 7.46946 17.4694 7.85001 17 7.85001H11C10.5306 7.85001 10.15 7.46946 10.15 7.00001ZM7.99999 12.85C7.36487 12.85 6.84999 13.3649 6.84999 14C6.84999 14.6351 7.36487 15.15 7.99999 15.15C8.63512 15.15 9.14999 14.6351 9.14999 14C9.14999 13.3649 8.63512 12.85 7.99999 12.85ZM5.14999 14C5.14999 12.426 6.42598 11.15 7.99999 11.15C9.57401 11.15 10.85 12.426 10.85 14C10.85 15.574 9.57401 16.85 7.99999 16.85C6.42598 16.85 5.14999 15.574 5.14999 14ZM13.3801 15.7398C13.8 15.9497 13.9702 16.4603 13.7603 16.8801C13.1856 18.0294 11.3977 20.428 7.86025 19.8384C7.19234 19.7271 6.37409 19.9072 5.55181 20.2846C4.73946 20.6574 4.02595 21.1761 3.60103 21.6011C3.26909 21.933 2.7309 21.933 2.39895 21.6011C2.06701 21.2691 2.06701 20.7309 2.39895 20.399C2.97404 19.8239 3.85687 19.192 4.84269 18.7395C5.81858 18.2916 7.00033 17.9717 8.13973 18.1616C10.6022 18.572 11.8144 16.9706 12.2397 16.1199C12.4497 15.7 12.9602 15.5298 13.3801 15.7398Z",
|
|
23
|
+
fill: C
|
|
24
|
+
}
|
|
25
|
+
),
|
|
26
|
+
/* @__PURE__ */ e(
|
|
27
|
+
"path",
|
|
28
|
+
{
|
|
29
|
+
fillRule: "evenodd",
|
|
30
|
+
clipRule: "evenodd",
|
|
31
|
+
d: "M13.15 11C13.15 10.5306 13.5306 10.15 14 10.15H17C17.4694 10.15 17.85 10.5306 17.85 11C17.85 11.4695 17.4694 11.85 17 11.85H14C13.5306 11.85 13.15 11.4695 13.15 11Z",
|
|
32
|
+
fill: C
|
|
33
|
+
}
|
|
34
|
+
)
|
|
35
|
+
]
|
|
36
|
+
}
|
|
37
|
+
);
|
|
38
|
+
export {
|
|
39
|
+
i as OutlineSystemArticle
|
|
40
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx as C } from "react/jsx-runtime";
|
|
2
|
+
const i = ({
|
|
3
|
+
width: e,
|
|
4
|
+
height: l,
|
|
5
|
+
fill: n,
|
|
6
|
+
...o
|
|
7
|
+
}) => /* @__PURE__ */ C(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: e,
|
|
11
|
+
height: l,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
...o,
|
|
16
|
+
children: /* @__PURE__ */ C(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
clipRule: "evenodd",
|
|
21
|
+
d: "M12 3.85002C9.22297 3.85002 6.852 5.99649 6.52425 8.88974L6.17938 11.9342C6.07493 12.8562 5.70098 13.7269 5.10329 14.4304C4.5069 15.1324 5.03437 16.15 5.83015 16.15H18.1699C18.9657 16.15 19.4931 15.1324 18.8968 14.4304C18.2991 13.7269 17.9251 12.8562 17.8207 11.9342L17.4758 8.88974C17.148 5.99649 14.7771 3.85002 12 3.85002ZM4.83506 8.69838C5.25568 4.98527 8.31896 2.15002 12 2.15002C15.6811 2.15002 18.7444 4.98527 19.165 8.69838L19.5099 11.7428C19.5768 12.3338 19.8161 12.8869 20.1923 13.3297C21.6627 15.0604 20.5127 17.85 18.1699 17.85H5.83015C3.48729 17.85 2.33731 15.0604 3.80774 13.3297C4.18399 12.8869 4.42324 12.3338 4.49018 11.7428L4.83506 8.69838ZM8.70172 18.2041C9.14131 18.0393 9.63121 18.2621 9.79596 18.7017C10.1035 19.5223 10.9555 20.15 12 20.15C13.0445 20.15 13.8966 19.5223 14.2041 18.7017C14.3688 18.2621 14.8587 18.0393 15.2983 18.2041C15.7379 18.3688 15.9607 18.8587 15.796 19.2983C15.2301 20.8082 13.7256 21.85 12 21.85C10.2745 21.85 8.76993 20.8082 8.20408 19.2983C8.03933 18.8587 8.26214 18.3688 8.70172 18.2041Z",
|
|
22
|
+
fill: n
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
i as OutlineSystemBell
|
|
29
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx as C } from "react/jsx-runtime";
|
|
2
|
+
const t = ({
|
|
3
|
+
width: e,
|
|
4
|
+
height: l,
|
|
5
|
+
fill: L,
|
|
6
|
+
...n
|
|
7
|
+
}) => /* @__PURE__ */ C(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: e,
|
|
11
|
+
height: l,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
...n,
|
|
16
|
+
children: /* @__PURE__ */ C(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
clipRule: "evenodd",
|
|
21
|
+
d: "M2.39898 2.39898C2.73093 2.06704 3.26912 2.06704 3.60107 2.39898L17.6 16.3979L17.6022 16.4001L21.6011 20.399C21.933 20.7309 21.933 21.2691 21.6011 21.6011C21.2691 21.933 20.7309 21.933 20.399 21.6011L16.6479 17.85H5.83016C3.4873 17.85 2.33732 15.0604 3.80774 13.3297C4.18399 12.8869 4.42324 12.3338 4.49019 11.7428L4.83506 8.69838C4.91923 7.9554 5.10901 7.24753 5.38843 6.59051L2.39898 3.60106C2.06704 3.26912 2.06704 2.73093 2.39898 2.39898ZM6.71722 7.9193C6.62729 8.23137 6.56211 8.55557 6.52426 8.88974L6.17938 11.9342C6.07493 12.8562 5.70098 13.7269 5.10329 14.4304C4.50691 15.1324 5.03437 16.15 5.83016 16.15H14.9479L6.71722 7.9193ZM12 3.85002C10.7993 3.85002 9.6796 4.24879 8.76518 4.93492C8.38969 5.21667 7.8569 5.14067 7.57515 4.76518C7.2934 4.38969 7.36939 3.8569 7.74488 3.57515C8.94095 2.67767 10.4158 2.15002 12 2.15002C15.6811 2.15002 18.7444 4.98527 19.165 8.69838L19.5099 11.7428C19.5768 12.3338 19.8161 12.8869 20.1923 13.3297C20.9229 14.1897 21.0023 15.291 20.638 16.1757C20.4593 16.6098 19.9625 16.8168 19.5284 16.638C19.0943 16.4593 18.8873 15.9625 19.0661 15.5284C19.2124 15.173 19.1755 14.7585 18.8968 14.4304C18.2991 13.7269 17.9251 12.8562 17.8207 11.9342L17.4758 8.88974C17.148 5.99649 14.7771 3.85002 12 3.85002ZM8.70173 18.2041C9.14131 18.0393 9.63122 18.2621 9.79596 18.7017C10.1035 19.5223 10.9555 20.15 12 20.15C13.0445 20.15 13.8966 19.5223 14.2041 18.7017C14.3688 18.2621 14.8587 18.0393 15.2983 18.2041C15.7379 18.3688 15.9607 18.8587 15.796 19.2983C15.2301 20.8082 13.7256 21.85 12 21.85C10.2745 21.85 8.76993 20.8082 8.20409 19.2983C8.03934 18.8587 8.26214 18.3688 8.70173 18.2041Z",
|
|
22
|
+
fill: L
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
t as OutlineSystemBellOff
|
|
29
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx as C } from "react/jsx-runtime";
|
|
2
|
+
const t = ({
|
|
3
|
+
width: e,
|
|
4
|
+
height: l,
|
|
5
|
+
fill: H,
|
|
6
|
+
...n
|
|
7
|
+
}) => /* @__PURE__ */ C(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: e,
|
|
11
|
+
height: l,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
...n,
|
|
16
|
+
children: /* @__PURE__ */ C(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
clipRule: "evenodd",
|
|
21
|
+
d: "M7.00002 2.15002C4.87373 2.15002 3.15002 3.87373 3.15002 6.00002V18C3.15002 20.1263 4.87373 21.85 7.00003 21.85H13.5056C14.5491 21.85 15.5478 21.4265 16.2732 20.6764L19.7676 17.0631C20.4619 16.3452 20.85 15.3855 20.85 14.3867V6.00002C20.85 3.87373 19.1263 2.15002 17 2.15002H7.00002ZM4.85002 6.00002C4.85002 4.81261 5.81261 3.85002 7.00002 3.85002H17C18.1874 3.85002 19.15 4.81261 19.15 6.00002V13.15H17C14.3214 13.15 12.15 15.3214 12.15 18V20.15H7.00003C5.81261 20.15 4.85002 19.1874 4.85002 18V6.00002ZM13.85 20.1223C14.3046 20.0485 14.7268 19.83 15.0512 19.4946L18.5455 15.8813C18.8241 15.5932 19.0144 15.2355 19.0995 14.85H17C15.2603 14.85 13.85 16.2603 13.85 18V20.1223ZM6.65002 7.00002C6.65002 6.53058 7.03058 6.15002 7.50002 6.15002H15.5C15.9695 6.15002 16.35 6.53058 16.35 7.00002C16.35 7.46947 15.9695 7.85002 15.5 7.85002H7.50002C7.03058 7.85002 6.65002 7.46947 6.65002 7.00002ZM7.50002 10.15C7.03058 10.15 6.65002 10.5306 6.65002 11C6.65002 11.4695 7.03058 11.85 7.50002 11.85H11.5C11.9695 11.85 12.35 11.4695 12.35 11C12.35 10.5306 11.9695 10.15 11.5 10.15H7.50002Z",
|
|
22
|
+
fill: H
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
t as OutlineSystemBill
|
|
29
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx as C } from "react/jsx-runtime";
|
|
2
|
+
const L = ({
|
|
3
|
+
width: e,
|
|
4
|
+
height: o,
|
|
5
|
+
fill: l,
|
|
6
|
+
...n
|
|
7
|
+
}) => /* @__PURE__ */ C(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: e,
|
|
11
|
+
height: o,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
...n,
|
|
16
|
+
children: /* @__PURE__ */ C(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
clipRule: "evenodd",
|
|
21
|
+
d: "M2.15001 5.00003C2.15 3.45669 3.42748 2.07553 5.10089 2.2873C7.41378 2.58 9.95193 3.3522 11.743 4.66711C11.8888 4.77415 12.1117 4.77445 12.2583 4.66709C14.0504 3.35457 16.597 2.58304 18.8983 2.28911C20.5722 2.07532 21.85 3.45671 21.85 5.00001V16C21.85 17.5998 20.5594 18.783 19.1054 18.9612C16.4134 19.291 14.7732 20.2924 13.8417 21.1145C13.3259 21.5697 12.6113 21.7362 12 21.7362C11.3887 21.7362 10.6741 21.5697 10.1584 21.1145C9.22682 20.2924 7.58664 19.291 4.89458 18.9612C3.44057 18.783 2.15 17.5998 2.15001 16L2.15001 5.00003ZM4.88745 3.97385C4.36919 3.90827 3.85001 4.33421 3.85001 5.00002L3.85001 16C3.85001 16.6094 4.36256 17.1833 5.10131 17.2738C8.03621 17.6333 9.95981 18.7165 11.15 19.7247L11.15 6.27356C11.0055 6.21149 10.8668 6.13279 10.7369 6.03746C9.26236 4.9549 7.03763 4.24596 4.88745 3.97385ZM12.85 6.27399L12.85 19.7247C14.0402 18.7165 15.9638 17.6333 18.8987 17.2738C19.6374 17.1833 20.15 16.6094 20.15 16V5.00001C20.15 4.33417 19.6311 3.90933 19.1137 3.97542C16.9724 4.24889 14.7385 4.95774 13.2627 6.03859C13.133 6.13361 12.9944 6.21208 12.85 6.27399ZM4.67538 8.79387C4.78924 8.33845 5.25073 8.06155 5.70616 8.17541L9.70616 9.17541C10.1616 9.28926 10.4385 9.75076 10.3246 10.2062C10.2108 10.6616 9.74927 10.9385 9.29384 10.8246L5.29384 9.82465C4.83842 9.71079 4.56152 9.2493 4.67538 8.79387ZM4.67538 12.7939C4.78924 12.3384 5.25073 12.0616 5.70616 12.1754L9.70616 13.1754C10.1616 13.2893 10.4385 13.7508 10.3246 14.2062C10.2108 14.6616 9.74927 14.9385 9.29384 14.8246L5.29384 13.8246C4.83842 13.7108 4.56152 13.2493 4.67538 12.7939Z",
|
|
22
|
+
fill: l
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
L as OutlineSystemBookOpen
|
|
29
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx as C } from "react/jsx-runtime";
|
|
2
|
+
const o = ({
|
|
3
|
+
width: e,
|
|
4
|
+
height: V,
|
|
5
|
+
fill: l,
|
|
6
|
+
...n
|
|
7
|
+
}) => /* @__PURE__ */ C(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: e,
|
|
11
|
+
height: V,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
...n,
|
|
16
|
+
children: /* @__PURE__ */ C(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
clipRule: "evenodd",
|
|
21
|
+
d: "M15.2749 4.14985H8.72487V2.62124C8.72487 2.1518 8.34431 1.77124 7.87487 1.77124C7.40543 1.77124 7.02487 2.1518 7.02487 2.62124V4.14985H5.99987C3.87358 4.14985 2.14987 5.87355 2.14987 7.99985V17.9998C2.14987 20.1261 3.87358 21.8498 5.99987 21.8498H17.9999C20.1262 21.8498 21.8499 20.1261 21.8499 17.9998V7.99985C21.8499 5.87355 20.1262 4.14985 17.9999 4.14985H16.9749V2.62494C16.9749 2.1555 16.5943 1.77494 16.1249 1.77494C15.6554 1.77494 15.2749 2.1555 15.2749 2.62494V4.14985ZM7.87487 7.97001C7.40543 7.97001 7.02487 7.58945 7.02487 7.12001V5.84985H5.99987C4.81246 5.84985 3.84987 6.81244 3.84987 7.99985V9.14985H20.1499V7.99985C20.1499 6.81244 19.1873 5.84985 17.9999 5.84985H16.9749V7.12497C16.9749 7.59441 16.5943 7.97497 16.1249 7.97497C15.6554 7.97497 15.2749 7.59441 15.2749 7.12497V5.84985H8.72487V7.12001C8.72487 7.58945 8.34431 7.97001 7.87487 7.97001ZM3.84987 10.8498H20.1499V17.9998C20.1499 19.1873 19.1873 20.1499 17.9999 20.1499H5.99987C4.81246 20.1499 3.84987 19.1873 3.84987 17.9998V10.8498Z",
|
|
22
|
+
fill: l
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
o as OutlineSystemCalendar
|
|
29
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx as C } from "react/jsx-runtime";
|
|
2
|
+
const i = ({
|
|
3
|
+
width: e,
|
|
4
|
+
height: l,
|
|
5
|
+
fill: n,
|
|
6
|
+
...o
|
|
7
|
+
}) => /* @__PURE__ */ C(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: e,
|
|
11
|
+
height: l,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
...o,
|
|
16
|
+
children: /* @__PURE__ */ C(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
clipRule: "evenodd",
|
|
21
|
+
d: "M4.99999 3.85002C4.36487 3.85002 3.84999 4.3649 3.84999 5.00002C3.84999 13.3671 10.6329 20.15 19 20.15C19.6351 20.15 20.15 19.6352 20.15 19V17.3541C20.15 16.8839 19.8637 16.461 19.4271 16.2863L17.393 15.4727C16.5924 15.1525 16.0785 15.7437 15.7603 16.3802C15.2566 17.3875 13.8096 16.5575 13.1652 16.2813C12.2231 15.8776 10.9969 15.199 9.89895 14.1011C8.67775 12.8799 7.78096 11.3177 7.29391 9.66174C7.07267 8.90954 7.06208 8.51865 7.61986 8.23976C8.25632 7.92153 8.84757 7.40765 8.52733 6.60706L7.71368 4.57293C7.53903 4.13632 7.11617 3.85002 6.64593 3.85002H4.99999ZM9.0025 9.43061C10.138 8.70106 10.6176 7.25529 10.1057 5.9757L9.29209 3.94156C8.85928 2.85954 7.81131 2.15002 6.64593 2.15002H4.99999C3.42598 2.15002 2.14999 3.42601 2.14999 5.00002C2.14999 14.306 9.694 21.85 19 21.85C20.574 21.85 21.85 20.574 21.85 19V17.3541C21.85 16.1887 21.1405 15.1407 20.0585 14.7079L18.0243 13.8943C16.7447 13.3824 15.299 13.862 14.5694 14.9975C13.7633 14.7313 12.3137 14.1117 11.101 12.899C9.88833 11.6863 9.26868 10.2367 9.0025 9.43061ZM12.15 3.00002C12.15 2.53058 12.5306 2.15002 13 2.15002C15.3244 2.15002 17.6143 3.09853 19.2579 4.74213C20.9015 6.38573 21.85 8.67563 21.85 11C21.85 11.4695 21.4694 11.85 21 11.85C20.5306 11.85 20.15 11.4695 20.15 11C20.15 9.12212 19.3837 7.27209 18.0558 5.94421C16.7279 4.61633 14.8779 3.85002 13 3.85002C12.5306 3.85002 12.15 3.46947 12.15 3.00002ZM12.15 7.00002C12.15 6.53058 12.5306 6.15002 13 6.15002C14.2738 6.15002 15.5287 6.66983 16.4295 7.57056C17.3302 8.47128 17.85 9.7262 17.85 11C17.85 11.4695 17.4694 11.85 17 11.85C16.5306 11.85 16.15 11.4695 16.15 11C16.15 10.1727 15.8124 9.35765 15.2274 8.77264C14.6424 8.18763 13.8273 7.85002 13 7.85002C12.5306 7.85002 12.15 7.46947 12.15 7.00002Z",
|
|
22
|
+
fill: n
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
i as OutlineSystemCalling
|
|
29
|
+
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { jsxs as o, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
const i = ({
|
|
3
|
+
width: l,
|
|
4
|
+
height: d,
|
|
5
|
+
fill: C,
|
|
6
|
+
...n
|
|
7
|
+
}) => /* @__PURE__ */ o(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: l,
|
|
11
|
+
height: d,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
...n,
|
|
16
|
+
children: [
|
|
17
|
+
/* @__PURE__ */ e(
|
|
18
|
+
"path",
|
|
19
|
+
{
|
|
20
|
+
fillRule: "evenodd",
|
|
21
|
+
clipRule: "evenodd",
|
|
22
|
+
d: "M12 8.15002C9.32144 8.15002 7.15002 10.3214 7.15002 13C7.15002 15.6786 9.32144 17.85 12 17.85C14.6786 17.85 16.85 15.6786 16.85 13C16.85 10.3214 14.6786 8.15002 12 8.15002ZM8.85002 13C8.85002 11.2603 10.2603 9.85002 12 9.85002C13.7397 9.85002 15.15 11.2603 15.15 13C15.15 14.7397 13.7397 16.15 12 16.15C10.2603 16.15 8.85002 14.7397 8.85002 13Z",
|
|
23
|
+
fill: C
|
|
24
|
+
}
|
|
25
|
+
),
|
|
26
|
+
/* @__PURE__ */ e(
|
|
27
|
+
"path",
|
|
28
|
+
{
|
|
29
|
+
fillRule: "evenodd",
|
|
30
|
+
clipRule: "evenodd",
|
|
31
|
+
d: "M10.6056 2.15002C9.31832 2.15002 8.11623 2.79336 7.40218 3.86443L6.98207 4.49459C6.66578 4.96904 6.17396 5.2984 5.61482 5.41023L4.24498 5.6842C2.44539 6.04412 1.15002 7.62421 1.15002 9.45944V18C1.15002 20.1263 2.87373 21.85 5.00002 21.85H19C21.1263 21.85 22.85 20.1263 22.85 18V9.45944C22.85 7.62421 21.5547 6.04412 19.7551 5.6842L18.3852 5.41023C17.8261 5.2984 17.3343 4.96904 17.018 4.49459L16.5979 3.86443C15.8838 2.79336 14.6817 2.15002 13.3945 2.15002H10.6056ZM8.81667 4.80742C9.21542 4.20929 9.88672 3.85002 10.6056 3.85002H13.3945C14.1133 3.85002 14.7846 4.20929 15.1834 4.80742L15.6035 5.43758C16.1699 6.28717 17.0506 6.87697 18.0518 7.07722L19.4217 7.35119C20.4266 7.55218 21.15 8.43457 21.15 9.45944V18C21.15 19.1874 20.1874 20.15 19 20.15H5.00002C3.81261 20.15 2.85002 19.1874 2.85002 18V9.45944C2.85002 8.43457 3.57341 7.55218 4.57837 7.35119L5.94821 7.07722C6.94947 6.87697 7.83016 6.28717 8.39656 5.43758L8.81667 4.80742Z",
|
|
32
|
+
fill: C
|
|
33
|
+
}
|
|
34
|
+
)
|
|
35
|
+
]
|
|
36
|
+
}
|
|
37
|
+
);
|
|
38
|
+
export {
|
|
39
|
+
i as OutlineSystemCamera
|
|
40
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { jsx as L } from "react/jsx-runtime";
|
|
2
|
+
const t = ({
|
|
3
|
+
width: C,
|
|
4
|
+
height: M,
|
|
5
|
+
fill: Z,
|
|
6
|
+
...V
|
|
7
|
+
}) => /* @__PURE__ */ L(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: C,
|
|
11
|
+
height: M,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
...V,
|
|
16
|
+
children: /* @__PURE__ */ L(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
d: "M16.4444 9.24964C16.9139 9.24964 17.2944 8.86908 17.2944 8.39964C17.2944 7.93019 16.9139 7.54964 16.4444 7.54964V9.24964ZM7.55556 7.54964C7.08611 7.54964 6.70556 7.93019 6.70556 8.39964C6.70556 8.86908 7.08611 9.24964 7.55556 9.24964V7.54964ZM9.77778 13.5685C10.2472 13.5685 10.6278 13.1879 10.6278 12.7185C10.6278 12.249 10.2472 11.8685 9.77778 11.8685V13.5685ZM7.55556 11.8685C7.08611 11.8685 6.70556 12.249 6.70556 12.7185C6.70556 13.1879 7.08611 13.5685 7.55556 13.5685V11.8685ZM12.1891 18.5061L11.5987 17.8946V17.8946L12.1891 18.5061ZM9.40407 21.1947L8.8137 20.5832L8.8137 20.5832L9.40407 21.1947ZM6.9893 19.4296L6.14363 19.5153V19.5153L6.9893 19.4296ZM4.99559 17.4923L5.07658 16.6461L5.07657 16.6461L4.99559 17.4923ZM8.60981 21.8858L8.98263 22.6497L8.98263 22.6497L8.60981 21.8858ZM7.05525 21.2572L7.86068 20.9855H7.86068L7.05525 21.2572ZM13.6223 17.5476L13.4199 16.722L13.6223 17.5476ZM13.0335 17.7835L12.6094 17.0468L12.6094 17.0468L13.0335 17.7835ZM21.4632 15.2206L20.7208 14.8067V14.8067L21.4632 15.2206ZM19.673 16.9602L20.069 17.7123L19.673 16.9602ZM20.8631 3.80375L20.3121 4.451L20.3121 4.451L20.8631 3.80375ZM21.174 4.10586L21.8053 3.53672L21.8053 3.53672L21.174 4.10586ZM2.0107 15.5341L1.16503 15.6198H1.16503L2.0107 15.5341ZM4.00441 17.4715L3.92342 18.3176L3.92343 18.3176L4.00441 17.4715ZM16.4444 7.54964H7.55556V9.24964H16.4444V7.54964ZM2.85 15.0525V9.47934H1.15V15.0525H2.85ZM8.66667 3.8511H15.6134V2.1511H8.66667V3.8511ZM21.15 9.20715V10.4324H22.85V9.20715H21.15ZM11.5987 17.8946L8.8137 20.5832L9.99443 21.8062L12.7794 19.1176L11.5987 17.8946ZM7.85 20.2225V19.9112H6.15V20.2225H7.85ZM7.85 19.9112C7.85 19.6814 7.85109 19.503 7.83497 19.3439L6.14363 19.5153C6.14891 19.5674 6.15 19.6397 6.15 19.9112H7.85ZM4.5 18.3319C4.77763 18.3319 4.85655 18.3329 4.91462 18.3384L5.07657 16.6461C4.91735 16.6309 4.73831 16.6319 4.5 16.6319V18.3319ZM7.83497 19.3439C7.68847 17.8986 6.51832 16.7841 5.07658 16.6461L4.91461 18.3384C5.58298 18.4024 6.0823 18.9102 6.14363 19.5153L7.83497 19.3439ZM8.8137 20.5832C8.59644 20.7929 8.45214 20.932 8.34229 21.0298C8.22278 21.1361 8.20385 21.1381 8.23699 21.1219L8.98263 22.6497C9.1743 22.5561 9.34059 22.4171 9.47262 22.2995C9.61432 22.1734 9.78788 22.0056 9.99443 21.8062L8.8137 20.5832ZM6.15 20.2225C6.15 20.5051 6.14982 20.7439 6.15764 20.9315C6.16489 21.1053 6.18063 21.3236 6.24981 21.5288L7.86068 20.9855C7.87461 21.0268 7.86273 21.0181 7.85617 20.8607C7.85018 20.7171 7.85 20.5205 7.85 20.2225H6.15ZM8.23699 21.1219C8.07304 21.2019 7.90208 21.1083 7.86068 20.9855L6.24981 21.5288C6.63145 22.6605 7.9326 23.1621 8.98263 22.6497L8.23699 21.1219ZM14.7455 16.6319C14.2166 16.6319 13.8106 16.6262 13.4199 16.722L13.8248 18.3731C13.9696 18.3376 14.1338 18.3319 14.7455 18.3319V16.6319ZM12.7794 19.1176C13.214 18.6981 13.3319 18.5925 13.4576 18.5201L12.6094 17.0468C12.2599 17.248 11.9733 17.533 11.5987 17.8946L12.7794 19.1176ZM13.4199 16.722C13.1357 16.7917 12.8627 16.901 12.6094 17.0468L13.4576 18.5201C13.5715 18.4545 13.6951 18.4049 13.8248 18.3731L13.4199 16.722ZM21.15 10.4324C21.15 11.7228 21.1492 12.6352 21.0862 13.3469C21.0242 14.0471 20.9071 14.4727 20.7208 14.8067L22.2056 15.6346C22.5561 15.0059 22.7074 14.3126 22.7796 13.4969C22.8508 12.6928 22.85 11.6924 22.85 10.4324H21.15ZM14.7455 18.3319C16.0434 18.3319 17.0692 18.3326 17.8928 18.2637C18.7263 18.194 19.4304 18.0486 20.069 17.7123L19.277 16.2081C18.9249 16.3935 18.4775 16.5089 17.7511 16.5696C17.0148 16.6312 16.0722 16.6319 14.7455 16.6319V18.3319ZM20.7208 14.8067C20.3918 15.3966 19.8913 15.8847 19.277 16.2081L20.069 17.7123C20.97 17.2379 21.7134 16.5171 22.2056 15.6346L20.7208 14.8067ZM15.6134 3.8511C17.0703 3.8511 18.0869 3.85254 18.8601 3.94537C19.6147 4.03598 20.0204 4.20265 20.3121 4.451L21.4141 3.1565C20.7629 2.60219 19.9793 2.36755 19.0627 2.25749C18.1646 2.14966 17.0278 2.1511 15.6134 2.1511V3.8511ZM22.85 9.20715C22.85 7.83462 22.8516 6.72472 22.74 5.84663C22.6254 4.94599 22.3802 4.17443 21.8053 3.53672L20.5427 4.675C20.7938 4.95355 20.9616 5.33762 21.0535 6.06106C21.1484 6.80704 21.15 7.78965 21.15 9.20715H22.85ZM20.3121 4.451C20.3941 4.52079 20.4711 4.59563 20.5427 4.675L21.8053 3.53672C21.6835 3.4016 21.5528 3.27459 21.4141 3.15649L20.3121 4.451ZM2.85 9.47934C2.85 7.92769 2.85191 6.85192 2.96402 6.04164C3.07239 5.25836 3.26903 4.85059 3.56868 4.55941L2.38395 3.34022C1.70728 3.99776 1.41577 4.82781 1.28006 5.80865C1.14809 6.76248 1.15 7.97711 1.15 9.47934H2.85ZM8.66667 2.1511C7.11869 2.1511 5.87458 2.14939 4.89898 2.27685C3.90137 2.40719 3.05721 2.68599 2.38395 3.34022L3.56868 4.55941C3.87173 4.26492 4.30139 4.06937 5.11921 3.96253C5.95904 3.85281 7.07195 3.8511 8.66667 3.8511V2.1511ZM1.15 15.0525C1.15 15.2824 1.14891 15.4607 1.16503 15.6198L2.85637 15.4484C2.85109 15.3964 2.85 15.324 2.85 15.0525H1.15ZM4.5 16.6319C4.22237 16.6319 4.14345 16.6309 4.08539 16.6253L3.92343 18.3176C4.08265 18.3329 4.26169 18.3319 4.5 18.3319V16.6319ZM1.16503 15.6198C1.31153 17.0652 2.48168 18.1796 3.92342 18.3176L4.08539 16.6253C3.41702 16.5614 2.9177 16.0535 2.85637 15.4484L1.16503 15.6198ZM9.77778 11.8685H7.55556V13.5685H9.77778V11.8685Z",
|
|
20
|
+
fill: Z
|
|
21
|
+
}
|
|
22
|
+
)
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
export {
|
|
26
|
+
t as OutlineSystemChat
|
|
27
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
const r = ({
|
|
3
|
+
width: l,
|
|
4
|
+
height: n,
|
|
5
|
+
fill: o,
|
|
6
|
+
...t
|
|
7
|
+
}) => /* @__PURE__ */ e(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: l,
|
|
11
|
+
height: n,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
...t,
|
|
16
|
+
children: /* @__PURE__ */ e(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
clipRule: "evenodd",
|
|
21
|
+
d: "M19.5631 5.8632C19.9147 6.17416 19.9478 6.71134 19.6368 7.06302L12.1817 15.4944C11.1051 16.712 9.22986 16.7841 8.0629 15.6529L4.4084 12.1103C4.07133 11.7835 4.06297 11.2454 4.38972 10.9083C4.71646 10.5713 5.25459 10.5629 5.59165 10.8897L9.24615 14.4323C9.71703 14.8888 10.4737 14.8596 10.9081 14.3683L18.3632 5.93693C18.6742 5.58525 19.2114 5.55224 19.5631 5.8632Z",
|
|
22
|
+
fill: o
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
r as OutlineSystemCheck
|
|
29
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { jsxs as o, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
const s = ({
|
|
3
|
+
width: t,
|
|
4
|
+
height: l,
|
|
5
|
+
fill: C,
|
|
6
|
+
...n
|
|
7
|
+
}) => /* @__PURE__ */ o(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: t,
|
|
11
|
+
height: l,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
...n,
|
|
16
|
+
children: [
|
|
17
|
+
/* @__PURE__ */ e(
|
|
18
|
+
"path",
|
|
19
|
+
{
|
|
20
|
+
d: "M16.671 9.52292C16.9592 9.15237 16.8924 8.61833 16.5219 8.33012C16.1513 8.04191 15.6173 8.10867 15.3291 8.47922L11.3221 13.6311C11.2686 13.6998 11.168 13.7087 11.1033 13.6505L8.56863 11.3693C8.21969 11.0552 7.68225 11.0835 7.36821 11.4325C7.05417 11.7814 7.08245 12.3188 7.43139 12.6329L9.96607 14.9141C10.7643 15.6325 12.0046 15.5225 12.664 14.6748L16.671 9.52292Z",
|
|
21
|
+
fill: C
|
|
22
|
+
}
|
|
23
|
+
),
|
|
24
|
+
/* @__PURE__ */ e(
|
|
25
|
+
"path",
|
|
26
|
+
{
|
|
27
|
+
fillRule: "evenodd",
|
|
28
|
+
clipRule: "evenodd",
|
|
29
|
+
d: "M12 2.15002C6.56001 2.15002 2.15001 6.56002 2.15001 12C2.15001 17.44 6.56001 21.85 12 21.85C17.44 21.85 21.85 17.44 21.85 12C21.85 6.56002 17.44 2.15002 12 2.15002ZM3.85001 12C3.85001 7.4989 7.49889 3.85002 12 3.85002C16.5011 3.85002 20.15 7.4989 20.15 12C20.15 16.5011 16.5011 20.15 12 20.15C7.49889 20.15 3.85001 16.5011 3.85001 12Z",
|
|
30
|
+
fill: C
|
|
31
|
+
}
|
|
32
|
+
)
|
|
33
|
+
]
|
|
34
|
+
}
|
|
35
|
+
);
|
|
36
|
+
export {
|
|
37
|
+
s as OutlineSystemCheckCircle
|
|
38
|
+
};
|