@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,29 @@
|
|
|
1
|
+
import { jsx as C } from "react/jsx-runtime";
|
|
2
|
+
const n = ({
|
|
3
|
+
width: L,
|
|
4
|
+
height: V,
|
|
5
|
+
fill: e,
|
|
6
|
+
...H
|
|
7
|
+
}) => /* @__PURE__ */ C(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: L,
|
|
11
|
+
height: V,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
...H,
|
|
16
|
+
children: /* @__PURE__ */ C(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
clipRule: "evenodd",
|
|
21
|
+
d: "M8.60604 2.15112H8.66658H15.6134H15.6685C17.0572 2.15111 18.1762 2.15109 19.0626 2.25752C19.9793 2.36757 20.7628 2.60222 21.414 3.15652C21.5527 3.27462 21.6834 3.40162 21.8053 3.53674C22.3801 4.17445 22.6254 4.94602 22.7399 5.84666C22.85 6.71241 22.8499 7.8035 22.8499 9.14947V9.20718V10.4324V10.4728C22.8499 11.7137 22.8499 12.7014 22.7795 13.4969C22.7073 14.3126 22.5561 15.006 22.2055 15.6346C21.7134 16.5172 20.9699 17.2379 20.0689 17.7124C19.4303 18.0486 18.7262 18.1941 17.8927 18.2637C17.0772 18.3319 16.0636 18.3319 14.7839 18.3319H14.7454C14.1337 18.3319 13.9695 18.3376 13.8247 18.3731C13.6951 18.4049 13.5714 18.4546 13.4575 18.5201C13.3318 18.5925 13.2139 18.6981 12.7793 19.1177L9.99435 21.8062L9.98143 21.8187C9.78059 22.0126 9.61126 22.1761 9.47254 22.2996C9.34051 22.4171 9.17422 22.5561 8.98255 22.6497C7.93252 23.1622 6.63137 22.6605 6.24973 21.5288C6.18055 21.3237 6.16481 21.1054 6.15756 20.9316C6.14991 20.7481 6.14991 20.5155 6.14992 20.241V20.2226V19.9112C6.14992 19.6398 6.14883 19.5674 6.14355 19.5154C6.08222 18.9103 5.5829 18.4024 4.91453 18.3384C4.85647 18.3329 4.77754 18.3319 4.49992 18.3319L4.45939 18.3319C4.24109 18.332 4.07342 18.332 3.92335 18.3176C2.48159 18.1797 1.31145 17.0652 1.16495 15.6199C1.1498 15.4704 1.14985 15.3039 1.14991 15.0937L1.14992 15.0526V9.47937L1.14992 9.41599C1.14989 7.94294 1.14987 6.74906 1.27998 5.80868C1.41568 4.82784 1.7072 3.99779 2.38386 3.34025C3.05712 2.68602 3.90129 2.40721 4.8989 2.27688C5.86174 2.15109 7.08613 2.1511 8.60604 2.15112ZM5.11913 3.96255C4.30131 4.0694 3.87164 4.26495 3.56859 4.55944C3.26895 4.85061 3.07231 5.25839 2.96394 6.04166C2.85183 6.85195 2.84992 7.92772 2.84992 9.47937V15.0526C2.84992 15.324 2.85101 15.3964 2.85629 15.4484C2.91762 16.0535 3.41694 16.5614 4.08531 16.6254C4.14337 16.6309 4.22229 16.6319 4.49992 16.6319L4.54044 16.6319C4.75875 16.6318 4.92642 16.6318 5.07649 16.6462C6.51824 16.7842 7.68839 17.8986 7.83488 19.3439C7.85004 19.4934 7.84999 19.6599 7.84993 19.8701L7.84992 19.9112V20.2226C7.84992 20.5205 7.8501 20.7171 7.85609 20.8607C7.85958 20.9446 7.86459 20.9863 7.8664 21.0007C7.91484 21.1128 8.07127 21.1943 8.22456 21.1276L8.22583 21.1267C8.23638 21.1188 8.27188 21.0924 8.34221 21.0298C8.45205 20.932 8.59636 20.7929 8.81362 20.5832L11.5986 17.8946L11.6589 17.8363C12.0045 17.5023 12.2789 17.2371 12.6093 17.0469C12.8626 16.901 13.1356 16.7918 13.4198 16.7221C13.7895 16.6314 14.1729 16.6316 14.6612 16.6319L14.7454 16.6319C16.0721 16.6319 17.0147 16.6312 17.751 16.5697C18.4774 16.5089 18.9248 16.3935 19.2769 16.2082C19.8912 15.8847 20.3917 15.3967 20.7207 14.8067C20.907 14.4727 21.0241 14.0471 21.0861 13.347C21.1491 12.6352 21.1499 11.7229 21.1499 10.4324V9.20718C21.1499 7.78968 21.1483 6.80707 21.0535 6.06108C20.9615 5.33765 20.7937 4.95357 20.5426 4.67503C20.471 4.59566 20.394 4.52082 20.3121 4.45103C20.0203 4.20268 19.6146 4.036 18.86 3.9454C18.0868 3.85256 17.0702 3.85113 15.6134 3.85113H8.66658C7.07187 3.85113 5.95895 3.85283 5.11913 3.96255ZM5.1499 6.00112L5.14992 6.00729V9.99495L5.1499 10.0011L5.14992 10.0073V12.0011C5.14992 12.4706 5.53048 12.8511 5.99992 12.8511C6.46936 12.8511 6.84992 12.4706 6.84992 12.0011V10.8511H9.6499V12.0011C9.6499 12.4706 10.0305 12.8511 10.4999 12.8511C10.9693 12.8511 11.3499 12.4706 11.3499 12.0011V10.0011V9.82955C11.3499 9.07368 11.0496 8.34877 10.5152 7.8143L8.39383 5.69298C8.04689 5.34603 7.57633 5.15112 7.08568 5.15112H5.9999C5.53045 5.15112 5.1499 5.53168 5.1499 6.00112ZM9.42847 9.15112C9.39374 9.10359 9.35521 9.05852 9.31307 9.01638L7.19175 6.89506C7.16362 6.86693 7.12546 6.85112 7.08568 6.85112H6.84992V9.15112H9.42847ZM13.15 10.0011C13.15 9.53169 13.5305 9.15113 14 9.15113H15.65V7.50113C15.65 7.03169 16.0305 6.65113 16.5 6.65113C16.9694 6.65113 17.35 7.03169 17.35 7.50113V9.15113H17.9809C17.9931 9.15086 18.0054 9.15086 18.0177 9.15113H19.5C19.9694 9.15113 20.35 9.53169 20.35 10.0011C20.35 10.4706 19.9694 10.8511 19.5 10.8511H18.6149C18.2866 11.6687 17.7202 12.4884 16.9179 13.2268C17.4502 13.4913 17.991 13.6511 18.5 13.6511C18.9694 13.6511 19.35 14.0317 19.35 14.5011C19.35 14.9705 18.9694 15.3511 18.5 15.3511C17.5003 15.3511 16.5613 14.9899 15.7922 14.5524C15.6669 14.4811 15.5445 14.4069 15.4256 14.3307C14.7914 14.708 14.0722 15.0397 13.2688 15.3075C12.8234 15.456 12.342 15.2153 12.1936 14.7699C12.0451 14.3246 12.2858 13.8432 12.7312 13.6947C13.1858 13.5432 13.6018 13.3709 13.9812 13.1832C13.9531 13.1559 13.9257 13.1289 13.899 13.1021C13.567 12.7702 13.567 12.232 13.899 11.9001C14.2309 11.5681 14.7691 11.5681 15.101 11.9001C15.209 12.008 15.3308 12.1223 15.4643 12.2386C16.0126 11.7908 16.4233 11.3137 16.7116 10.8511L16.5 10.8511L14 10.8511C13.5305 10.8511 13.15 10.4706 13.15 10.0011Z",
|
|
22
|
+
fill: e
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
n as OutlineSystemLanguage
|
|
29
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { jsxs as e, jsx as L } from "react/jsx-runtime";
|
|
2
|
+
const r = ({
|
|
3
|
+
width: t,
|
|
4
|
+
height: n,
|
|
5
|
+
fill: C,
|
|
6
|
+
...s
|
|
7
|
+
}) => /* @__PURE__ */ e(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: t,
|
|
11
|
+
height: n,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
...s,
|
|
16
|
+
children: [
|
|
17
|
+
/* @__PURE__ */ L(
|
|
18
|
+
"path",
|
|
19
|
+
{
|
|
20
|
+
d: "M10.4563 8.32727C9.0728 8.32727 7.74591 8.87673 6.76741 9.85482L3.6814 12.9398L3.67828 12.9429C2.69975 13.9215 2.15002 15.2486 2.15002 16.6325C2.15002 18.0163 2.69975 19.3435 3.67828 20.322C4.65681 21.3005 5.98398 21.8503 7.36782 21.8503C8.75167 21.8503 10.0788 21.3005 11.0574 20.322L12.6014 18.778C12.9333 18.4461 12.9333 17.9079 12.6014 17.5759C12.2694 17.244 11.7312 17.244 11.3993 17.5759L9.85528 19.1199C9.19557 19.7796 8.3008 20.1503 7.36782 20.1503C6.43485 20.1503 5.54008 19.7796 4.88036 19.1199C4.22065 18.4602 3.85002 17.5654 3.85002 16.6325C3.85002 15.7008 4.21964 14.8072 4.87766 14.1477L4.88026 14.1451L7.96926 11.0571C8.62897 10.3977 9.52356 10.0273 10.4563 10.0273C11.3891 10.0273 12.2837 10.3977 12.9434 11.0572C13.2754 11.389 13.8136 11.3889 14.1455 11.0569C14.4774 10.7249 14.4773 10.1867 14.1452 9.85482C13.1667 8.87673 11.8398 8.32727 10.4563 8.32727Z",
|
|
21
|
+
fill: C
|
|
22
|
+
}
|
|
23
|
+
),
|
|
24
|
+
/* @__PURE__ */ L(
|
|
25
|
+
"path",
|
|
26
|
+
{
|
|
27
|
+
d: "M16.6328 2.14966C15.2489 2.14966 13.9218 2.69939 12.9432 3.67792L11.3992 5.22192C11.0673 5.55386 11.0673 6.09205 11.3992 6.424C11.7312 6.75594 12.2694 6.75594 12.6013 6.424L14.1453 4.88C14.805 4.22028 15.6998 3.84966 16.6328 3.84966C17.5657 3.84966 18.4605 4.22028 19.1202 4.88C19.7799 5.53971 20.1506 6.43448 20.1506 7.36746C20.1506 8.30043 19.7799 9.1952 19.1202 9.85492C19.1183 9.85683 19.1164 9.85874 19.1145 9.86067L16.0314 12.9428C15.3717 13.6022 14.4771 13.9727 13.5443 13.9727C12.6115 13.9727 11.717 13.6022 11.0572 12.9428C10.7252 12.6109 10.187 12.611 9.85516 12.943C9.52328 13.2751 9.52339 13.8132 9.85541 14.1451C10.8339 15.1232 12.1608 15.6727 13.5443 15.6727C14.9278 15.6727 16.2548 15.1232 17.2333 14.1451L20.3223 11.0571C20.3244 11.0549 20.3265 11.0528 20.3287 11.0506C21.3032 10.0727 21.8506 8.7483 21.8506 7.36746C21.8506 5.98361 21.3008 4.65644 20.3223 3.67792C19.3438 2.69939 18.0166 2.14966 16.6328 2.14966Z",
|
|
28
|
+
fill: C
|
|
29
|
+
}
|
|
30
|
+
)
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
);
|
|
34
|
+
export {
|
|
35
|
+
r as OutlineSystemLink
|
|
36
|
+
};
|
|
@@ -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: "M14.8298 4.7C13.6444 4.7 12.5076 5.17087 11.6695 6.00903L10.6941 6.98444C10.3621 7.31639 9.82394 7.31639 9.492 6.98444C9.16005 6.6525 9.16005 6.11431 9.492 5.78236L10.4674 4.80695C11.6244 3.64998 13.1936 3 14.8298 3C18.237 3 20.9991 5.7621 20.9991 9.16933C20.9991 10.8055 20.3491 12.3747 19.1922 13.5317L18.2167 14.5071C17.8848 14.8391 17.3466 14.8391 17.0147 14.5071C16.6827 14.1752 16.6827 13.637 17.0147 13.305L17.9901 12.3296C18.8282 11.4915 19.2991 10.3547 19.2991 9.16933C19.2991 6.70099 17.2981 4.7 14.8298 4.7ZM6.98444 9.492C7.31638 9.82395 7.31638 10.3621 6.98444 10.6941L6.00904 11.6695C5.17087 12.5076 4.7 13.6444 4.7 14.8298C4.7 17.2981 6.70099 19.2991 9.16933 19.2991C10.3547 19.2991 11.4915 18.8282 12.3296 17.9901L13.305 17.0147C13.637 16.6827 14.1751 16.6827 14.5071 17.0147C14.839 17.3466 14.839 17.8848 14.5071 18.2168L13.5317 19.1922C12.3747 20.3491 10.8055 20.9991 9.16933 20.9991C5.7621 20.9991 3 18.237 3 14.8298C3 13.1936 3.64998 11.6244 4.80695 10.4674L5.78236 9.492C6.1143 9.16005 6.65249 9.16006 6.98444 9.492ZM15.601 9.60104C15.933 9.26909 15.933 8.73091 15.601 8.39896C15.2691 8.06701 14.7309 8.06701 14.399 8.39896L8.39896 14.399C8.06701 14.7309 8.06701 15.2691 8.39896 15.601C8.73091 15.933 9.26909 15.933 9.60104 15.601L15.601 9.60104Z",
|
|
22
|
+
fill: l
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
t as OutlineSystemLink2
|
|
29
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx as C } from "react/jsx-runtime";
|
|
2
|
+
const n = ({
|
|
3
|
+
width: e,
|
|
4
|
+
height: H,
|
|
5
|
+
fill: l,
|
|
6
|
+
...t
|
|
7
|
+
}) => /* @__PURE__ */ C(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: e,
|
|
11
|
+
height: H,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
...t,
|
|
16
|
+
children: /* @__PURE__ */ C(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
clipRule: "evenodd",
|
|
21
|
+
d: "M2.19592 6.00125C2.19592 5.5318 2.57648 5.15125 3.04592 5.15125H4.04592C4.51536 5.15125 4.89592 5.5318 4.89592 6.00125C4.89592 6.47069 4.51536 6.85125 4.04592 6.85125H3.04592C2.57648 6.85125 2.19592 6.47069 2.19592 6.00125ZM8.10362 6.00125C8.10362 5.5318 8.48418 5.15125 8.95362 5.15125H20.9536C21.4231 5.15125 21.8036 5.5318 21.8036 6.00125C21.8036 6.47069 21.4231 6.85125 20.9536 6.85125H8.95362C8.48418 6.85125 8.10362 6.47069 8.10362 6.00125ZM2.19592 12.0012C2.19592 11.5318 2.57648 11.1512 3.04592 11.1512H4.04592C4.51536 11.1512 4.89592 11.5318 4.89592 12.0012C4.89592 12.4707 4.51536 12.8512 4.04592 12.8512H3.04592C2.57648 12.8512 2.19592 12.4707 2.19592 12.0012ZM8.10362 12.0012C8.10362 11.5318 8.48418 11.1512 8.95362 11.1512H20.9536C21.4231 11.1512 21.8036 11.5318 21.8036 12.0012C21.8036 12.4707 21.4231 12.8512 20.9536 12.8512H8.95362C8.48418 12.8512 8.10362 12.4707 8.10362 12.0012ZM2.19592 18.0012C2.19592 17.5318 2.57648 17.1512 3.04592 17.1512H4.04592C4.51536 17.1512 4.89592 17.5318 4.89592 18.0012C4.89592 18.4707 4.51536 18.8512 4.04592 18.8512H3.04592C2.57648 18.8512 2.19592 18.4707 2.19592 18.0012ZM8.10362 18.0012C8.10362 17.5318 8.48418 17.1512 8.95362 17.1512H20.9536C21.4231 17.1512 21.8036 17.5318 21.8036 18.0012C21.8036 18.4707 21.4231 18.8512 20.9536 18.8512H8.95362C8.48418 18.8512 8.10362 18.4707 8.10362 18.0012Z",
|
|
22
|
+
fill: l
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
n as OutlineSystemListView
|
|
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: o,
|
|
6
|
+
...V
|
|
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
|
+
...V,
|
|
16
|
+
children: /* @__PURE__ */ C(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
clipRule: "evenodd",
|
|
21
|
+
d: "M7.15002 8.00002C7.15002 5.32144 9.32144 3.15002 12 3.15002C14.6786 3.15002 16.85 5.32144 16.85 8.00002V9.15002H17C19.1263 9.15002 20.85 10.8737 20.85 13V17C20.85 19.1263 19.1263 20.85 17 20.85H7.00002C4.87373 20.85 3.15002 19.1263 3.15002 17V13C3.15002 10.8737 4.87373 9.15002 7.00002 9.15002H7.15002V8.00002ZM15.15 8.00002V9.15002H8.85002V8.00002C8.85002 6.26033 10.2603 4.85002 12 4.85002C13.7397 4.85002 15.15 6.26033 15.15 8.00002ZM7.00002 10.85H8.00002H16H17C18.1874 10.85 19.15 11.8126 19.15 13V17C19.15 18.1874 18.1874 19.15 17 19.15H7.00002C5.81261 19.15 4.85002 18.1874 4.85002 17V13C4.85002 11.8126 5.81261 10.85 7.00002 10.85ZM13.1 13.5C13.1 13.0306 12.7195 12.65 12.25 12.65C11.7806 12.65 11.4 13.0306 11.4 13.5V16.5C11.4 16.9695 11.7806 17.35 12.25 17.35C12.7195 17.35 13.1 16.9695 13.1 16.5V13.5Z",
|
|
22
|
+
fill: o
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
t as OutlineSystemLock
|
|
29
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
const i = ({
|
|
3
|
+
width: C,
|
|
4
|
+
height: l,
|
|
5
|
+
fill: n,
|
|
6
|
+
...o
|
|
7
|
+
}) => /* @__PURE__ */ e(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: C,
|
|
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__ */ e(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
clipRule: "evenodd",
|
|
21
|
+
d: "M2.15002 8.50112C2.15002 6.37483 3.87373 4.65112 6.00002 4.65112H18C20.1263 4.65112 21.85 6.37483 21.85 8.50112V15.5011C21.85 17.6274 20.1263 19.3511 18 19.3511H6.00002C3.87373 19.3511 2.15002 17.6274 2.15002 15.5011V8.50112ZM4.02429 7.65181C3.91214 7.91234 3.85002 8.19948 3.85002 8.50112V15.5011C3.85002 16.6885 4.81261 17.6511 6.00002 17.6511H18C19.1874 17.6511 20.15 16.6885 20.15 15.5011V8.50112C20.15 8.19948 20.0879 7.91234 19.9758 7.65181L14.5353 12.4122C13.0837 13.6823 10.9163 13.6823 9.46478 12.4122L4.02429 7.65181ZM5.26623 6.4796L10.5842 11.1329C11.3948 11.8421 12.6052 11.8421 13.4158 11.1329L18.7338 6.4796C18.5048 6.39646 18.2577 6.35112 18 6.35112H6.00002C5.74232 6.35112 5.49521 6.39646 5.26623 6.4796Z",
|
|
22
|
+
fill: n
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
i as OutlineSystemMail
|
|
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: "M11.85 2.7C7.33889 2.7 3.7 6.30906 3.7 10.7389C3.7 12.9094 4.96875 15.4975 6.73371 17.5869C7.60488 18.6182 8.56472 19.4883 9.48658 20.0938C10.4258 20.7107 11.2441 21 11.85 21C12.4559 21 13.2742 20.7107 14.2134 20.0938C15.1353 19.4883 16.0951 18.6182 16.9663 17.5869C18.7313 15.4975 20 12.9094 20 10.7389C20 6.30906 16.3611 2.7 11.85 2.7ZM2 10.7389C2 5.35033 6.41998 1 11.85 1C17.28 1 21.7 5.35033 21.7 10.7389C21.7 13.4775 20.1562 16.445 18.265 18.6839C17.308 19.8167 16.2288 20.8039 15.1467 21.5147C14.082 22.214 12.9316 22.7 11.85 22.7C10.7684 22.7 9.61796 22.214 8.55326 21.5147C7.47122 20.8039 6.392 19.8167 5.43504 18.6839C3.54375 16.445 2 13.4775 2 10.7389ZM11.85 8.7C10.6626 8.7 9.7 9.66259 9.7 10.85C9.7 12.0374 10.6626 13 11.85 13C13.0374 13 14 12.0374 14 10.85C14 9.66259 13.0374 8.7 11.85 8.7ZM8 10.85C8 8.7237 9.7237 7 11.85 7C13.9763 7 15.7 8.7237 15.7 10.85C15.7 12.9763 13.9763 14.7 11.85 14.7C9.7237 14.7 8 12.9763 8 10.85Z",
|
|
22
|
+
fill: n
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
i as OutlineSystemMapPin
|
|
29
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
const i = ({
|
|
3
|
+
width: C,
|
|
4
|
+
height: l,
|
|
5
|
+
fill: n,
|
|
6
|
+
...o
|
|
7
|
+
}) => /* @__PURE__ */ e(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: C,
|
|
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__ */ e(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
clipRule: "evenodd",
|
|
21
|
+
d: "M2.14999 6.00112C2.14999 5.53168 2.53055 5.15112 2.99999 5.15112H21C21.4694 5.15112 21.85 5.53168 21.85 6.00112C21.85 6.47057 21.4694 6.85112 21 6.85112H2.99999C2.53055 6.85112 2.14999 6.47057 2.14999 6.00112ZM2.14999 12.0011C2.14999 11.5317 2.53055 11.1511 2.99999 11.1511H21C21.4694 11.1511 21.85 11.5317 21.85 12.0011C21.85 12.4706 21.4694 12.8511 21 12.8511H2.99999C2.53055 12.8511 2.14999 12.4706 2.14999 12.0011ZM2.14999 18.0011C2.14999 17.5317 2.53055 17.1511 2.99999 17.1511H21C21.4694 17.1511 21.85 17.5317 21.85 18.0011C21.85 18.4706 21.4694 18.8511 21 18.8511H2.99999C2.53055 18.8511 2.14999 18.4706 2.14999 18.0011Z",
|
|
22
|
+
fill: n
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
i as OutlineSystemMenu
|
|
29
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { jsxs as l, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
const o = ({
|
|
3
|
+
width: L,
|
|
4
|
+
height: d,
|
|
5
|
+
fill: C,
|
|
6
|
+
...t
|
|
7
|
+
}) => /* @__PURE__ */ l(
|
|
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
|
+
...t,
|
|
16
|
+
children: [
|
|
17
|
+
/* @__PURE__ */ e(
|
|
18
|
+
"path",
|
|
19
|
+
{
|
|
20
|
+
fillRule: "evenodd",
|
|
21
|
+
clipRule: "evenodd",
|
|
22
|
+
d: "M19.82 7.495C19.31 7.175 18.745 7.015 18.125 7.015C17.625 7.015 17.19 7.105 16.82 7.285C16.45 7.455 16.16 7.675 15.95 7.945C15.9346 7.9648 15.9196 7.98469 15.905 8.00465V4H13.895V14.905H15.815V13.9694C15.8653 14.0625 15.9253 14.1544 15.995 14.245C16.205 14.495 16.485 14.7 16.835 14.86C17.195 15.01 17.61 15.085 18.08 15.085C18.7 15.085 19.27 14.93 19.79 14.62C20.32 14.3 20.735 13.835 21.035 13.225C21.345 12.605 21.5 11.88 21.5 11.05C21.5 10.21 21.345 9.485 21.035 8.875C20.735 8.265 20.33 7.805 19.82 7.495ZM18.62 13.06C18.35 13.25 18.04 13.345 17.69 13.345C17.32 13.345 16.995 13.255 16.715 13.075C16.445 12.885 16.235 12.62 16.085 12.28C15.935 11.93 15.86 11.53 15.86 11.08V11.02C15.86 10.56 15.935 10.16 16.085 9.82C16.235 9.48 16.445 9.22 16.715 9.04C16.995 8.85 17.32 8.755 17.69 8.755C18.04 8.755 18.35 8.85 18.62 9.04C18.9 9.23 19.115 9.5 19.265 9.85C19.415 10.19 19.49 10.59 19.49 11.05C19.49 11.51 19.415 11.915 19.265 12.265C19.115 12.605 18.9 12.87 18.62 13.06Z",
|
|
23
|
+
fill: C
|
|
24
|
+
}
|
|
25
|
+
),
|
|
26
|
+
/* @__PURE__ */ e(
|
|
27
|
+
"path",
|
|
28
|
+
{
|
|
29
|
+
fillRule: "evenodd",
|
|
30
|
+
clipRule: "evenodd",
|
|
31
|
+
d: "M8.55999 4.345H6.38499L2.49999 14.905H4.68999L5.47664 12.595H9.45837L10.27 14.905H12.445L8.55999 4.345ZM6.0803 10.825H8.84791L7.45817 6.79831L6.0803 10.825Z",
|
|
32
|
+
fill: C
|
|
33
|
+
}
|
|
34
|
+
),
|
|
35
|
+
/* @__PURE__ */ e(
|
|
36
|
+
"path",
|
|
37
|
+
{
|
|
38
|
+
d: "M2.99999 19.85C4.27736 19.85 4.93295 19.1005 5.36381 18.6079L5.40518 18.5606C5.63305 18.301 5.78475 18.138 5.95997 18.023C6.10824 17.9256 6.29504 17.85 6.59999 17.85C6.90495 17.85 7.09174 17.9256 7.24002 18.023C7.41523 18.138 7.56694 18.301 7.79481 18.5606L7.83618 18.6079C8.26704 19.1005 8.92263 19.85 10.2 19.85C11.4804 19.85 12.1558 19.0983 12.6013 18.6026L12.6318 18.5686C13.0868 18.0631 13.31 17.85 13.8 17.85C14.29 17.85 14.5132 18.0631 14.9682 18.5686L14.9987 18.6026C15.4441 19.0983 16.1196 19.85 17.4 19.85C18.6803 19.85 19.3558 19.0983 19.8013 18.6026L19.8318 18.5686C20.2868 18.0631 20.51 17.85 21 17.85C21.4694 17.85 21.85 17.4694 21.85 17C21.85 16.5306 21.4694 16.15 21 16.15C19.7196 16.15 19.0441 16.9017 18.5987 17.3974L18.5682 17.4314C18.1132 17.9369 17.89 18.15 17.4 18.15C16.91 18.15 16.6868 17.9369 16.2318 17.4314L16.2013 17.3974C15.7558 16.9017 15.0803 16.15 13.8 16.15C12.5196 16.15 11.8441 16.9017 11.3987 17.3974L11.3682 17.4314C10.9132 17.9369 10.69 18.15 10.2 18.15C9.71893 18.15 9.51991 17.9491 9.07259 17.4394L9.06126 17.4264C8.85126 17.1871 8.56198 16.8573 8.17331 16.602C7.75066 16.3244 7.23998 16.15 6.59999 16.15C5.96 16.15 5.44933 16.3244 5.02668 16.602C4.638 16.8573 4.34873 17.1871 4.13872 17.4264L4.1274 17.4394C3.68008 17.9491 3.48105 18.15 2.99999 18.15C2.53055 18.15 2.14999 18.5306 2.14999 19C2.14999 19.4694 2.53055 19.85 2.99999 19.85Z",
|
|
39
|
+
fill: C
|
|
40
|
+
}
|
|
41
|
+
)
|
|
42
|
+
]
|
|
43
|
+
}
|
|
44
|
+
);
|
|
45
|
+
export {
|
|
46
|
+
o as OutlineSystemMistake
|
|
47
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx as C } from "react/jsx-runtime";
|
|
2
|
+
const i = ({
|
|
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: "M10.688 3.95531C6.81068 4.58278 3.84999 7.94577 3.84999 12.0003C3.84999 16.5014 7.49887 20.1503 12 20.1503C15.0838 20.1503 17.769 18.4378 19.154 15.9079C19.1423 15.8972 19.1261 15.8855 19.1053 15.8751C19.0731 15.8592 19.0369 15.8503 19 15.8503C14.1123 15.8503 10.15 11.888 10.15 7.00031C10.15 5.93122 10.3399 4.90531 10.688 3.95531ZM2.14999 12.0003C2.14999 6.56026 6.55999 2.15027 12 2.15027C12.694 2.15027 13.1057 2.89661 12.7748 3.4805C12.1863 4.51884 11.85 5.71902 11.85 7.00031C11.85 10.9491 15.0512 14.1503 19 14.1503C19.612 14.1503 20.1735 14.4404 20.5187 14.89C20.878 15.3579 21.0179 16.0347 20.6718 16.6754C19.0083 19.755 15.7495 21.8503 12 21.8503C6.55999 21.8503 2.14999 17.4403 2.14999 12.0003Z",
|
|
22
|
+
fill: l
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
i as OutlineSystemMoon
|
|
29
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
const r = ({
|
|
3
|
+
width: o,
|
|
4
|
+
height: C,
|
|
5
|
+
fill: l,
|
|
6
|
+
...n
|
|
7
|
+
}) => /* @__PURE__ */ e(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: o,
|
|
11
|
+
height: C,
|
|
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: "M11.8499 13.4C10.911 13.4 10.1499 12.6389 10.1499 11.7C10.1499 10.7611 10.911 10 11.8499 10C12.7888 10 13.5499 10.7611 13.5499 11.7C13.5499 12.6389 12.7888 13.4 11.8499 13.4ZM17.55 13.4C16.6111 13.4 15.85 12.6389 15.85 11.7C15.85 10.7611 16.6111 10 17.55 10C18.4889 10 19.25 10.7611 19.25 11.7C19.25 12.6389 18.4889 13.4 17.55 13.4ZM4.44995 11.7001C4.44995 12.639 5.21107 13.4001 6.14995 13.4001C7.08884 13.4001 7.84995 12.639 7.84995 11.7001C7.84995 10.7612 7.08884 10.0001 6.14995 10.0001C5.21107 10.0001 4.44995 10.7612 4.44995 11.7001Z",
|
|
22
|
+
fill: l
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
r as OutlineSystemMoreHorizontal
|
|
29
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
const r = ({
|
|
3
|
+
width: C,
|
|
4
|
+
height: l,
|
|
5
|
+
fill: o,
|
|
6
|
+
...t
|
|
7
|
+
}) => /* @__PURE__ */ e(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: C,
|
|
11
|
+
height: l,
|
|
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: "M11.8499 4.6001C10.911 4.6001 10.1499 5.36121 10.1499 6.3001C10.1499 7.23898 10.911 8.0001 11.8499 8.0001C12.7888 8.0001 13.5499 7.23898 13.5499 6.3001C13.5499 5.36121 12.7888 4.6001 11.8499 4.6001ZM10.15 12.0002C10.15 11.0613 10.9111 10.3002 11.85 10.3002C12.7889 10.3002 13.55 11.0613 13.55 12.0002C13.55 12.9391 12.7889 13.7002 11.85 13.7002C10.9111 13.7002 10.15 12.9391 10.15 12.0002ZM10.15 17.7001C10.15 16.7612 10.9111 16.0001 11.85 16.0001C12.7889 16.0001 13.55 16.7612 13.55 17.7001C13.55 18.639 12.7889 19.4001 11.85 19.4001C10.9111 19.4001 10.15 18.639 10.15 17.7001Z",
|
|
22
|
+
fill: o
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
r as OutlineSystemMoreVertical
|
|
29
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
const i = ({
|
|
3
|
+
width: l,
|
|
4
|
+
height: o,
|
|
5
|
+
fill: n,
|
|
6
|
+
...t
|
|
7
|
+
}) => /* @__PURE__ */ e(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: l,
|
|
11
|
+
height: o,
|
|
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: "M4.00002 8.15002C3.53058 8.15002 3.15002 8.53058 3.15002 9.00002C3.15002 9.46947 3.53058 9.85003 4.00002 9.85003H20C20.4695 9.85003 20.85 9.46947 20.85 9.00002C20.85 8.53058 20.4695 8.15002 20 8.15002H4.00002ZM4.00002 14.15C3.53058 14.15 3.15002 14.5306 3.15002 15C3.15002 15.4695 3.53058 15.85 4.00002 15.85H20C20.4695 15.85 20.85 15.4695 20.85 15C20.85 14.5306 20.4695 14.15 20 14.15H4.00002Z",
|
|
22
|
+
fill: n
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
i as OutlineSystemMove
|
|
29
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx as C } from "react/jsx-runtime";
|
|
2
|
+
const L = ({
|
|
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: "M17.3195 3.15002C16.9165 3.15002 16.5165 3.21902 16.1368 3.35404L5.53953 7.12194C4.10696 7.6313 3.15002 8.98717 3.15002 10.5076C3.15002 11.7265 3.76792 12.8623 4.79126 13.5244L8.24248 15.7576L10.4756 19.2088C11.1378 20.2321 12.2736 20.85 13.4925 20.85C15.0129 20.85 16.3687 19.8931 16.8781 18.4605L20.646 7.86328C20.781 7.48356 20.85 7.08353 20.85 6.68053C20.85 4.73068 19.2694 3.15002 17.3195 3.15002ZM16.7063 4.9558C16.9032 4.8858 17.1106 4.85002 17.3195 4.85002C18.3305 4.85002 19.15 5.66957 19.15 6.68053C19.15 6.88948 19.1143 7.09689 19.0442 7.29376L15.2763 17.891C15.008 18.6458 14.2936 19.15 13.4925 19.15C12.8502 19.15 12.2518 18.8245 11.9029 18.2853L9.9441 15.258L14.6011 10.6011C14.933 10.2691 14.933 9.73093 14.6011 9.39898C14.2691 9.06704 13.7309 9.06704 13.399 9.39898L8.74202 14.056L5.71478 12.0972C5.17559 11.7483 4.85002 11.1498 4.85002 10.5076C4.85002 9.70649 5.35423 8.99209 6.10905 8.72371L16.7063 4.9558Z",
|
|
22
|
+
fill: n
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
L as OutlineSystemNavigation
|
|
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: "M14 3.85002L5.99978 3.85003C4.81236 3.85003 3.84977 4.81263 3.84978 6.00005L3.84993 18C3.84994 19.1875 4.81252 20.15 5.99993 20.15H16.3915C16.2362 19.7983 16.15 19.4092 16.15 19V6.00002C16.15 4.81261 15.1874 3.85002 14 3.85002ZM19 21.85H5.99993C3.87365 21.85 2.14995 20.1263 2.14993 18.0001L2.14978 6.00008C2.14975 3.87376 3.87346 2.15003 5.99978 2.15003L14 2.15002C16.1263 2.15002 17.85 3.87373 17.85 6.00002V8.15002H17.9998C20.1261 8.15002 21.8498 9.87368 21.8498 12L21.8499 19C21.85 20.574 20.574 21.85 19 21.85ZM17.85 9.85002H17.9998C19.1872 9.85002 20.1498 10.8126 20.1498 12L20.1499 19C20.1499 19.6352 19.6351 20.15 19 20.15C18.3648 20.15 17.85 19.6352 17.85 19V9.85002ZM6.14997 8.00002C6.14997 7.53058 6.53052 7.15002 6.99997 7.15002H13C13.4694 7.15002 13.85 7.53058 13.85 8.00002C13.85 8.46946 13.4694 8.85002 13 8.85002H6.99997C6.53052 8.85002 6.14997 8.46946 6.14997 8.00002ZM6.14997 12C6.14997 11.5306 6.53052 11.15 6.99997 11.15H13C13.4694 11.15 13.85 11.5306 13.85 12C13.85 12.4695 13.4694 12.85 13 12.85H6.99997C6.53052 12.85 6.14997 12.4695 6.14997 12ZM6.14997 16C6.14997 15.5306 6.53052 15.15 6.99997 15.15H9.99997C10.4694 15.15 10.85 15.5306 10.85 16C10.85 16.4695 10.4694 16.85 9.99997 16.85H6.99997C6.53052 16.85 6.14997 16.4695 6.14997 16Z",
|
|
22
|
+
fill: H
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
t as OutlineSystemNews
|
|
29
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { jsxs as o, jsx as t } from "react/jsx-runtime";
|
|
2
|
+
const H = ({
|
|
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.00002 2.15002C4.32144 2.15002 2.15002 4.32144 2.15002 7.00002V17C2.15002 19.6786 4.32144 21.85 7.00002 21.85H11C13.6786 21.85 15.85 19.6786 15.85 17V16.5C15.85 16.0306 15.4695 15.65 15 15.65C14.5306 15.65 14.15 16.0306 14.15 16.5V17C14.15 18.7397 12.7397 20.15 11 20.15H7.00002C5.26033 20.15 3.85002 18.7397 3.85002 17V7.00002C3.85002 5.26033 5.26033 3.85002 7.00002 3.85002H11C12.7397 3.85002 14.15 5.26033 14.15 7.00002V7.50002C14.15 7.96947 14.5306 8.35002 15 8.35002C15.4695 8.35002 15.85 7.96947 15.85 7.50002V7.00002C15.85 4.32144 13.6786 2.15002 11 2.15002H7.00002Z",
|
|
21
|
+
fill: C
|
|
22
|
+
}
|
|
23
|
+
),
|
|
24
|
+
/* @__PURE__ */ t(
|
|
25
|
+
"path",
|
|
26
|
+
{
|
|
27
|
+
d: "M18.6011 8.39898C18.2691 8.06704 17.7309 8.06704 17.399 8.39898C17.067 8.73093 17.067 9.26912 17.399 9.60107L18.9479 11.15H9.00002C8.53058 11.15 8.15002 11.5306 8.15002 12C8.15002 12.4695 8.53058 12.85 9.00002 12.85H18.9479L17.399 14.399C17.067 14.7309 17.067 15.2691 17.399 15.6011C17.7309 15.933 18.2691 15.933 18.6011 15.6011L21.6011 12.6011C21.933 12.2691 21.933 11.7309 21.6011 11.399L18.6011 8.39898Z",
|
|
28
|
+
fill: C
|
|
29
|
+
}
|
|
30
|
+
)
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
);
|
|
34
|
+
export {
|
|
35
|
+
H as OutlineSystemOut
|
|
36
|
+
};
|
|
@@ -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.303 4.40335C14.0294 2.73225 16.8173 2.73225 18.5436 4.40335C20.2855 6.08946 20.2855 8.83501 18.5436 10.5211L12.2208 16.6415C11.1929 17.6366 9.53731 17.6366 8.50934 16.6415C7.46586 15.6314 7.46586 13.982 8.50934 12.9719L14.8321 6.8515C15.1694 6.525 15.7075 6.53375 16.0341 6.87105C16.3606 7.20835 16.3518 7.74647 16.0145 8.07298L9.69172 14.1934C9.3384 14.5354 9.3384 15.078 9.69172 15.42C10.0605 15.7771 10.6696 15.7771 11.0385 15.42L17.3612 9.29966C18.413 8.28162 18.413 6.64286 17.3612 5.62482C16.294 4.59176 14.5526 4.59176 13.4854 5.62482L7.1626 11.7452C5.4125 13.4393 5.4125 16.1741 7.1626 17.8682C8.92822 19.5773 11.802 19.5773 13.5676 17.8682L17.3612 14.196C17.6985 13.8695 18.2367 13.8782 18.5632 14.2155C18.8897 14.5528 18.8809 15.0909 18.5436 15.4174L14.7499 19.0897C12.3252 21.4368 8.40498 21.4368 5.98023 19.0897C3.53996 16.7275 3.53996 12.8859 5.98023 10.5237L12.303 4.40335Z",
|
|
22
|
+
fill: n
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
i as OutlineSystemPaperclip
|
|
29
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
const i = ({
|
|
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
|
+
i as OutlineSystemPlus
|
|
29
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx as C } from "react/jsx-runtime";
|
|
2
|
+
const H = ({
|
|
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: "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: t
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
H as OutlineSystemPlusRect
|
|
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: "M5.6499 5.00002C5.6499 3.42601 6.92589 2.15002 8.4999 2.15002H15.4999C17.0739 2.15002 18.3499 3.42601 18.3499 5.00002V8.16572C20.3122 8.34255 21.8499 9.99171 21.8499 12V15C21.8499 17.0083 20.3122 18.6574 18.35 18.8343V19C18.35 20.574 17.074 21.85 15.5 21.85H8.5C6.92599 21.85 5.65 20.574 5.65 19V18.8343C3.68768 18.6576 2.1499 17.0084 2.1499 15V12C2.1499 9.99171 3.68763 8.34255 5.6499 8.16572V5.00002ZM7.3499 8.15002H16.6499V5.00002C16.6499 4.3649 16.135 3.85002 15.4999 3.85002H8.4999C7.86477 3.85002 7.3499 4.3649 7.3499 5.00002V8.15002ZM5.65 15V17.1217C4.62901 16.9546 3.8499 16.0683 3.8499 15V12C3.8499 10.8126 4.81249 9.85003 5.9999 9.85003H17.9999C19.1873 9.85003 20.1499 10.8126 20.1499 12V15C20.1499 16.0682 19.3709 16.9545 18.35 17.1217V15C18.35 13.426 17.074 12.15 15.5 12.15H8.5C6.92599 12.15 5.65 13.426 5.65 15ZM8.5 13.85C7.86487 13.85 7.35 14.3649 7.35 15V19C7.35 19.6351 7.86487 20.15 8.5 20.15H15.5C16.1351 20.15 16.65 19.6351 16.65 19V15C16.65 14.3649 16.1351 13.85 15.5 13.85H8.5Z",
|
|
22
|
+
fill: l
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
export {
|
|
28
|
+
o as OutlineSystemPrinter
|
|
29
|
+
};
|