@forgedevstack/bear 1.3.1 → 1.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +30 -0
- package/dist/components/Accordion/components/AccordionItem/AccordionItem.cjs +1 -1
- package/dist/components/Accordion/components/AccordionItem/AccordionItem.js +1 -1
- package/dist/components/Alert/Alert.cjs +1 -1
- package/dist/components/Alert/Alert.js +1 -1
- package/dist/components/ApprovalCard/ApprovalCard.cjs +1 -0
- package/dist/components/ApprovalCard/ApprovalCard.const.cjs +1 -0
- package/dist/components/ApprovalCard/ApprovalCard.const.d.ts +2 -0
- package/dist/components/ApprovalCard/ApprovalCard.const.js +8 -0
- package/dist/components/ApprovalCard/ApprovalCard.d.ts +2 -0
- package/dist/components/ApprovalCard/ApprovalCard.js +25 -0
- package/dist/components/ApprovalCard/ApprovalCard.types.d.ts +15 -0
- package/dist/components/ApprovalCard/index.d.ts +2 -0
- package/dist/components/ArtifactCard/ArtifactCard.cjs +1 -0
- package/dist/components/ArtifactCard/ArtifactCard.const.cjs +1 -0
- package/dist/components/ArtifactCard/ArtifactCard.const.d.ts +3 -0
- package/dist/components/ArtifactCard/ArtifactCard.const.js +8 -0
- package/dist/components/ArtifactCard/ArtifactCard.d.ts +2 -0
- package/dist/components/ArtifactCard/ArtifactCard.js +43 -0
- package/dist/components/ArtifactCard/ArtifactCard.types.d.ts +15 -0
- package/dist/components/ArtifactCard/index.d.ts +2 -0
- package/dist/components/Avatar/Avatar.cjs +1 -1
- package/dist/components/Avatar/Avatar.js +1 -1
- package/dist/components/BackTop/BackTop.cjs +1 -1
- package/dist/components/BackTop/BackTop.js +1 -1
- package/dist/components/Banner/Banner.const.cjs +1 -1
- package/dist/components/Banner/Banner.const.js +10 -9
- package/dist/components/Blockquote/Blockquote.cjs +1 -1
- package/dist/components/Blockquote/Blockquote.js +1 -1
- package/dist/components/BottomSheet/BottomSheet.cjs +1 -1
- package/dist/components/BottomSheet/BottomSheet.js +1 -1
- package/dist/components/Breadcrumbs/Breadcrumbs.cjs +1 -1
- package/dist/components/Breadcrumbs/Breadcrumbs.js +1 -1
- package/dist/components/Calendar/Calendar.cjs +1 -1
- package/dist/components/Calendar/Calendar.js +1 -1
- package/dist/components/Chart/BarChart.cjs +1 -1
- package/dist/components/Chart/BarChart.d.ts +1 -2
- package/dist/components/Chart/BarChart.js +74 -61
- package/dist/components/Chart/Chart.cjs +1 -1
- package/dist/components/Chart/Chart.const.cjs +1 -1
- package/dist/components/Chart/Chart.const.d.ts +24 -3
- package/dist/components/Chart/Chart.const.js +39 -16
- package/dist/components/Chart/Chart.d.ts +1 -5
- package/dist/components/Chart/Chart.js +23 -24
- package/dist/components/Chart/Chart.types.d.ts +12 -20
- package/dist/components/Chart/Chart.utils.cjs +1 -1
- package/dist/components/Chart/Chart.utils.d.ts +8 -18
- package/dist/components/Chart/Chart.utils.js +39 -3
- package/dist/components/Chart/FunnelChart.cjs +1 -0
- package/dist/components/Chart/FunnelChart.d.ts +2 -0
- package/dist/components/Chart/FunnelChart.js +61 -0
- package/dist/components/Chart/LineChart.cjs +1 -1
- package/dist/components/Chart/LineChart.d.ts +1 -2
- package/dist/components/Chart/LineChart.js +80 -70
- package/dist/components/Chart/PieChart.cjs +1 -1
- package/dist/components/Chart/PieChart.d.ts +1 -2
- package/dist/components/Chart/PieChart.js +140 -105
- package/dist/components/Chart/PieChart.types.d.ts +8 -0
- package/dist/components/Chart/RadarChart.cjs +1 -0
- package/dist/components/Chart/RadarChart.d.ts +2 -0
- package/dist/components/Chart/RadarChart.js +123 -0
- package/dist/components/Chart/index.d.ts +3 -1
- package/dist/components/Chat/Chat.cjs +1 -1
- package/dist/components/Chat/Chat.const.cjs +1 -1
- package/dist/components/Chat/Chat.const.d.ts +9 -22
- package/dist/components/Chat/Chat.const.js +18 -26
- package/dist/components/Chat/Chat.d.ts +1 -20
- package/dist/components/Chat/Chat.js +107 -162
- package/dist/components/Chat/Chat.types.d.ts +20 -27
- package/dist/components/Chat/Chat.utils.cjs +1 -0
- package/dist/components/Chat/Chat.utils.d.ts +2 -0
- package/dist/components/Chat/Chat.utils.js +10 -0
- package/dist/components/Chat/helpers/ChatTypingIndicator.cjs +1 -0
- package/dist/components/Chat/helpers/ChatTypingIndicator.d.ts +3 -0
- package/dist/components/Chat/helpers/ChatTypingIndicator.js +14 -0
- package/dist/components/Chat/index.d.ts +2 -1
- package/dist/components/ChatBubble/ChatBubble.cjs +1 -0
- package/dist/components/ChatBubble/ChatBubble.const.cjs +1 -0
- package/dist/components/ChatBubble/ChatBubble.const.d.ts +13 -0
- package/dist/components/ChatBubble/ChatBubble.const.js +17 -0
- package/dist/components/ChatBubble/ChatBubble.d.ts +2 -0
- package/dist/components/ChatBubble/ChatBubble.js +32 -0
- package/dist/components/ChatBubble/ChatBubble.types.d.ts +12 -0
- package/dist/components/ChatBubble/ChatBubble.utils.cjs +1 -0
- package/dist/components/ChatBubble/ChatBubble.utils.d.ts +6 -0
- package/dist/components/ChatBubble/ChatBubble.utils.js +15 -0
- package/dist/components/ChatBubble/helpers/ChatBubbleSystem.cjs +1 -0
- package/dist/components/ChatBubble/helpers/ChatBubbleSystem.d.ts +2 -0
- package/dist/components/ChatBubble/helpers/ChatBubbleSystem.js +21 -0
- package/dist/components/ChatBubble/helpers/ChatBubbleThread.cjs +1 -0
- package/dist/components/ChatBubble/helpers/ChatBubbleThread.d.ts +4 -0
- package/dist/components/ChatBubble/helpers/ChatBubbleThread.js +63 -0
- package/dist/components/ChatBubble/index.d.ts +2 -0
- package/dist/components/ChatError/ChatError.cjs +1 -0
- package/dist/components/ChatError/ChatError.const.cjs +1 -0
- package/dist/components/ChatError/ChatError.const.d.ts +2 -0
- package/dist/components/ChatError/ChatError.const.js +8 -0
- package/dist/components/ChatError/ChatError.d.ts +2 -0
- package/dist/components/ChatError/ChatError.js +32 -0
- package/dist/components/ChatError/ChatError.types.d.ts +14 -0
- package/dist/components/ChatError/index.d.ts +2 -0
- package/dist/components/CitationList/CitationList.cjs +1 -0
- package/dist/components/CitationList/CitationList.d.ts +2 -0
- package/dist/components/CitationList/CitationList.js +30 -0
- package/dist/components/CitationList/CitationList.types.d.ts +15 -0
- package/dist/components/CitationList/helpers/CitationListTitle.cjs +1 -0
- package/dist/components/CitationList/helpers/CitationListTitle.d.ts +2 -0
- package/dist/components/CitationList/helpers/CitationListTitle.js +10 -0
- package/dist/components/CitationList/helpers/index.d.ts +1 -0
- package/dist/components/CitationList/index.d.ts +2 -0
- package/dist/components/ContextMeter/ContextMeter.cjs +1 -0
- package/dist/components/ContextMeter/ContextMeter.const.cjs +1 -0
- package/dist/components/ContextMeter/ContextMeter.const.d.ts +6 -0
- package/dist/components/ContextMeter/ContextMeter.const.js +11 -0
- package/dist/components/ContextMeter/ContextMeter.d.ts +2 -0
- package/dist/components/ContextMeter/ContextMeter.js +49 -0
- package/dist/components/ContextMeter/ContextMeter.types.d.ts +11 -0
- package/dist/components/ContextMeter/ContextMeter.utils.cjs +1 -0
- package/dist/components/ContextMeter/ContextMeter.utils.d.ts +2 -0
- package/dist/components/ContextMeter/ContextMeter.utils.js +12 -0
- package/dist/components/ContextMeter/index.d.ts +2 -0
- package/dist/components/CurrencyInput/CurrencyInput.cjs +1 -1
- package/dist/components/CurrencyInput/CurrencyInput.js +1 -1
- package/dist/components/DatePicker/DatePicker.cjs +1 -1
- package/dist/components/DatePicker/DatePicker.js +1 -1
- package/dist/components/DateRangePicker/DateRangePicker.cjs +1 -1
- package/dist/components/DateRangePicker/DateRangePicker.js +1 -1
- package/dist/components/Drawer/Drawer.cjs +1 -1
- package/dist/components/Drawer/Drawer.const.cjs +1 -1
- package/dist/components/Drawer/Drawer.const.d.ts +4 -12
- package/dist/components/Drawer/Drawer.const.js +7 -55
- package/dist/components/Drawer/Drawer.d.ts +1 -2
- package/dist/components/Drawer/Drawer.js +78 -112
- package/dist/components/Drawer/Drawer.types.d.ts +20 -4
- package/dist/components/Drawer/Drawer.utils.d.ts +0 -4
- package/dist/components/Drawer/components/DrawerHeader/DrawerHeader.cjs +1 -0
- package/dist/components/Drawer/components/DrawerHeader/DrawerHeader.d.ts +2 -0
- package/dist/components/Drawer/components/DrawerHeader/DrawerHeader.js +26 -0
- package/dist/components/Drawer/components/DrawerHeader/DrawerHeader.types.d.ts +20 -0
- package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderClose.cjs +1 -0
- package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderClose.d.ts +2 -0
- package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderClose.js +17 -0
- package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderTitle.cjs +1 -0
- package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderTitle.d.ts +2 -0
- package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderTitle.js +9 -0
- package/dist/components/Drawer/components/DrawerHeader/index.d.ts +2 -0
- package/dist/components/Drawer/components/index.d.ts +1 -0
- package/dist/components/Drawer/helpers/DrawerOptionalHeader.cjs +1 -0
- package/dist/components/Drawer/helpers/DrawerOptionalHeader.d.ts +2 -0
- package/dist/components/Drawer/helpers/DrawerOptionalHeader.js +9 -0
- package/dist/components/Drawer/helpers/index.d.ts +1 -0
- package/dist/components/Drawer/hooks/index.d.ts +1 -0
- package/dist/components/Drawer/hooks/useDrawer.cjs +1 -0
- package/dist/components/Drawer/hooks/useDrawer.d.ts +2 -0
- package/dist/components/Drawer/hooks/useDrawer.js +50 -0
- package/dist/components/Drawer/index.d.ts +1 -1
- package/dist/components/Editable/Editable.cjs +1 -1
- package/dist/components/Editable/Editable.js +1 -1
- package/dist/components/EmptyState/EmptyState.cjs +1 -1
- package/dist/components/EmptyState/EmptyState.const.cjs +1 -1
- package/dist/components/EmptyState/EmptyState.const.d.ts +8 -6
- package/dist/components/EmptyState/EmptyState.const.js +15 -8
- package/dist/components/EmptyState/EmptyState.d.ts +1 -2
- package/dist/components/EmptyState/EmptyState.js +39 -43
- package/dist/components/EmptyState/EmptyState.types.d.ts +2 -0
- package/dist/components/EmptyState/helpers/EmptyStateErrorSvg.cjs +1 -0
- package/dist/components/EmptyState/helpers/EmptyStateErrorSvg.d.ts +3 -0
- package/dist/components/EmptyState/helpers/EmptyStateErrorSvg.js +8 -0
- package/dist/components/EmptyState/helpers/EmptyStateInboxSvg.cjs +1 -0
- package/dist/components/EmptyState/helpers/EmptyStateInboxSvg.d.ts +3 -0
- package/dist/components/EmptyState/helpers/EmptyStateInboxSvg.js +8 -0
- package/dist/components/EmptyState/helpers/EmptyStateSearchSvg.cjs +1 -0
- package/dist/components/EmptyState/helpers/EmptyStateSearchSvg.d.ts +3 -0
- package/dist/components/EmptyState/helpers/EmptyStateSearchSvg.js +8 -0
- package/dist/components/EmptyState/helpers/index.d.ts +3 -0
- package/dist/components/EmptyState/index.d.ts +1 -1
- package/dist/components/FileTree/FileTree.cjs +1 -1
- package/dist/components/FileTree/FileTree.js +1 -1
- package/dist/components/FloatingChat/FloatingChat.cjs +1 -1
- package/dist/components/FloatingChat/FloatingChat.const.cjs +1 -1
- package/dist/components/FloatingChat/FloatingChat.const.d.ts +12 -1
- package/dist/components/FloatingChat/FloatingChat.const.js +25 -7
- package/dist/components/FloatingChat/FloatingChat.d.ts +1 -18
- package/dist/components/FloatingChat/FloatingChat.js +93 -124
- package/dist/components/FloatingChat/FloatingChat.types.d.ts +11 -22
- package/dist/components/FloatingChat/FloatingChat.utils.cjs +1 -0
- package/dist/components/FloatingChat/FloatingChat.utils.d.ts +2 -0
- package/dist/components/FloatingChat/FloatingChat.utils.js +12 -0
- package/dist/components/FloatingChat/helpers/FloatingChatHeader.cjs +1 -0
- package/dist/components/FloatingChat/helpers/FloatingChatHeader.d.ts +9 -0
- package/dist/components/FloatingChat/helpers/FloatingChatHeader.js +21 -0
- package/dist/components/FloatingChat/helpers/FloatingChatTrigger.cjs +1 -0
- package/dist/components/FloatingChat/helpers/FloatingChatTrigger.d.ts +9 -0
- package/dist/components/FloatingChat/helpers/FloatingChatTrigger.js +17 -0
- package/dist/components/FloatingChat/index.d.ts +1 -1
- package/dist/components/FormSkeleton/FormSkeleton.cjs +1 -1
- package/dist/components/FormSkeleton/FormSkeleton.d.ts +1 -1
- package/dist/components/FormSkeleton/FormSkeleton.js +35 -24
- package/dist/components/Gauge/Gauge.cjs +1 -1
- package/dist/components/Gauge/Gauge.const.cjs +1 -1
- package/dist/components/Gauge/Gauge.const.d.ts +5 -0
- package/dist/components/Gauge/Gauge.const.js +11 -6
- package/dist/components/Gauge/Gauge.d.ts +1 -2
- package/dist/components/Gauge/Gauge.js +69 -45
- package/dist/components/Gauge/Gauge.types.d.ts +11 -2
- package/dist/components/Gauge/helpers/GaugeLinearBar.cjs +1 -0
- package/dist/components/Gauge/helpers/GaugeLinearBar.d.ts +2 -0
- package/dist/components/Gauge/helpers/GaugeLinearBar.js +40 -0
- package/dist/components/Heatmap/Heatmap.cjs +1 -1
- package/dist/components/Heatmap/Heatmap.const.cjs +1 -1
- package/dist/components/Heatmap/Heatmap.const.d.ts +2 -0
- package/dist/components/Heatmap/Heatmap.const.js +8 -6
- package/dist/components/Heatmap/Heatmap.js +51 -47
- package/dist/components/Heatmap/Heatmap.types.d.ts +1 -1
- package/dist/components/Icon/Icon.d.ts +2 -39
- package/dist/components/Icon/Icon.types.d.ts +1 -17
- package/dist/components/Icon/icons/action.d.ts +1 -85
- package/dist/components/Icon/icons/bear.d.ts +1 -12
- package/dist/components/Icon/icons/charts.d.ts +1 -0
- package/dist/components/Icon/icons/commerce.d.ts +1 -25
- package/dist/components/Icon/icons/communication.d.ts +1 -48
- package/dist/components/Icon/icons/content.d.ts +1 -53
- package/dist/components/Icon/icons/device.d.ts +1 -27
- package/dist/components/Icon/icons/editor.d.ts +1 -54
- package/dist/components/Icon/icons/file.d.ts +1 -25
- package/dist/components/Icon/icons/index.d.ts +1 -9
- package/dist/components/Icon/icons/media.d.ts +1 -64
- package/dist/components/Icon/icons/misc.d.ts +1 -96
- package/dist/components/Icon/icons/navigation.d.ts +1 -56
- package/dist/components/Icon/icons/social.d.ts +1 -24
- package/dist/components/Icon/icons/status.d.ts +1 -61
- package/dist/components/Icon/index.d.ts +3 -605
- package/dist/components/Icon/productIcons.cjs +1 -0
- package/dist/components/Icon/productIcons.d.ts +7 -0
- package/dist/components/Icon/productIcons.js +25 -0
- package/dist/components/ImageAnnotation/ImageAnnotation.cjs +1 -1
- package/dist/components/ImageAnnotation/ImageAnnotation.js +1 -1
- package/dist/components/JsonViewer/JsonViewer.cjs +1 -1
- package/dist/components/JsonViewer/JsonViewer.js +1 -1
- package/dist/components/MediaPlayer/MediaPlayer.cjs +1 -1
- package/dist/components/MediaPlayer/MediaPlayer.js +1 -1
- package/dist/components/MessageActions/MessageActions.cjs +1 -0
- package/dist/components/MessageActions/MessageActions.const.cjs +1 -0
- package/dist/components/MessageActions/MessageActions.const.d.ts +2 -0
- package/dist/components/MessageActions/MessageActions.const.js +10 -0
- package/dist/components/MessageActions/MessageActions.d.ts +2 -0
- package/dist/components/MessageActions/MessageActions.js +31 -0
- package/dist/components/MessageActions/MessageActions.types.d.ts +16 -0
- package/dist/components/MessageActions/index.d.ts +2 -0
- package/dist/components/Modal/Modal.cjs +1 -1
- package/dist/components/Modal/Modal.js +1 -1
- package/dist/components/ModelSelect/ModelSelect.cjs +1 -0
- package/dist/components/ModelSelect/ModelSelect.const.cjs +1 -0
- package/dist/components/ModelSelect/ModelSelect.const.d.ts +1 -0
- package/dist/components/ModelSelect/ModelSelect.const.js +4 -0
- package/dist/components/ModelSelect/ModelSelect.d.ts +2 -0
- package/dist/components/ModelSelect/ModelSelect.js +41 -0
- package/dist/components/ModelSelect/ModelSelect.types.d.ts +16 -0
- package/dist/components/ModelSelect/index.d.ts +2 -0
- package/dist/components/OverlayPortal/OverlayPortal.const.cjs +1 -1
- package/dist/components/OverlayPortal/OverlayPortal.const.js +6 -5
- package/dist/components/PageNav/PageNav.cjs +1 -1
- package/dist/components/PageNav/PageNav.js +1 -1
- package/dist/components/PasswordInput/PasswordInput.cjs +1 -1
- package/dist/components/PasswordInput/PasswordInput.js +1 -1
- package/dist/components/PromptComposer/PromptComposer.cjs +1 -0
- package/dist/components/PromptComposer/PromptComposer.const.cjs +1 -0
- package/dist/components/PromptComposer/PromptComposer.const.d.ts +6 -0
- package/dist/components/PromptComposer/PromptComposer.const.js +14 -0
- package/dist/components/PromptComposer/PromptComposer.d.ts +2 -0
- package/dist/components/PromptComposer/PromptComposer.js +132 -0
- package/dist/components/PromptComposer/PromptComposer.types.d.ts +45 -0
- package/dist/components/PromptComposer/PromptComposer.utils.cjs +1 -0
- package/dist/components/PromptComposer/PromptComposer.utils.d.ts +5 -0
- package/dist/components/PromptComposer/PromptComposer.utils.js +16 -0
- package/dist/components/PromptComposer/helpers/PromptComposerAttachSvg.cjs +1 -0
- package/dist/components/PromptComposer/helpers/PromptComposerAttachSvg.d.ts +1 -0
- package/dist/components/PromptComposer/helpers/PromptComposerAttachSvg.js +6 -0
- package/dist/components/PromptComposer/helpers/PromptComposerFileChip.cjs +1 -0
- package/dist/components/PromptComposer/helpers/PromptComposerFileChip.d.ts +2 -0
- package/dist/components/PromptComposer/helpers/PromptComposerFileChip.js +18 -0
- package/dist/components/PromptComposer/helpers/PromptComposerSendSvg.cjs +1 -0
- package/dist/components/PromptComposer/helpers/PromptComposerSendSvg.d.ts +1 -0
- package/dist/components/PromptComposer/helpers/PromptComposerSendSvg.js +9 -0
- package/dist/components/PromptComposer/helpers/PromptComposerStopSvg.cjs +1 -0
- package/dist/components/PromptComposer/helpers/PromptComposerStopSvg.d.ts +1 -0
- package/dist/components/PromptComposer/helpers/PromptComposerStopSvg.js +6 -0
- package/dist/components/PromptComposer/helpers/index.d.ts +4 -0
- package/dist/components/PromptComposer/index.d.ts +2 -0
- package/dist/components/PromptSuggestions/PromptSuggestions.cjs +1 -0
- package/dist/components/PromptSuggestions/PromptSuggestions.d.ts +2 -0
- package/dist/components/PromptSuggestions/PromptSuggestions.js +39 -0
- package/dist/components/PromptSuggestions/PromptSuggestions.types.d.ts +13 -0
- package/dist/components/PromptSuggestions/index.d.ts +2 -0
- package/dist/components/PropsPlayground/PropsPlayground.cjs +1 -1
- package/dist/components/PropsPlayground/PropsPlayground.js +1 -1
- package/dist/components/Rating/components/StarIcon/StarIcon.cjs +1 -1
- package/dist/components/Rating/components/StarIcon/StarIcon.js +1 -1
- package/dist/components/Result/Result.utils.cjs +1 -1
- package/dist/components/Result/Result.utils.js +1 -1
- package/dist/components/RichEditor/components/ToolbarColorPicker/ToolbarColorPicker.cjs +1 -1
- package/dist/components/RichEditor/components/ToolbarColorPicker/ToolbarColorPicker.js +1 -1
- package/dist/components/RichEditor/components/ToolbarDropdown/ToolbarDropdown.cjs +1 -1
- package/dist/components/RichEditor/components/ToolbarDropdown/ToolbarDropdown.js +1 -1
- package/dist/components/RichEditor/components/ToolbarMore/ToolbarMore.cjs +1 -1
- package/dist/components/RichEditor/components/ToolbarMore/ToolbarMore.js +1 -1
- package/dist/components/RichEditor/components/ToolbarSignature/ToolbarSignature.cjs +1 -1
- package/dist/components/RichEditor/components/ToolbarSignature/ToolbarSignature.js +1 -1
- package/dist/components/RichEditor/helpers/IconRender.cjs +1 -1
- package/dist/components/RichEditor/helpers/IconRender.js +1 -1
- package/dist/components/RichEditor/helpers/toolbarItemRender.cjs +1 -1
- package/dist/components/RichEditor/helpers/toolbarItemRender.js +1 -1
- package/dist/components/RingProgress/RingProgress.cjs +1 -1
- package/dist/components/RingProgress/RingProgress.const.cjs +1 -1
- package/dist/components/RingProgress/RingProgress.const.d.ts +3 -0
- package/dist/components/RingProgress/RingProgress.const.js +7 -4
- package/dist/components/RingProgress/RingProgress.js +38 -37
- package/dist/components/RingProgress/RingProgress.types.d.ts +1 -0
- package/dist/components/Select/Select.cjs +1 -1
- package/dist/components/Select/Select.js +23 -23
- package/dist/components/Select/helpers/SelectCheckSvg.cjs +1 -0
- package/dist/components/Select/helpers/SelectCheckSvg.d.ts +3 -0
- package/dist/components/Select/helpers/SelectCheckSvg.js +8 -0
- package/dist/components/Select/helpers/SelectChevronDownSvg.cjs +1 -0
- package/dist/components/Select/helpers/SelectChevronDownSvg.d.ts +3 -0
- package/dist/components/Select/helpers/SelectChevronDownSvg.js +8 -0
- package/dist/components/Select/helpers/index.d.ts +2 -0
- package/dist/components/Sidebar/Sidebar.cjs +1 -1
- package/dist/components/Sidebar/Sidebar.js +16 -15
- package/dist/components/Sidebar/Sidebar.types.d.ts +1 -1
- package/dist/components/Sidebar/Sidebar.utils.cjs +1 -0
- package/dist/components/Sidebar/Sidebar.utils.d.ts +2 -0
- package/dist/components/Sidebar/Sidebar.utils.js +11 -0
- package/dist/components/Sidebar/components/SidebarGroup/SidebarGroup.cjs +1 -1
- package/dist/components/Sidebar/components/SidebarGroup/SidebarGroup.js +1 -1
- package/dist/components/Sidebar/components/SidebarItem/SidebarItem.cjs +1 -1
- package/dist/components/Sidebar/components/SidebarItem/SidebarItem.js +55 -51
- package/dist/components/Sidebar/index.d.ts +1 -0
- package/dist/components/Skeleton/Skeleton.cjs +1 -1
- package/dist/components/Skeleton/Skeleton.const.cjs +2 -2
- package/dist/components/Skeleton/Skeleton.const.js +5 -6
- package/dist/components/Skeleton/Skeleton.js +59 -59
- package/dist/components/SliderRange/SliderRange.cjs +1 -1
- package/dist/components/SliderRange/SliderRange.js +19 -19
- package/dist/components/Sparkline/Sparkline.cjs +1 -1
- package/dist/components/Sparkline/Sparkline.const.cjs +1 -1
- package/dist/components/Sparkline/Sparkline.const.d.ts +5 -0
- package/dist/components/Sparkline/Sparkline.const.js +9 -4
- package/dist/components/Sparkline/Sparkline.d.ts +1 -2
- package/dist/components/Sparkline/Sparkline.js +75 -53
- package/dist/components/Sparkline/Sparkline.types.d.ts +2 -0
- package/dist/components/Sparkline/Sparkline.utils.cjs +1 -1
- package/dist/components/Sparkline/Sparkline.utils.d.ts +7 -12
- package/dist/components/Sparkline/Sparkline.utils.js +33 -20
- package/dist/components/Sparkline/index.d.ts +2 -2
- package/dist/components/StatCard/StatCard.cjs +1 -1
- package/dist/components/StatCard/StatCard.const.cjs +1 -1
- package/dist/components/StatCard/StatCard.const.d.ts +0 -7
- package/dist/components/StatCard/StatCard.const.js +5 -12
- package/dist/components/StatCard/StatCard.d.ts +1 -2
- package/dist/components/StatCard/StatCard.js +48 -37
- package/dist/components/StatCard/StatCard.utils.cjs +1 -0
- package/dist/components/StatCard/StatCard.utils.d.ts +2 -0
- package/dist/components/StatCard/StatCard.utils.js +7 -0
- package/dist/components/Stepper/Stepper.cjs +1 -1
- package/dist/components/Stepper/Stepper.js +1 -1
- package/dist/components/StreamingMessage/StreamingMessage.cjs +1 -0
- package/dist/components/StreamingMessage/StreamingMessage.const.cjs +1 -0
- package/dist/components/StreamingMessage/StreamingMessage.const.d.ts +5 -0
- package/dist/components/StreamingMessage/StreamingMessage.const.js +10 -0
- package/dist/components/StreamingMessage/StreamingMessage.d.ts +2 -0
- package/dist/components/StreamingMessage/StreamingMessage.js +48 -0
- package/dist/components/StreamingMessage/StreamingMessage.types.d.ts +15 -0
- package/dist/components/StreamingMessage/index.d.ts +2 -0
- package/dist/components/Tabs/TabList.cjs +1 -1
- package/dist/components/Tabs/TabList.js +1 -1
- package/dist/components/ThemeSwitcher/ThemeSwitcher.cjs +1 -0
- package/dist/components/ThemeSwitcher/ThemeSwitcher.const.cjs +1 -0
- package/dist/components/ThemeSwitcher/ThemeSwitcher.const.d.ts +7 -0
- package/dist/components/ThemeSwitcher/ThemeSwitcher.const.js +14 -0
- package/dist/components/ThemeSwitcher/ThemeSwitcher.d.ts +2 -0
- package/dist/components/ThemeSwitcher/ThemeSwitcher.js +39 -0
- package/dist/components/ThemeSwitcher/ThemeSwitcher.types.d.ts +14 -0
- package/dist/components/ThemeSwitcher/index.d.ts +2 -0
- package/dist/components/ThinkingBlock/ThinkingBlock.cjs +1 -0
- package/dist/components/ThinkingBlock/ThinkingBlock.const.cjs +1 -0
- package/dist/components/ThinkingBlock/ThinkingBlock.const.d.ts +4 -0
- package/dist/components/ThinkingBlock/ThinkingBlock.const.js +9 -0
- package/dist/components/ThinkingBlock/ThinkingBlock.d.ts +2 -0
- package/dist/components/ThinkingBlock/ThinkingBlock.js +45 -0
- package/dist/components/ThinkingBlock/ThinkingBlock.types.d.ts +16 -0
- package/dist/components/ThinkingBlock/index.d.ts +2 -0
- package/dist/components/TimePicker/TimePicker.cjs +1 -1
- package/dist/components/TimePicker/TimePicker.js +1 -1
- package/dist/components/TimelineChart/TimelineChart.cjs +1 -1
- package/dist/components/TimelineChart/TimelineChart.const.cjs +1 -1
- package/dist/components/TimelineChart/TimelineChart.const.d.ts +3 -0
- package/dist/components/TimelineChart/TimelineChart.const.js +7 -4
- package/dist/components/TimelineChart/TimelineChart.js +56 -42
- package/dist/components/TimelineChart/TimelineChart.types.d.ts +1 -1
- package/dist/components/ToolCall/ToolCall.cjs +1 -0
- package/dist/components/ToolCall/ToolCall.const.cjs +1 -0
- package/dist/components/ToolCall/ToolCall.const.d.ts +5 -0
- package/dist/components/ToolCall/ToolCall.const.js +17 -0
- package/dist/components/ToolCall/ToolCall.d.ts +2 -0
- package/dist/components/ToolCall/ToolCall.js +43 -0
- package/dist/components/ToolCall/ToolCall.types.d.ts +20 -0
- package/dist/components/ToolCall/index.d.ts +2 -0
- package/dist/components/Transition/Transition.const.cjs +1 -1
- package/dist/components/Transition/Transition.const.js +12 -6
- package/dist/components/Transition/Transition.types.d.ts +1 -1
- package/dist/components/TreeSelect/TreeSelect.cjs +1 -1
- package/dist/components/TreeSelect/TreeSelect.js +1 -1
- package/dist/components/TreeSelect/components/TreeSelectExpandControl/TreeSelectExpandControl.cjs +1 -1
- package/dist/components/TreeSelect/components/TreeSelectExpandControl/TreeSelectExpandControl.js +1 -1
- package/dist/components/TreeView/TreeView.cjs +1 -1
- package/dist/components/TreeView/TreeView.js +3 -2
- package/dist/components/TreeView/components/TreeViewExpandControl/TreeViewExpandControl.cjs +1 -1
- package/dist/components/TreeView/components/TreeViewExpandControl/TreeViewExpandControl.js +1 -1
- package/dist/components/TreeView/components/TreeViewNodeIcon/TreeViewNodeIcon.cjs +1 -1
- package/dist/components/TreeView/components/TreeViewNodeIcon/TreeViewNodeIcon.js +1 -1
- package/dist/components/index.cjs +1 -1
- package/dist/components/index.d.ts +39 -11
- package/dist/components/index.js +455 -420
- package/dist/constants/generals.const.cjs +1 -1
- package/dist/constants/generals.const.d.ts +50 -0
- package/dist/constants/generals.const.js +154 -108
- package/dist/constants/keys.const.cjs +1 -1
- package/dist/constants/keys.const.js +2 -1
- package/dist/constants/numbers.const.cjs +1 -1
- package/dist/constants/numbers.const.d.ts +7 -0
- package/dist/constants/numbers.const.js +60 -52
- package/dist/context/BearProvider.cjs +1 -1
- package/dist/context/BearProvider.d.ts +19 -44
- package/dist/context/BearProvider.js +223 -208
- package/dist/context/bearProvider.types.d.ts +4 -0
- package/dist/context/index.d.ts +1 -1
- package/dist/hooks/useFixedAnchorPosition/index.d.ts +1 -1
- package/dist/hooks/useFixedAnchorPosition/useFixedAnchorPosition.const.cjs +1 -1
- package/dist/hooks/useFixedAnchorPosition/useFixedAnchorPosition.const.d.ts +2 -1
- package/dist/hooks/useFixedAnchorPosition/useFixedAnchorPosition.const.js +12 -11
- package/dist/hooks/useFixedAnchorPosition/useFixedAnchorPosition.types.d.ts +1 -1
- package/dist/icons.cjs +1 -1
- package/dist/icons.d.ts +2 -2
- package/dist/icons.js +1 -6
- package/dist/index.cjs +1 -1
- package/dist/index.js +597 -562
- package/dist/styles/_ai-chat.css +487 -0
- package/dist/styles/_base.css +2 -0
- package/dist/styles/_chart.css +144 -0
- package/dist/styles/_drawer.css +213 -0
- package/dist/styles/_effects.css +8 -4
- package/dist/styles/_overlays.css +0 -1
- package/dist/styles/_skeleton.css +90 -0
- package/dist/styles/main.css +4 -0
- package/dist/styles.css +1089 -186
- package/package.json +5 -1
- package/dist/components/FormSkeleton/FormSkeleton.const.cjs +0 -1
- package/dist/components/FormSkeleton/FormSkeleton.const.d.ts +0 -5
- package/dist/components/FormSkeleton/FormSkeleton.const.js +0 -8
- package/dist/components/Icon/Icon.cjs +0 -1
- package/dist/components/Icon/Icon.const.d.ts +0 -1
- package/dist/components/Icon/Icon.js +0 -45
- package/dist/components/Icon/icons/action.cjs +0 -1
- package/dist/components/Icon/icons/action.js +0 -351
- package/dist/components/Icon/icons/bear.cjs +0 -1
- package/dist/components/Icon/icons/bear.js +0 -47
- package/dist/components/Icon/icons/commerce.cjs +0 -1
- package/dist/components/Icon/icons/commerce.js +0 -124
- package/dist/components/Icon/icons/communication.cjs +0 -1
- package/dist/components/Icon/icons/communication.js +0 -184
- package/dist/components/Icon/icons/content.cjs +0 -1
- package/dist/components/Icon/icons/content.js +0 -231
- package/dist/components/Icon/icons/device.cjs +0 -1
- package/dist/components/Icon/icons/device.js +0 -122
- package/dist/components/Icon/icons/editor.cjs +0 -1
- package/dist/components/Icon/icons/editor.js +0 -285
- package/dist/components/Icon/icons/file.cjs +0 -1
- package/dist/components/Icon/icons/file.js +0 -120
- package/dist/components/Icon/icons/media.cjs +0 -1
- package/dist/components/Icon/icons/media.js +0 -306
- package/dist/components/Icon/icons/misc.cjs +0 -1
- package/dist/components/Icon/icons/misc.js +0 -450
- package/dist/components/Icon/icons/navigation.cjs +0 -1
- package/dist/components/Icon/icons/navigation.js +0 -215
- package/dist/components/Icon/icons/social.cjs +0 -1
- package/dist/components/Icon/icons/social.js +0 -89
- package/dist/components/Icon/icons/status.cjs +0 -1
- package/dist/components/Icon/icons/status.js +0 -271
- package/dist/components/Icon/index.cjs +0 -1
- package/dist/components/Icon/index.js +0 -79
|
@@ -1,231 +0,0 @@
|
|
|
1
|
-
import { jsxs as l, jsx as n } from "react/jsx-runtime";
|
|
2
|
-
import { Icon as h } from "../Icon.js";
|
|
3
|
-
const o = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
4
|
-
/* @__PURE__ */ n("path", { d: "M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z" }),
|
|
5
|
-
/* @__PURE__ */ n("polyline", { points: "13 2 13 9 20 9" })
|
|
6
|
-
] }), t = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
7
|
-
/* @__PURE__ */ n("path", { d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" }),
|
|
8
|
-
/* @__PURE__ */ n("polyline", { points: "14 2 14 8 20 8" }),
|
|
9
|
-
/* @__PURE__ */ n("line", { x1: "16", y1: "13", x2: "8", y2: "13" }),
|
|
10
|
-
/* @__PURE__ */ n("line", { x1: "16", y1: "17", x2: "8", y2: "17" }),
|
|
11
|
-
/* @__PURE__ */ n("polyline", { points: "10 9 9 9 8 9" })
|
|
12
|
-
] }), a = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
13
|
-
/* @__PURE__ */ n("path", { d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" }),
|
|
14
|
-
/* @__PURE__ */ n("polyline", { points: "14 2 14 8 20 8" }),
|
|
15
|
-
/* @__PURE__ */ n("line", { x1: "12", y1: "18", x2: "12", y2: "12" }),
|
|
16
|
-
/* @__PURE__ */ n("line", { x1: "9", y1: "15", x2: "15", y2: "15" })
|
|
17
|
-
] }), d = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
18
|
-
/* @__PURE__ */ n("path", { d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" }),
|
|
19
|
-
/* @__PURE__ */ n("polyline", { points: "14 2 14 8 20 8" }),
|
|
20
|
-
/* @__PURE__ */ n("line", { x1: "9", y1: "15", x2: "15", y2: "15" })
|
|
21
|
-
] }), y = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
22
|
-
/* @__PURE__ */ n("path", { d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" }),
|
|
23
|
-
/* @__PURE__ */ n("polyline", { points: "14 2 14 8 20 8" }),
|
|
24
|
-
/* @__PURE__ */ n("polyline", { points: "9 15 11 17 15 13" })
|
|
25
|
-
] }), r = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
26
|
-
/* @__PURE__ */ n("path", { d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" }),
|
|
27
|
-
/* @__PURE__ */ n("polyline", { points: "14 2 14 8 20 8" }),
|
|
28
|
-
/* @__PURE__ */ n("line", { x1: "9.5", y1: "12.5", x2: "14.5", y2: "17.5" }),
|
|
29
|
-
/* @__PURE__ */ n("line", { x1: "14.5", y1: "12.5", x2: "9.5", y2: "17.5" })
|
|
30
|
-
] }), p = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
31
|
-
/* @__PURE__ */ n("path", { d: "M15.5 2H8.6c-.4 0-.8.2-1.1.5-.3.3-.5.7-.5 1.1v12.8c0 .4.2.8.5 1.1.3.3.7.5 1.1.5h9.8c.4 0 .8-.2 1.1-.5.3-.3.5-.7.5-1.1V6.5L15.5 2z" }),
|
|
32
|
-
/* @__PURE__ */ n("path", { d: "M3 7.6v12.8c0 .4.2.8.5 1.1.3.3.7.5 1.1.5h9.8" }),
|
|
33
|
-
/* @__PURE__ */ n("path", { d: "M15 2v5h5" })
|
|
34
|
-
] }), x = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
35
|
-
/* @__PURE__ */ n("path", { d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" }),
|
|
36
|
-
/* @__PURE__ */ n("polyline", { points: "14 2 14 8 20 8" }),
|
|
37
|
-
/* @__PURE__ */ n("polyline", { points: "9 13 11 15 9 17" }),
|
|
38
|
-
/* @__PURE__ */ n("polyline", { points: "15 13 13 15 15 17" })
|
|
39
|
-
] }), s = (c) => /* @__PURE__ */ n(h, { ...c, children: /* @__PURE__ */ n("path", { d: "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z" }) }), M = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
40
|
-
/* @__PURE__ */ n("path", { d: "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2v1" }),
|
|
41
|
-
/* @__PURE__ */ n("path", { d: "M6 10l-2 9h18l-2-9" })
|
|
42
|
-
] }), I = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
43
|
-
/* @__PURE__ */ n("path", { d: "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z" }),
|
|
44
|
-
/* @__PURE__ */ n("line", { x1: "12", y1: "11", x2: "12", y2: "17" }),
|
|
45
|
-
/* @__PURE__ */ n("line", { x1: "9", y1: "14", x2: "15", y2: "14" })
|
|
46
|
-
] }), v = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
47
|
-
/* @__PURE__ */ n("path", { d: "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z" }),
|
|
48
|
-
/* @__PURE__ */ n("line", { x1: "9", y1: "14", x2: "15", y2: "14" })
|
|
49
|
-
] }), V = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
50
|
-
/* @__PURE__ */ n("path", { d: "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z" }),
|
|
51
|
-
/* @__PURE__ */ n("polyline", { points: "9 14 11 16 15 12" })
|
|
52
|
-
] }), H = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
53
|
-
/* @__PURE__ */ n("path", { d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" }),
|
|
54
|
-
/* @__PURE__ */ n("polyline", { points: "14 2 14 8 20 8" }),
|
|
55
|
-
/* @__PURE__ */ n("line", { x1: "16", y1: "13", x2: "8", y2: "13" }),
|
|
56
|
-
/* @__PURE__ */ n("line", { x1: "16", y1: "17", x2: "8", y2: "17" }),
|
|
57
|
-
/* @__PURE__ */ n("line", { x1: "10", y1: "9", x2: "8", y2: "9" })
|
|
58
|
-
] }), z = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
59
|
-
/* @__PURE__ */ n("path", { d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" }),
|
|
60
|
-
/* @__PURE__ */ n("polyline", { points: "14 2 14 8 20 8" }),
|
|
61
|
-
/* @__PURE__ */ n("line", { x1: "16", y1: "13", x2: "8", y2: "13" }),
|
|
62
|
-
/* @__PURE__ */ n("line", { x1: "16", y1: "17", x2: "8", y2: "17" })
|
|
63
|
-
] }), g = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
64
|
-
/* @__PURE__ */ n("path", { d: "M15.5 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2V8.5L15.5 3Z" }),
|
|
65
|
-
/* @__PURE__ */ n("path", { d: "M15 3v6h6" })
|
|
66
|
-
] }), m = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
67
|
-
/* @__PURE__ */ n("path", { d: "M15.5 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2V8.5L15.5 3Z" }),
|
|
68
|
-
/* @__PURE__ */ n("path", { d: "M15 3v6h6" }),
|
|
69
|
-
/* @__PURE__ */ n("line", { x1: "12", y1: "13", x2: "12", y2: "17" }),
|
|
70
|
-
/* @__PURE__ */ n("line", { x1: "10", y1: "15", x2: "14", y2: "15" })
|
|
71
|
-
] }), F = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
72
|
-
/* @__PURE__ */ n("path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" }),
|
|
73
|
-
/* @__PURE__ */ n("rect", { x: "8", y: "2", width: "8", height: "4", rx: "1", ry: "1" })
|
|
74
|
-
] }), C = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
75
|
-
/* @__PURE__ */ n("path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" }),
|
|
76
|
-
/* @__PURE__ */ n("rect", { x: "8", y: "2", width: "8", height: "4", rx: "1", ry: "1" }),
|
|
77
|
-
/* @__PURE__ */ n("line", { x1: "8", y1: "12", x2: "16", y2: "12" }),
|
|
78
|
-
/* @__PURE__ */ n("line", { x1: "8", y1: "16", x2: "12", y2: "16" })
|
|
79
|
-
] }), A = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
80
|
-
/* @__PURE__ */ n("path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" }),
|
|
81
|
-
/* @__PURE__ */ n("rect", { x: "8", y: "2", width: "8", height: "4", rx: "1", ry: "1" }),
|
|
82
|
-
/* @__PURE__ */ n("polyline", { points: "9 14 11 16 15 12" })
|
|
83
|
-
] }), w = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
84
|
-
/* @__PURE__ */ n("rect", { x: "3", y: "3", width: "18", height: "18", rx: "2", ry: "2" }),
|
|
85
|
-
/* @__PURE__ */ n("circle", { cx: "8.5", cy: "8.5", r: "1.5" }),
|
|
86
|
-
/* @__PURE__ */ n("polyline", { points: "21 15 16 10 5 21" })
|
|
87
|
-
] }), b = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
88
|
-
/* @__PURE__ */ n("rect", { x: "3", y: "3", width: "18", height: "18", rx: "2", ry: "2" }),
|
|
89
|
-
/* @__PURE__ */ n("circle", { cx: "8.5", cy: "8.5", r: "1.5" }),
|
|
90
|
-
/* @__PURE__ */ n("path", { d: "M16 3v6" }),
|
|
91
|
-
/* @__PURE__ */ n("path", { d: "M13 6h6" })
|
|
92
|
-
] }), L = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
93
|
-
/* @__PURE__ */ n("path", { d: "M4 8V6a2 2 0 0 1 2-2h2" }),
|
|
94
|
-
/* @__PURE__ */ n("path", { d: "M4 16v2a2 2 0 0 0 2 2h2" }),
|
|
95
|
-
/* @__PURE__ */ n("path", { d: "M16 4h2a2 2 0 0 1 2 2v2" }),
|
|
96
|
-
/* @__PURE__ */ n("circle", { cx: "11.5", cy: "11.5", r: "4.5" }),
|
|
97
|
-
/* @__PURE__ */ n("line", { x1: "21", y1: "21", x2: "14.8", y2: "14.8" })
|
|
98
|
-
] }), k = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
99
|
-
/* @__PURE__ */ n("path", { d: "M3 3v18h18" }),
|
|
100
|
-
/* @__PURE__ */ n("path", { d: "M21 21v-9l-4-4-4 4" }),
|
|
101
|
-
/* @__PURE__ */ n("path", { d: "M3 21l12-12" })
|
|
102
|
-
] }), u = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
103
|
-
/* @__PURE__ */ n("rect", { x: "3", y: "3", width: "18", height: "18", rx: "2", ry: "2" }),
|
|
104
|
-
/* @__PURE__ */ n("circle", { cx: "8.5", cy: "8.5", r: "1.5" }),
|
|
105
|
-
/* @__PURE__ */ n("polyline", { points: "21 15 16 10 5 21" })
|
|
106
|
-
] }), T = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
107
|
-
/* @__PURE__ */ n("rect", { x: "7", y: "7", width: "14", height: "14", rx: "2", ry: "2" }),
|
|
108
|
-
/* @__PURE__ */ n("path", { d: "M3 5a2 2 0 0 1 2-2h12" }),
|
|
109
|
-
/* @__PURE__ */ n("circle", { cx: "12", cy: "12", r: "2" })
|
|
110
|
-
] }), B = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
111
|
-
/* @__PURE__ */ n("path", { d: "M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z" }),
|
|
112
|
-
/* @__PURE__ */ n("circle", { cx: "12", cy: "13", r: "4" })
|
|
113
|
-
] }), P = (c) => /* @__PURE__ */ n(h, { ...c, children: /* @__PURE__ */ n("path", { d: "M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l9.19-9.19a4 4 0 0 1 5.66 5.66l-9.2 9.19a2 2 0 0 1-2.83-2.83l8.49-8.48" }) }), f = (c) => /* @__PURE__ */ n(h, { ...c, children: /* @__PURE__ */ n("path", { d: "M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l9.19-9.19a4 4 0 0 1 5.66 5.66l-9.2 9.19a2 2 0 0 1-2.83-2.83l8.49-8.48" }) }), N = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
114
|
-
/* @__PURE__ */ n("path", { d: "M4 19.5A2.5 2.5 0 0 1 6.5 17H20" }),
|
|
115
|
-
/* @__PURE__ */ n("path", { d: "M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z" })
|
|
116
|
-
] }), O = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
117
|
-
/* @__PURE__ */ n("path", { d: "M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z" }),
|
|
118
|
-
/* @__PURE__ */ n("path", { d: "M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z" })
|
|
119
|
-
] }), Z = (c) => /* @__PURE__ */ n(h, { ...c, children: /* @__PURE__ */ n("path", { d: "M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" }) }), j = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
120
|
-
/* @__PURE__ */ n("polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12" }),
|
|
121
|
-
/* @__PURE__ */ n("path", { d: "M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" })
|
|
122
|
-
] }), D = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
123
|
-
/* @__PURE__ */ n("polyline", { points: "21 8 21 21 3 21 3 8" }),
|
|
124
|
-
/* @__PURE__ */ n("rect", { x: "1", y: "3", width: "22", height: "5" }),
|
|
125
|
-
/* @__PURE__ */ n("line", { x1: "10", y1: "12", x2: "14", y2: "12" })
|
|
126
|
-
] }), S = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
127
|
-
/* @__PURE__ */ n("ellipse", { cx: "12", cy: "5", rx: "9", ry: "3" }),
|
|
128
|
-
/* @__PURE__ */ n("path", { d: "M21 12c0 1.66-4 3-9 3s-9-1.34-9-3" }),
|
|
129
|
-
/* @__PURE__ */ n("path", { d: "M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5" })
|
|
130
|
-
] }), Q = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
131
|
-
/* @__PURE__ */ n("ellipse", { cx: "12", cy: "5", rx: "9", ry: "3" }),
|
|
132
|
-
/* @__PURE__ */ n("path", { d: "M21 12c0 1.66-4 3-9 3s-9-1.34-9-3" }),
|
|
133
|
-
/* @__PURE__ */ n("path", { d: "M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5" })
|
|
134
|
-
] }), X = (c) => /* @__PURE__ */ n(h, { ...c, children: /* @__PURE__ */ n("path", { d: "M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z" }) }), q = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
135
|
-
/* @__PURE__ */ n("path", { d: "M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z" }),
|
|
136
|
-
/* @__PURE__ */ n("line", { x1: "1", y1: "1", x2: "23", y2: "23" })
|
|
137
|
-
] }), E = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
138
|
-
/* @__PURE__ */ n("path", { d: "M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z" }),
|
|
139
|
-
/* @__PURE__ */ n("line", { x1: "7", y1: "7", x2: "7.01", y2: "7" })
|
|
140
|
-
] }), G = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
141
|
-
/* @__PURE__ */ n("path", { d: "M9 5H2v7l6.29 6.29c.94.94 2.48.94 3.42 0l3.58-3.58c.94-.94.94-2.48 0-3.42L9 5Z" }),
|
|
142
|
-
/* @__PURE__ */ n("path", { d: "M6 9.01V9" }),
|
|
143
|
-
/* @__PURE__ */ n("path", { d: "m15 5 6.3 6.3a2.4 2.4 0 0 1 0 3.4L17 19" })
|
|
144
|
-
] }), J = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
145
|
-
/* @__PURE__ */ n("path", { d: "M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z" }),
|
|
146
|
-
/* @__PURE__ */ n("line", { x1: "7", y1: "7", x2: "7.01", y2: "7" })
|
|
147
|
-
] }), K = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
148
|
-
/* @__PURE__ */ n("rect", { x: "3", y: "3", width: "18", height: "18", rx: "2" }),
|
|
149
|
-
/* @__PURE__ */ n("line", { x1: "3", y1: "9", x2: "21", y2: "9" }),
|
|
150
|
-
/* @__PURE__ */ n("line", { x1: "3", y1: "15", x2: "21", y2: "15" }),
|
|
151
|
-
/* @__PURE__ */ n("line", { x1: "9", y1: "3", x2: "9", y2: "21" }),
|
|
152
|
-
/* @__PURE__ */ n("line", { x1: "15", y1: "3", x2: "15", y2: "21" })
|
|
153
|
-
] }), R = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
154
|
-
/* @__PURE__ */ n("rect", { x: "3", y: "3", width: "18", height: "18", rx: "2" }),
|
|
155
|
-
/* @__PURE__ */ n("line", { x1: "3", y1: "9", x2: "21", y2: "9" }),
|
|
156
|
-
/* @__PURE__ */ n("line", { x1: "9", y1: "3", x2: "9", y2: "21" })
|
|
157
|
-
] }), U = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
158
|
-
/* @__PURE__ */ n("polyline", { points: "16 18 22 12 16 6" }),
|
|
159
|
-
/* @__PURE__ */ n("polyline", { points: "8 6 2 12 8 18" })
|
|
160
|
-
] }), W = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
161
|
-
/* @__PURE__ */ n("rect", { x: "3", y: "3", width: "18", height: "18", rx: "2" }),
|
|
162
|
-
/* @__PURE__ */ n("polyline", { points: "9 8 5 12 9 16" }),
|
|
163
|
-
/* @__PURE__ */ n("polyline", { points: "15 8 19 12 15 16" })
|
|
164
|
-
] }), Y = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
165
|
-
/* @__PURE__ */ n("polyline", { points: "4 17 10 11 4 5" }),
|
|
166
|
-
/* @__PURE__ */ n("line", { x1: "12", y1: "19", x2: "20", y2: "19" })
|
|
167
|
-
] }), _ = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
168
|
-
/* @__PURE__ */ n("line", { x1: "4", y1: "9", x2: "20", y2: "9" }),
|
|
169
|
-
/* @__PURE__ */ n("line", { x1: "4", y1: "15", x2: "20", y2: "15" }),
|
|
170
|
-
/* @__PURE__ */ n("line", { x1: "10", y1: "3", x2: "8", y2: "21" }),
|
|
171
|
-
/* @__PURE__ */ n("line", { x1: "16", y1: "3", x2: "14", y2: "21" })
|
|
172
|
-
] }), $ = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
173
|
-
/* @__PURE__ */ n("line", { x1: "4", y1: "9", x2: "20", y2: "9" }),
|
|
174
|
-
/* @__PURE__ */ n("line", { x1: "4", y1: "15", x2: "20", y2: "15" }),
|
|
175
|
-
/* @__PURE__ */ n("line", { x1: "10", y1: "3", x2: "8", y2: "21" }),
|
|
176
|
-
/* @__PURE__ */ n("line", { x1: "16", y1: "3", x2: "14", y2: "21" })
|
|
177
|
-
] }), n2 = (c) => /* @__PURE__ */ l(h, { ...c, children: [
|
|
178
|
-
/* @__PURE__ */ n("path", { d: "M3 21c3 0 7-1 7-8V5c0-1.25-.757-2.017-2-2H4c-1.25 0-2 .75-2 1.972V11c0 1.25.75 2 2 2 1 0 1 0 1 1v1c0 1-1 2-2 2s-1 .008-1 1.031V21" }),
|
|
179
|
-
/* @__PURE__ */ n("path", { d: "M15 21c3 0 7-1 7-8V5c0-1.25-.757-2.017-2-2h-4c-1.25 0-2 .75-2 1.972V11c0 1.25.75 2 2 2h.75c0 2.25.25 4-2.75 4v3" })
|
|
180
|
-
] });
|
|
181
|
-
export {
|
|
182
|
-
D as ArchiveIcon,
|
|
183
|
-
H as ArticleIcon,
|
|
184
|
-
f as AttachFileIcon,
|
|
185
|
-
P as AttachmentIcon,
|
|
186
|
-
N as BookIcon,
|
|
187
|
-
O as BookOpenIcon,
|
|
188
|
-
Z as BookmarkIcon,
|
|
189
|
-
k as BrokenImageIcon,
|
|
190
|
-
A as ClipboardCheckIcon,
|
|
191
|
-
F as ClipboardIcon,
|
|
192
|
-
C as ClipboardTextIcon,
|
|
193
|
-
X as CloudIcon,
|
|
194
|
-
q as CloudOffIcon,
|
|
195
|
-
W as CodeBlockIcon,
|
|
196
|
-
U as CodeIcon,
|
|
197
|
-
S as DatabaseIcon,
|
|
198
|
-
z as DescriptionIcon,
|
|
199
|
-
y as FileCheckIcon,
|
|
200
|
-
x as FileCodeIcon,
|
|
201
|
-
o as FileIcon,
|
|
202
|
-
d as FileMinusIcon,
|
|
203
|
-
a as FilePlusIcon,
|
|
204
|
-
t as FileTextIcon,
|
|
205
|
-
r as FileXIcon,
|
|
206
|
-
p as FilesIcon,
|
|
207
|
-
V as FolderCheckIcon,
|
|
208
|
-
s as FolderIcon,
|
|
209
|
-
v as FolderMinusIcon,
|
|
210
|
-
M as FolderOpenIcon,
|
|
211
|
-
I as FolderPlusIcon,
|
|
212
|
-
n2 as FormatQuoteIcon,
|
|
213
|
-
_ as HashIcon,
|
|
214
|
-
b as ImageAddIcon,
|
|
215
|
-
w as ImageIcon,
|
|
216
|
-
L as ImageSearchIcon,
|
|
217
|
-
j as InboxIcon,
|
|
218
|
-
J as LabelIcon,
|
|
219
|
-
m as NoteAddIcon,
|
|
220
|
-
g as NoteIcon,
|
|
221
|
-
$ as NumbersIcon,
|
|
222
|
-
B as PhotoCameraIcon,
|
|
223
|
-
u as PhotoIcon,
|
|
224
|
-
T as PhotoLibraryIcon,
|
|
225
|
-
Q as StorageIcon,
|
|
226
|
-
R as TableChartIcon,
|
|
227
|
-
K as TableIcon,
|
|
228
|
-
E as TagIcon,
|
|
229
|
-
G as TagsIcon,
|
|
230
|
-
Y as TerminalIcon
|
|
231
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const x=require("react/jsx-runtime"),s=require("../Icon.cjs"),c=n=>x.jsxs(s.Icon,{...n,children:[x.jsx("rect",{x:"2",y:"3",width:"20",height:"14",rx:"2",ry:"2"}),x.jsx("line",{x1:"8",y1:"21",x2:"16",y2:"21"}),x.jsx("line",{x1:"12",y1:"17",x2:"12",y2:"21"})]}),o=n=>x.jsxs(s.Icon,{...n,children:[x.jsx("path",{d:"M20 16V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v12"}),x.jsx("rect",{x:"1",y:"16",width:"22",height:"4",rx:"1"})]}),e=n=>x.jsxs(s.Icon,{...n,children:[x.jsx("rect",{x:"4",y:"2",width:"16",height:"20",rx:"2",ry:"2"}),x.jsx("line",{x1:"12",y1:"18",x2:"12.01",y2:"18"})]}),t=n=>x.jsxs(s.Icon,{...n,children:[x.jsx("rect",{x:"5",y:"2",width:"14",height:"20",rx:"2",ry:"2"}),x.jsx("line",{x1:"12",y1:"18",x2:"12.01",y2:"18"})]}),h=n=>x.jsxs(s.Icon,{...n,children:[x.jsx("circle",{cx:"12",cy:"12",r:"7"}),x.jsx("polyline",{points:"12 9 12 12 13.5 13.5"}),x.jsx("path",{d:"M16.51 17.35l-.35 3.83a2 2 0 0 1-2 1.82H9.83a2 2 0 0 1-2-1.82l-.35-3.83m.01-10.7l.35-3.83A2 2 0 0 1 9.83 1h4.35a2 2 0 0 1 2 1.82l.35 3.83"})]}),i=n=>x.jsxs(s.Icon,{...n,children:[x.jsx("rect",{x:"2",y:"7",width:"20",height:"15",rx:"2",ry:"2"}),x.jsx("polyline",{points:"17 2 12 7 7 2"})]}),j=n=>x.jsxs(s.Icon,{...n,children:[x.jsx("rect",{x:"4",y:"2",width:"16",height:"20",rx:"2",ry:"2"}),x.jsx("circle",{cx:"12",cy:"14",r:"4"}),x.jsx("line",{x1:"12",y1:"6",x2:"12.01",y2:"6"})]}),r=n=>x.jsxs(s.Icon,{...n,children:[x.jsx("path",{d:"M3 18v-6a9 9 0 0 1 18 0v6"}),x.jsx("path",{d:"M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z"})]}),a=n=>x.jsxs(s.Icon,{...n,children:[x.jsx("path",{d:"M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"}),x.jsx("circle",{cx:"12",cy:"13",r:"4"})]}),l=n=>x.jsxs(s.Icon,{...n,children:[x.jsx("polyline",{points:"6 9 6 2 18 2 18 9"}),x.jsx("path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"}),x.jsx("rect",{x:"6",y:"14",width:"12",height:"8"})]}),y=n=>x.jsxs(s.Icon,{...n,children:[x.jsx("rect",{x:"2",y:"2",width:"20",height:"8",rx:"2",ry:"2"}),x.jsx("rect",{x:"2",y:"14",width:"20",height:"8",rx:"2",ry:"2"}),x.jsx("line",{x1:"6",y1:"6",x2:"6.01",y2:"6"}),x.jsx("line",{x1:"6",y1:"18",x2:"6.01",y2:"18"})]}),d=n=>x.jsxs(s.Icon,{...n,children:[x.jsx("ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}),x.jsx("path",{d:"M21 12c0 1.66-4 3-9 3s-9-1.34-9-3"}),x.jsx("path",{d:"M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5"})]}),I=n=>x.jsx(s.Icon,{...n,children:x.jsx("path",{d:"M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z"})}),p=n=>x.jsxs(s.Icon,{...n,children:[x.jsx("path",{d:"M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z"}),x.jsx("polyline",{points:"16 16 12 12 8 16"}),x.jsx("line",{x1:"12",y1:"12",x2:"12",y2:"20"})]}),M=n=>x.jsxs(s.Icon,{...n,children:[x.jsx("path",{d:"M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z"}),x.jsx("polyline",{points:"8 16 12 20 16 16"}),x.jsx("line",{x1:"12",y1:"12",x2:"12",y2:"20"})]}),v=n=>x.jsxs(s.Icon,{...n,children:[x.jsx("path",{d:"M5 12.55a11 11 0 0 1 14.08 0"}),x.jsx("path",{d:"M1.42 9a16 16 0 0 1 21.16 0"}),x.jsx("path",{d:"M8.53 16.11a6 6 0 0 1 6.95 0"}),x.jsx("line",{x1:"12",y1:"20",x2:"12.01",y2:"20"})]}),g=n=>x.jsxs(s.Icon,{...n,children:[x.jsx("line",{x1:"1",y1:"1",x2:"23",y2:"23"}),x.jsx("path",{d:"M16.72 11.06A10.94 10.94 0 0 1 19 12.55"}),x.jsx("path",{d:"M5 12.55a10.94 10.94 0 0 1 5.17-2.39"}),x.jsx("path",{d:"M10.71 5.05A16 16 0 0 1 22.56 9"}),x.jsx("path",{d:"M1.42 9a15.91 15.91 0 0 1 4.7-2.88"}),x.jsx("path",{d:"M8.53 16.11a6 6 0 0 1 6.95 0"}),x.jsx("line",{x1:"12",y1:"20",x2:"12.01",y2:"20"})]}),u=n=>x.jsx(s.Icon,{...n,children:x.jsx("polyline",{points:"6.5 6.5 17.5 17.5 12 23 12 1 17.5 6.5 6.5 17.5"})}),w=n=>x.jsxs(s.Icon,{...n,children:[x.jsx("rect",{x:"1",y:"6",width:"18",height:"12",rx:"2",ry:"2"}),x.jsx("line",{x1:"23",y1:"13",x2:"23",y2:"11"})]}),C=n=>x.jsxs(s.Icon,{...n,children:[x.jsx("path",{d:"M5 18H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.19M15 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.19"}),x.jsx("line",{x1:"23",y1:"13",x2:"23",y2:"11"}),x.jsx("polyline",{points:"11 6 7 12 13 12 9 18"})]}),H=n=>x.jsxs(s.Icon,{...n,children:[x.jsx("circle",{cx:"10",cy:"14",r:"1"}),x.jsx("circle",{cx:"14",cy:"10",r:"1"}),x.jsx("path",{d:"M12 2v16"}),x.jsx("path",{d:"M8 8l4-4 4 4"}),x.jsx("path",{d:"M8 18H6a2 2 0 0 1-2-2V8"}),x.jsx("path",{d:"M16 18h2a2 2 0 0 0 2-2v-4"})]}),f=n=>x.jsxs(s.Icon,{...n,children:[x.jsx("rect",{x:"4",y:"4",width:"16",height:"16",rx:"2",ry:"2"}),x.jsx("rect",{x:"9",y:"9",width:"6",height:"6"}),x.jsx("line",{x1:"9",y1:"1",x2:"9",y2:"4"}),x.jsx("line",{x1:"15",y1:"1",x2:"15",y2:"4"}),x.jsx("line",{x1:"9",y1:"20",x2:"9",y2:"23"}),x.jsx("line",{x1:"15",y1:"20",x2:"15",y2:"23"}),x.jsx("line",{x1:"20",y1:"9",x2:"23",y2:"9"}),x.jsx("line",{x1:"20",y1:"14",x2:"23",y2:"14"}),x.jsx("line",{x1:"1",y1:"9",x2:"4",y2:"9"}),x.jsx("line",{x1:"1",y1:"14",x2:"4",y2:"14"})]}),b=n=>x.jsxs(s.Icon,{...n,children:[x.jsx("line",{x1:"22",y1:"12",x2:"2",y2:"12"}),x.jsx("path",{d:"M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"}),x.jsx("line",{x1:"6",y1:"16",x2:"6.01",y2:"16"}),x.jsx("line",{x1:"10",y1:"16",x2:"10.01",y2:"16"})]});exports.BatteryChargingIcon=C;exports.BatteryIcon=w;exports.BluetoothIcon=u;exports.CameraIcon=a;exports.CloudDownloadIcon=M;exports.CloudIcon=I;exports.CloudUploadIcon=p;exports.CpuIcon=f;exports.DatabaseIcon=d;exports.HardDriveIcon=b;exports.HeadphonesIcon=r;exports.LaptopIcon=o;exports.MonitorIcon=c;exports.PrinterIcon=l;exports.ServerIcon=y;exports.SmartphoneIcon=t;exports.SpeakerIcon=j;exports.TabletIcon=e;exports.TvIcon=i;exports.UsbIcon=H;exports.WatchIcon=h;exports.WifiIcon=v;exports.WifiOffIcon=g;
|
|
@@ -1,122 +0,0 @@
|
|
|
1
|
-
import { jsxs as t, jsx as n } from "react/jsx-runtime";
|
|
2
|
-
import { Icon as c } from "../Icon.js";
|
|
3
|
-
const y = (h) => /* @__PURE__ */ t(c, { ...h, children: [
|
|
4
|
-
/* @__PURE__ */ n("rect", { x: "2", y: "3", width: "20", height: "14", rx: "2", ry: "2" }),
|
|
5
|
-
/* @__PURE__ */ n("line", { x1: "8", y1: "21", x2: "16", y2: "21" }),
|
|
6
|
-
/* @__PURE__ */ n("line", { x1: "12", y1: "17", x2: "12", y2: "21" })
|
|
7
|
-
] }), l = (h) => /* @__PURE__ */ t(c, { ...h, children: [
|
|
8
|
-
/* @__PURE__ */ n("path", { d: "M20 16V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v12" }),
|
|
9
|
-
/* @__PURE__ */ n("rect", { x: "1", y: "16", width: "22", height: "4", rx: "1" })
|
|
10
|
-
] }), r = (h) => /* @__PURE__ */ t(c, { ...h, children: [
|
|
11
|
-
/* @__PURE__ */ n("rect", { x: "4", y: "2", width: "16", height: "20", rx: "2", ry: "2" }),
|
|
12
|
-
/* @__PURE__ */ n("line", { x1: "12", y1: "18", x2: "12.01", y2: "18" })
|
|
13
|
-
] }), x = (h) => /* @__PURE__ */ t(c, { ...h, children: [
|
|
14
|
-
/* @__PURE__ */ n("rect", { x: "5", y: "2", width: "14", height: "20", rx: "2", ry: "2" }),
|
|
15
|
-
/* @__PURE__ */ n("line", { x1: "12", y1: "18", x2: "12.01", y2: "18" })
|
|
16
|
-
] }), a = (h) => /* @__PURE__ */ t(c, { ...h, children: [
|
|
17
|
-
/* @__PURE__ */ n("circle", { cx: "12", cy: "12", r: "7" }),
|
|
18
|
-
/* @__PURE__ */ n("polyline", { points: "12 9 12 12 13.5 13.5" }),
|
|
19
|
-
/* @__PURE__ */ n("path", { d: "M16.51 17.35l-.35 3.83a2 2 0 0 1-2 1.82H9.83a2 2 0 0 1-2-1.82l-.35-3.83m.01-10.7l.35-3.83A2 2 0 0 1 9.83 1h4.35a2 2 0 0 1 2 1.82l.35 3.83" })
|
|
20
|
-
] }), o = (h) => /* @__PURE__ */ t(c, { ...h, children: [
|
|
21
|
-
/* @__PURE__ */ n("rect", { x: "2", y: "7", width: "20", height: "15", rx: "2", ry: "2" }),
|
|
22
|
-
/* @__PURE__ */ n("polyline", { points: "17 2 12 7 7 2" })
|
|
23
|
-
] }), d = (h) => /* @__PURE__ */ t(c, { ...h, children: [
|
|
24
|
-
/* @__PURE__ */ n("rect", { x: "4", y: "2", width: "16", height: "20", rx: "2", ry: "2" }),
|
|
25
|
-
/* @__PURE__ */ n("circle", { cx: "12", cy: "14", r: "4" }),
|
|
26
|
-
/* @__PURE__ */ n("line", { x1: "12", y1: "6", x2: "12.01", y2: "6" })
|
|
27
|
-
] }), p = (h) => /* @__PURE__ */ t(c, { ...h, children: [
|
|
28
|
-
/* @__PURE__ */ n("path", { d: "M3 18v-6a9 9 0 0 1 18 0v6" }),
|
|
29
|
-
/* @__PURE__ */ n("path", { d: "M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z" })
|
|
30
|
-
] }), s = (h) => /* @__PURE__ */ t(c, { ...h, children: [
|
|
31
|
-
/* @__PURE__ */ n("path", { d: "M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z" }),
|
|
32
|
-
/* @__PURE__ */ n("circle", { cx: "12", cy: "13", r: "4" })
|
|
33
|
-
] }), M = (h) => /* @__PURE__ */ t(c, { ...h, children: [
|
|
34
|
-
/* @__PURE__ */ n("polyline", { points: "6 9 6 2 18 2 18 9" }),
|
|
35
|
-
/* @__PURE__ */ n("path", { d: "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2" }),
|
|
36
|
-
/* @__PURE__ */ n("rect", { x: "6", y: "14", width: "12", height: "8" })
|
|
37
|
-
] }), I = (h) => /* @__PURE__ */ t(c, { ...h, children: [
|
|
38
|
-
/* @__PURE__ */ n("rect", { x: "2", y: "2", width: "20", height: "8", rx: "2", ry: "2" }),
|
|
39
|
-
/* @__PURE__ */ n("rect", { x: "2", y: "14", width: "20", height: "8", rx: "2", ry: "2" }),
|
|
40
|
-
/* @__PURE__ */ n("line", { x1: "6", y1: "6", x2: "6.01", y2: "6" }),
|
|
41
|
-
/* @__PURE__ */ n("line", { x1: "6", y1: "18", x2: "6.01", y2: "18" })
|
|
42
|
-
] }), v = (h) => /* @__PURE__ */ t(c, { ...h, children: [
|
|
43
|
-
/* @__PURE__ */ n("ellipse", { cx: "12", cy: "5", rx: "9", ry: "3" }),
|
|
44
|
-
/* @__PURE__ */ n("path", { d: "M21 12c0 1.66-4 3-9 3s-9-1.34-9-3" }),
|
|
45
|
-
/* @__PURE__ */ n("path", { d: "M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5" })
|
|
46
|
-
] }), g = (h) => /* @__PURE__ */ n(c, { ...h, children: /* @__PURE__ */ n("path", { d: "M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z" }) }), w = (h) => /* @__PURE__ */ t(c, { ...h, children: [
|
|
47
|
-
/* @__PURE__ */ n("path", { d: "M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z" }),
|
|
48
|
-
/* @__PURE__ */ n("polyline", { points: "16 16 12 12 8 16" }),
|
|
49
|
-
/* @__PURE__ */ n("line", { x1: "12", y1: "12", x2: "12", y2: "20" })
|
|
50
|
-
] }), H = (h) => /* @__PURE__ */ t(c, { ...h, children: [
|
|
51
|
-
/* @__PURE__ */ n("path", { d: "M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z" }),
|
|
52
|
-
/* @__PURE__ */ n("polyline", { points: "8 16 12 20 16 16" }),
|
|
53
|
-
/* @__PURE__ */ n("line", { x1: "12", y1: "12", x2: "12", y2: "20" })
|
|
54
|
-
] }), m = (h) => /* @__PURE__ */ t(c, { ...h, children: [
|
|
55
|
-
/* @__PURE__ */ n("path", { d: "M5 12.55a11 11 0 0 1 14.08 0" }),
|
|
56
|
-
/* @__PURE__ */ n("path", { d: "M1.42 9a16 16 0 0 1 21.16 0" }),
|
|
57
|
-
/* @__PURE__ */ n("path", { d: "M8.53 16.11a6 6 0 0 1 6.95 0" }),
|
|
58
|
-
/* @__PURE__ */ n("line", { x1: "12", y1: "20", x2: "12.01", y2: "20" })
|
|
59
|
-
] }), z = (h) => /* @__PURE__ */ t(c, { ...h, children: [
|
|
60
|
-
/* @__PURE__ */ n("line", { x1: "1", y1: "1", x2: "23", y2: "23" }),
|
|
61
|
-
/* @__PURE__ */ n("path", { d: "M16.72 11.06A10.94 10.94 0 0 1 19 12.55" }),
|
|
62
|
-
/* @__PURE__ */ n("path", { d: "M5 12.55a10.94 10.94 0 0 1 5.17-2.39" }),
|
|
63
|
-
/* @__PURE__ */ n("path", { d: "M10.71 5.05A16 16 0 0 1 22.56 9" }),
|
|
64
|
-
/* @__PURE__ */ n("path", { d: "M1.42 9a15.91 15.91 0 0 1 4.7-2.88" }),
|
|
65
|
-
/* @__PURE__ */ n("path", { d: "M8.53 16.11a6 6 0 0 1 6.95 0" }),
|
|
66
|
-
/* @__PURE__ */ n("line", { x1: "12", y1: "20", x2: "12.01", y2: "20" })
|
|
67
|
-
] }), A = (h) => /* @__PURE__ */ n(c, { ...h, children: /* @__PURE__ */ n("polyline", { points: "6.5 6.5 17.5 17.5 12 23 12 1 17.5 6.5 6.5 17.5" }) }), f = (h) => /* @__PURE__ */ t(c, { ...h, children: [
|
|
68
|
-
/* @__PURE__ */ n("rect", { x: "1", y: "6", width: "18", height: "12", rx: "2", ry: "2" }),
|
|
69
|
-
/* @__PURE__ */ n("line", { x1: "23", y1: "13", x2: "23", y2: "11" })
|
|
70
|
-
] }), C = (h) => /* @__PURE__ */ t(c, { ...h, children: [
|
|
71
|
-
/* @__PURE__ */ n("path", { d: "M5 18H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.19M15 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.19" }),
|
|
72
|
-
/* @__PURE__ */ n("line", { x1: "23", y1: "13", x2: "23", y2: "11" }),
|
|
73
|
-
/* @__PURE__ */ n("polyline", { points: "11 6 7 12 13 12 9 18" })
|
|
74
|
-
] }), u = (h) => /* @__PURE__ */ t(c, { ...h, children: [
|
|
75
|
-
/* @__PURE__ */ n("circle", { cx: "10", cy: "14", r: "1" }),
|
|
76
|
-
/* @__PURE__ */ n("circle", { cx: "14", cy: "10", r: "1" }),
|
|
77
|
-
/* @__PURE__ */ n("path", { d: "M12 2v16" }),
|
|
78
|
-
/* @__PURE__ */ n("path", { d: "M8 8l4-4 4 4" }),
|
|
79
|
-
/* @__PURE__ */ n("path", { d: "M8 18H6a2 2 0 0 1-2-2V8" }),
|
|
80
|
-
/* @__PURE__ */ n("path", { d: "M16 18h2a2 2 0 0 0 2-2v-4" })
|
|
81
|
-
] }), V = (h) => /* @__PURE__ */ t(c, { ...h, children: [
|
|
82
|
-
/* @__PURE__ */ n("rect", { x: "4", y: "4", width: "16", height: "16", rx: "2", ry: "2" }),
|
|
83
|
-
/* @__PURE__ */ n("rect", { x: "9", y: "9", width: "6", height: "6" }),
|
|
84
|
-
/* @__PURE__ */ n("line", { x1: "9", y1: "1", x2: "9", y2: "4" }),
|
|
85
|
-
/* @__PURE__ */ n("line", { x1: "15", y1: "1", x2: "15", y2: "4" }),
|
|
86
|
-
/* @__PURE__ */ n("line", { x1: "9", y1: "20", x2: "9", y2: "23" }),
|
|
87
|
-
/* @__PURE__ */ n("line", { x1: "15", y1: "20", x2: "15", y2: "23" }),
|
|
88
|
-
/* @__PURE__ */ n("line", { x1: "20", y1: "9", x2: "23", y2: "9" }),
|
|
89
|
-
/* @__PURE__ */ n("line", { x1: "20", y1: "14", x2: "23", y2: "14" }),
|
|
90
|
-
/* @__PURE__ */ n("line", { x1: "1", y1: "9", x2: "4", y2: "9" }),
|
|
91
|
-
/* @__PURE__ */ n("line", { x1: "1", y1: "14", x2: "4", y2: "14" })
|
|
92
|
-
] }), b = (h) => /* @__PURE__ */ t(c, { ...h, children: [
|
|
93
|
-
/* @__PURE__ */ n("line", { x1: "22", y1: "12", x2: "2", y2: "12" }),
|
|
94
|
-
/* @__PURE__ */ n("path", { d: "M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" }),
|
|
95
|
-
/* @__PURE__ */ n("line", { x1: "6", y1: "16", x2: "6.01", y2: "16" }),
|
|
96
|
-
/* @__PURE__ */ n("line", { x1: "10", y1: "16", x2: "10.01", y2: "16" })
|
|
97
|
-
] });
|
|
98
|
-
export {
|
|
99
|
-
C as BatteryChargingIcon,
|
|
100
|
-
f as BatteryIcon,
|
|
101
|
-
A as BluetoothIcon,
|
|
102
|
-
s as CameraIcon,
|
|
103
|
-
H as CloudDownloadIcon,
|
|
104
|
-
g as CloudIcon,
|
|
105
|
-
w as CloudUploadIcon,
|
|
106
|
-
V as CpuIcon,
|
|
107
|
-
v as DatabaseIcon,
|
|
108
|
-
b as HardDriveIcon,
|
|
109
|
-
p as HeadphonesIcon,
|
|
110
|
-
l as LaptopIcon,
|
|
111
|
-
y as MonitorIcon,
|
|
112
|
-
M as PrinterIcon,
|
|
113
|
-
I as ServerIcon,
|
|
114
|
-
x as SmartphoneIcon,
|
|
115
|
-
d as SpeakerIcon,
|
|
116
|
-
r as TabletIcon,
|
|
117
|
-
o as TvIcon,
|
|
118
|
-
u as UsbIcon,
|
|
119
|
-
a as WatchIcon,
|
|
120
|
-
m as WifiIcon,
|
|
121
|
-
z as WifiOffIcon
|
|
122
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const s=require("react/jsx-runtime"),x=require("../Icon.cjs"),c=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"M6 4h8a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"}),s.jsx("path",{d:"M6 12h9a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"})]}),o=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("line",{x1:"19",y1:"4",x2:"10",y2:"4"}),s.jsx("line",{x1:"14",y1:"20",x2:"5",y2:"20"}),s.jsx("line",{x1:"15",y1:"4",x2:"9",y2:"20"})]}),t=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"M6 3v7a6 6 0 0 0 6 6 6 6 0 0 0 6-6V3"}),s.jsx("line",{x1:"4",y1:"21",x2:"20",y2:"21"})]}),e=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"M17.3 4.9c-2.3-.6-4.4-1-6.2-.9-2.7 0-5.3.7-5.3 3.6 0 1.5 1.8 3.3 3.6 3.9h.2H21"}),s.jsx("path",{d:"M8.5 15c0 2.1 1.6 3.1 5 3.1 4.3 0 5.6-1.8 5.6-3.1 0-1.5-.9-2.5-2.8-3H3"}),s.jsx("line",{x1:"3",y1:"12",x2:"21",y2:"12"})]}),j=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("line",{x1:"17",y1:"10",x2:"3",y2:"10"}),s.jsx("line",{x1:"21",y1:"6",x2:"3",y2:"6"}),s.jsx("line",{x1:"21",y1:"14",x2:"3",y2:"14"}),s.jsx("line",{x1:"17",y1:"18",x2:"3",y2:"18"})]}),h=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("line",{x1:"18",y1:"10",x2:"6",y2:"10"}),s.jsx("line",{x1:"21",y1:"6",x2:"3",y2:"6"}),s.jsx("line",{x1:"21",y1:"14",x2:"3",y2:"14"}),s.jsx("line",{x1:"18",y1:"18",x2:"6",y2:"18"})]}),i=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("line",{x1:"21",y1:"10",x2:"7",y2:"10"}),s.jsx("line",{x1:"21",y1:"6",x2:"3",y2:"6"}),s.jsx("line",{x1:"21",y1:"14",x2:"3",y2:"14"}),s.jsx("line",{x1:"21",y1:"18",x2:"7",y2:"18"})]}),l=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("line",{x1:"21",y1:"10",x2:"3",y2:"10"}),s.jsx("line",{x1:"21",y1:"6",x2:"3",y2:"6"}),s.jsx("line",{x1:"21",y1:"14",x2:"3",y2:"14"}),s.jsx("line",{x1:"21",y1:"18",x2:"3",y2:"18"})]}),d=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("line",{x1:"8",y1:"6",x2:"21",y2:"6"}),s.jsx("line",{x1:"8",y1:"12",x2:"21",y2:"12"}),s.jsx("line",{x1:"8",y1:"18",x2:"21",y2:"18"}),s.jsx("line",{x1:"3",y1:"6",x2:"3.01",y2:"6"}),s.jsx("line",{x1:"3",y1:"12",x2:"3.01",y2:"12"}),s.jsx("line",{x1:"3",y1:"18",x2:"3.01",y2:"18"})]}),a=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("line",{x1:"8",y1:"6",x2:"21",y2:"6"}),s.jsx("line",{x1:"8",y1:"12",x2:"21",y2:"12"}),s.jsx("line",{x1:"8",y1:"18",x2:"21",y2:"18"}),s.jsx("circle",{cx:"3",cy:"6",r:"1"}),s.jsx("circle",{cx:"3",cy:"12",r:"1"}),s.jsx("circle",{cx:"3",cy:"18",r:"1"})]}),I=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("line",{x1:"10",y1:"6",x2:"21",y2:"6"}),s.jsx("line",{x1:"10",y1:"12",x2:"21",y2:"12"}),s.jsx("line",{x1:"10",y1:"18",x2:"21",y2:"18"}),s.jsx("path",{d:"M4 6h1v4"}),s.jsx("path",{d:"M4 10h2"}),s.jsx("path",{d:"M6 18H4c0-1 2-2 2-3s-1-1.5-2-1"})]}),r=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"m3 5 2 2 4-4"}),s.jsx("path",{d:"m3 12 2 2 4-4"}),s.jsx("path",{d:"m3 19 2 2 4-4"}),s.jsx("line",{x1:"11",y1:"6",x2:"21",y2:"6"}),s.jsx("line",{x1:"11",y1:"13",x2:"21",y2:"13"}),s.jsx("line",{x1:"11",y1:"20",x2:"21",y2:"20"})]}),y=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("polyline",{points:"3 8 7 12 3 16"}),s.jsx("line",{x1:"21",y1:"12",x2:"11",y2:"12"}),s.jsx("line",{x1:"21",y1:"6",x2:"11",y2:"6"}),s.jsx("line",{x1:"21",y1:"18",x2:"11",y2:"18"})]}),p=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("polyline",{points:"7 8 3 12 7 16"}),s.jsx("line",{x1:"21",y1:"12",x2:"11",y2:"12"}),s.jsx("line",{x1:"21",y1:"6",x2:"11",y2:"6"}),s.jsx("line",{x1:"21",y1:"18",x2:"11",y2:"18"})]}),M=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"M5 4v16"}),s.jsx("path",{d:"M5 12h14"}),s.jsx("path",{d:"M19 4v16"})]}),g=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"M6 4v16"}),s.jsx("path",{d:"M18 4v16"}),s.jsx("path",{d:"M6 12h12"})]}),v=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"M4 12h8"}),s.jsx("path",{d:"M4 18V6"}),s.jsx("path",{d:"M12 18V6"}),s.jsx("path",{d:"M17 10v8"}),s.jsx("path",{d:"M17 10l-3 0"})]}),m=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"M4 12h8"}),s.jsx("path",{d:"M4 18V6"}),s.jsx("path",{d:"M12 18V6"}),s.jsx("path",{d:"M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1"})]}),u=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"M4 12h8"}),s.jsx("path",{d:"M4 18V6"}),s.jsx("path",{d:"M12 18V6"}),s.jsx("path",{d:"M17.5 10.5c1.7-1 3.5 0 3.5 1.5a2 2 0 0 1-2 2"}),s.jsx("path",{d:"M17 17.5c2 1.5 4 .3 4-1.5a2 2 0 0 0-2-2"})]}),C=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"M13 4v16"}),s.jsx("path",{d:"M17 4v16"}),s.jsx("path",{d:"M19 4H9.5a4.5 4.5 0 0 0 0 9H13"})]}),H=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"M4 7V4h16v3"}),s.jsx("path",{d:"M9 20h6"}),s.jsx("path",{d:"M12 4v16"})]}),L=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"M3 21c3 0 7-1 7-8V5c0-1.25-.756-2.017-2-2H4c-1.25 0-2 .75-2 1.972V11c0 1.25.75 2 2 2 1 0 1 0 1 1v1c0 1-1 2-2 2s-1 .008-1 1.031V21"}),s.jsx("path",{d:"M15 21c3 0 7-1 7-8V5c0-1.25-.757-2.017-2-2h-4c-1.25 0-2 .75-2 1.972V11c0 1.25.75 2 2 2h.75c0 2.25.25 4-2.75 4v3"})]}),T=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"}),s.jsx("path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"})]}),F=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"}),s.jsx("path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"}),s.jsx("line",{x1:"1",y1:"1",x2:"23",y2:"23"})]}),S=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"M4 19h6"}),s.jsx("path",{d:"M7 4v15"}),s.jsx("path",{d:"M11 4h4l4 15"}),s.jsx("path",{d:"M15 19h4"}),s.jsx("path",{d:"M21 8v6"}),s.jsx("path",{d:"M18 11h6"})]}),V=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"M4 19h6"}),s.jsx("path",{d:"M7 4v15"}),s.jsx("path",{d:"M11 4h4l4 15"}),s.jsx("path",{d:"M15 19h4"}),s.jsx("path",{d:"M18 11h6"})]}),R=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"M9 2 4 14h2l1-3h6l1 3h2L11 2z"}),s.jsx("path",{d:"M10 9 8 5h.01L10 9z"}),s.jsx("rect",{x:"2",y:"17",width:"20",height:"4",fill:"currentColor"})]}),b=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"M11.67 3.87 9.9 2.1a1 1 0 0 0-1.4 0L2.1 8.5a1 1 0 0 0 0 1.4l7.4 7.4a1 1 0 0 0 1.4 0l6.4-6.4a1 1 0 0 0 0-1.4z"}),s.jsx("path",{d:"M16 14c0 2 2 4 2 4s2-2 2-4-2-4-2-4-2 2-2 4z"}),s.jsx("rect",{x:"2",y:"19",width:"20",height:"3",fill:"currentColor"})]}),k=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"m9 11-6 6v3h9l3-3"}),s.jsx("path",{d:"m22 12-4.6 4.6a2 2 0 0 1-2.8 0l-5.2-5.2a2 2 0 0 1 0-2.8L14 4"})]}),w=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"m4 19 8-8"}),s.jsx("path",{d:"m12 19-8-8"}),s.jsx("path",{d:"M20 12h-4c0-1.5.442-2 1.5-2.5S20 8.334 20 7.002c0-.472-.17-.93-.484-1.29a2.105 2.105 0 0 0-2.617-.436c-.42.239-.738.614-.899 1.06"})]}),A=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"m4 5 8 8"}),s.jsx("path",{d:"m12 5-8 8"}),s.jsx("path",{d:"M20 19h-4c0-1.5.442-2 1.5-2.5S20 15.334 20 14.002c0-.472-.17-.93-.484-1.29a2.105 2.105 0 0 0-2.617-.436c-.42.239-.738.614-.899 1.06"})]}),f=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"M5 7h14"}),s.jsx("path",{d:"M9 7v6"}),s.jsx("path",{d:"m14.8 12 2.2 5"}),s.jsx("line",{x1:"4",y1:"4",x2:"20",y2:"20"})]}),z=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"m9 12 2 2 4-4"}),s.jsx("circle",{cx:"12",cy:"12",r:"10"})]}),B=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}),s.jsx("path",{d:"M3 9h18"}),s.jsx("path",{d:"M3 15h18"}),s.jsx("path",{d:"M9 3v18"}),s.jsx("path",{d:"M15 3v18"})]}),D=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("rect",{x:"3",y:"8",width:"18",height:"13",rx:"2"}),s.jsx("path",{d:"M3 14h18"}),s.jsx("path",{d:"M9 8v13"}),s.jsx("path",{d:"M15 8v13"}),s.jsx("path",{d:"M9 2h6"}),s.jsx("path",{d:"M12 2v4"})]}),E=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("rect",{x:"3",y:"3",width:"13",height:"18",rx:"2"}),s.jsx("path",{d:"M9 3v18"}),s.jsx("path",{d:"M3 9h13"}),s.jsx("path",{d:"M3 15h13"}),s.jsx("path",{d:"M19 9v6"}),s.jsx("path",{d:"M19 12h4"})]}),P=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("polyline",{points:"16 18 22 12 16 6"}),s.jsx("polyline",{points:"8 6 2 12 8 18"})]}),q=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}),s.jsx("polyline",{points:"9 8 5 12 9 16"}),s.jsx("polyline",{points:"15 8 19 12 15 16"})]}),J=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("circle",{cx:"12",cy:"12",r:"10"}),s.jsx("path",{d:"M8 14s1.5 2 4 2 4-2 4-2"}),s.jsx("line",{x1:"9",y1:"9",x2:"9.01",y2:"9"}),s.jsx("line",{x1:"15",y1:"9",x2:"15.01",y2:"9"})]}),N=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("circle",{cx:"12",cy:"12",r:"10"}),s.jsx("path",{d:"M8 14s1.5 2 4 2 4-2 4-2"}),s.jsx("line",{x1:"9",y1:"9",x2:"9.01",y2:"9"}),s.jsx("line",{x1:"15",y1:"9",x2:"15.01",y2:"9"})]}),Q=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("circle",{cx:"12",cy:"12",r:"10"}),s.jsx("path",{d:"M16 16s-1.5-2-4-2-4 2-4 2"}),s.jsx("line",{x1:"9",y1:"9",x2:"9.01",y2:"9"}),s.jsx("line",{x1:"15",y1:"9",x2:"15.01",y2:"9"})]}),U=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("circle",{cx:"12",cy:"12",r:"4"}),s.jsx("path",{d:"M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94"})]}),O=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("line",{x1:"4",y1:"9",x2:"20",y2:"9"}),s.jsx("line",{x1:"4",y1:"15",x2:"20",y2:"15"}),s.jsx("line",{x1:"10",y1:"3",x2:"8",y2:"21"}),s.jsx("line",{x1:"16",y1:"3",x2:"14",y2:"21"})]}),G=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),s.jsx("circle",{cx:"8.5",cy:"8.5",r:"1.5"}),s.jsx("polyline",{points:"21 15 16 10 5 21"})]}),K=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"}),s.jsx("polyline",{points:"14 2 14 8 20 8"})]}),W=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}),s.jsx("line",{x1:"8",y1:"15",x2:"8",y2:"9"}),s.jsx("line",{x1:"12",y1:"15",x2:"12",y2:"6"}),s.jsx("line",{x1:"16",y1:"15",x2:"16",y2:"12"})]}),X=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"M6.13 1L6 16a2 2 0 0 0 2 2h15"}),s.jsx("path",{d:"M1 6.13L16 6a2 2 0 0 1 2 2v15"})]}),Y=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"M2.5 2v6h6"}),s.jsx("path",{d:"M2.66 15.57a10 10 0 1 0 .57-8.38"})]}),Z=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("path",{d:"M21.5 2v6h-6"}),s.jsx("path",{d:"M21.34 15.57a10 10 0 1 1-.57-8.38"})]}),_=n=>s.jsxs(x.Icon,{...n,children:[s.jsx("line",{x1:"12",y1:"3",x2:"12",y2:"21"}),s.jsx("polyline",{points:"18 9 21 12 18 15"}),s.jsx("polyline",{points:"6 9 3 12 6 15"})]});exports.AlignCenterIcon=h;exports.AlignJustifyIcon=l;exports.AlignLeftIcon=j;exports.AlignRightIcon=i;exports.AtIcon=U;exports.BoldIcon=c;exports.ChecklistIcon=r;exports.CodeBlockIcon=q;exports.CodeIcon=P;exports.CropIcon=X;exports.EmojiHappyIcon=N;exports.EmojiIcon=J;exports.EmojiSadIcon=Q;exports.FlipIcon=_;exports.FormatClearIcon=f;exports.FormatColorFillIcon=b;exports.FormatColorTextIcon=R;exports.HashtagIcon=O;exports.Heading1Icon=v;exports.Heading2Icon=m;exports.Heading3Icon=u;exports.HighlightIcon=k;exports.IndentDecreaseIcon=p;exports.IndentIncreaseIcon=y;exports.InsertChartIcon=W;exports.InsertDriveFileIcon=K;exports.InsertLinkIcon=T;exports.InsertPhotoIcon=G;exports.ItalicIcon=o;exports.ListBulletIcon=a;exports.ListIcon=d;exports.ListNumberedIcon=I;exports.ParagraphIcon=C;exports.QuoteIcon=L;exports.RemoveLinkIcon=F;exports.RotateLeftIcon=Y;exports.RotateRightIcon=Z;exports.SpellcheckIcon=z;exports.StrikethroughIcon=e;exports.SubscriptIcon=A;exports.SuperscriptIcon=w;exports.TableIcon=B;exports.TableInsertColumnIcon=E;exports.TableInsertRowIcon=D;exports.TextDecreaseIcon=V;exports.TextFieldsIcon=g;exports.TextIcon=H;exports.TextIncreaseIcon=S;exports.TitleIcon=M;exports.UnderlineIcon=t;
|