@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,124 +0,0 @@
|
|
|
1
|
-
import { jsxs as c, jsx as n } from "react/jsx-runtime";
|
|
2
|
-
import { Icon as t } from "../Icon.js";
|
|
3
|
-
const l = (h) => /* @__PURE__ */ c(t, { ...h, children: [
|
|
4
|
-
/* @__PURE__ */ n("circle", { cx: "9", cy: "21", r: "1" }),
|
|
5
|
-
/* @__PURE__ */ n("circle", { cx: "20", cy: "21", r: "1" }),
|
|
6
|
-
/* @__PURE__ */ n("path", { d: "M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6" })
|
|
7
|
-
] }), d = (h) => /* @__PURE__ */ c(t, { ...h, children: [
|
|
8
|
-
/* @__PURE__ */ n("path", { d: "M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z" }),
|
|
9
|
-
/* @__PURE__ */ n("line", { x1: "3", y1: "6", x2: "21", y2: "6" }),
|
|
10
|
-
/* @__PURE__ */ n("path", { d: "M16 10a4 4 0 0 1-8 0" })
|
|
11
|
-
] }), e = (h) => /* @__PURE__ */ c(t, { ...h, children: [
|
|
12
|
-
/* @__PURE__ */ n("rect", { x: "1", y: "4", width: "22", height: "16", rx: "2", ry: "2" }),
|
|
13
|
-
/* @__PURE__ */ n("line", { x1: "1", y1: "10", x2: "23", y2: "10" })
|
|
14
|
-
] }), o = (h) => /* @__PURE__ */ c(t, { ...h, children: [
|
|
15
|
-
/* @__PURE__ */ n("line", { x1: "12", y1: "1", x2: "12", y2: "23" }),
|
|
16
|
-
/* @__PURE__ */ n("path", { d: "M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6" })
|
|
17
|
-
] }), p = (h) => /* @__PURE__ */ c(t, { ...h, children: [
|
|
18
|
-
/* @__PURE__ */ n("path", { d: "M4 10h12" }),
|
|
19
|
-
/* @__PURE__ */ n("path", { d: "M4 14h12" }),
|
|
20
|
-
/* @__PURE__ */ n("path", { d: "M19 6a7.7 7.7 0 0 0-5.2-2A7.9 7.9 0 0 0 6 12a7.9 7.9 0 0 0 7.8 8 7.7 7.7 0 0 0 5.2-2" })
|
|
21
|
-
] }), r = (h) => /* @__PURE__ */ c(t, { ...h, children: [
|
|
22
|
-
/* @__PURE__ */ n("path", { d: "M4 18h12" }),
|
|
23
|
-
/* @__PURE__ */ n("path", { d: "M4 14h8" }),
|
|
24
|
-
/* @__PURE__ */ n("path", { d: "M17 4a4 4 0 0 0-7.4 2.1L8 18" })
|
|
25
|
-
] }), y = (h) => /* @__PURE__ */ c(t, { ...h, children: [
|
|
26
|
-
/* @__PURE__ */ n("rect", { x: "2", y: "6", width: "20", height: "14", rx: "2" }),
|
|
27
|
-
/* @__PURE__ */ n("path", { d: "M2 10h20" }),
|
|
28
|
-
/* @__PURE__ */ n("path", { d: "M16 14h2" })
|
|
29
|
-
] }), x = (h) => /* @__PURE__ */ c(t, { ...h, children: [
|
|
30
|
-
/* @__PURE__ */ n("path", { d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1-2-1z" }),
|
|
31
|
-
/* @__PURE__ */ n("line", { x1: "8", y1: "8", x2: "16", y2: "8" }),
|
|
32
|
-
/* @__PURE__ */ n("line", { x1: "8", y1: "12", x2: "16", y2: "12" }),
|
|
33
|
-
/* @__PURE__ */ n("line", { x1: "8", y1: "16", x2: "12", y2: "16" })
|
|
34
|
-
] }), M = (h) => /* @__PURE__ */ c(t, { ...h, children: [
|
|
35
|
-
/* @__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" }),
|
|
36
|
-
/* @__PURE__ */ n("line", { x1: "7", y1: "7", x2: "7.01", y2: "7" })
|
|
37
|
-
] }), s = (h) => /* @__PURE__ */ c(t, { ...h, children: [
|
|
38
|
-
/* @__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" }),
|
|
39
|
-
/* @__PURE__ */ n("line", { x1: "7", y1: "7", x2: "7.01", y2: "7" }),
|
|
40
|
-
/* @__PURE__ */ n("path", { d: "M22 7l-8.97 8.97" })
|
|
41
|
-
] }), I = (h) => /* @__PURE__ */ c(t, { ...h, children: [
|
|
42
|
-
/* @__PURE__ */ n("line", { x1: "19", y1: "5", x2: "5", y2: "19" }),
|
|
43
|
-
/* @__PURE__ */ n("circle", { cx: "6.5", cy: "6.5", r: "2.5" }),
|
|
44
|
-
/* @__PURE__ */ n("circle", { cx: "17.5", cy: "17.5", r: "2.5" })
|
|
45
|
-
] }), v = (h) => /* @__PURE__ */ c(t, { ...h, children: [
|
|
46
|
-
/* @__PURE__ */ n("polyline", { points: "23 6 13.5 15.5 8.5 10.5 1 18" }),
|
|
47
|
-
/* @__PURE__ */ n("polyline", { points: "17 6 23 6 23 12" })
|
|
48
|
-
] }), g = (h) => /* @__PURE__ */ c(t, { ...h, children: [
|
|
49
|
-
/* @__PURE__ */ n("polyline", { points: "23 18 13.5 8.5 8.5 13.5 1 6" }),
|
|
50
|
-
/* @__PURE__ */ n("polyline", { points: "17 18 23 18 23 12" })
|
|
51
|
-
] }), z = (h) => /* @__PURE__ */ c(t, { ...h, children: [
|
|
52
|
-
/* @__PURE__ */ n("path", { d: "M3 5v14" }),
|
|
53
|
-
/* @__PURE__ */ n("path", { d: "M8 5v14" }),
|
|
54
|
-
/* @__PURE__ */ n("path", { d: "M12 5v14" }),
|
|
55
|
-
/* @__PURE__ */ n("path", { d: "M17 5v14" }),
|
|
56
|
-
/* @__PURE__ */ n("path", { d: "M21 5v14" }),
|
|
57
|
-
/* @__PURE__ */ n("path", { d: "M6 5v14" }),
|
|
58
|
-
/* @__PURE__ */ n("path", { d: "M14 5v14" }),
|
|
59
|
-
/* @__PURE__ */ n("path", { d: "M10 5v14" }),
|
|
60
|
-
/* @__PURE__ */ n("path", { d: "M19 5v14" })
|
|
61
|
-
] }), V = (h) => /* @__PURE__ */ c(t, { ...h, children: [
|
|
62
|
-
/* @__PURE__ */ n("polyline", { points: "20 12 20 22 4 22 4 12" }),
|
|
63
|
-
/* @__PURE__ */ n("rect", { x: "2", y: "7", width: "20", height: "5" }),
|
|
64
|
-
/* @__PURE__ */ n("line", { x1: "12", y1: "22", x2: "12", y2: "7" }),
|
|
65
|
-
/* @__PURE__ */ n("path", { d: "M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z" }),
|
|
66
|
-
/* @__PURE__ */ n("path", { d: "M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z" })
|
|
67
|
-
] }), w = (h) => /* @__PURE__ */ c(t, { ...h, children: [
|
|
68
|
-
/* @__PURE__ */ n("path", { d: "M3 9l1-4h16l1 4" }),
|
|
69
|
-
/* @__PURE__ */ n("path", { d: "M3 9v10a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V9" }),
|
|
70
|
-
/* @__PURE__ */ n("path", { d: "M9 21V12h6v9" }),
|
|
71
|
-
/* @__PURE__ */ n("path", { d: "M3 9a3 3 0 0 0 3 3 3 3 0 0 0 3-3" }),
|
|
72
|
-
/* @__PURE__ */ n("path", { d: "M9 9a3 3 0 0 0 3 3 3 3 0 0 0 3-3" }),
|
|
73
|
-
/* @__PURE__ */ n("path", { d: "M15 9a3 3 0 0 0 3 3 3 3 0 0 0 3-3" })
|
|
74
|
-
] }), C = (h) => /* @__PURE__ */ c(t, { ...h, children: [
|
|
75
|
-
/* @__PURE__ */ n("rect", { x: "1", y: "3", width: "15", height: "13" }),
|
|
76
|
-
/* @__PURE__ */ n("polygon", { points: "16 8 20 8 23 11 23 16 16 16 16 8" }),
|
|
77
|
-
/* @__PURE__ */ n("circle", { cx: "5.5", cy: "18.5", r: "2.5" }),
|
|
78
|
-
/* @__PURE__ */ n("circle", { cx: "18.5", cy: "18.5", r: "2.5" })
|
|
79
|
-
] }), H = (h) => /* @__PURE__ */ c(t, { ...h, children: [
|
|
80
|
-
/* @__PURE__ */ n("line", { x1: "16.5", y1: "9.4", x2: "7.5", y2: "4.21" }),
|
|
81
|
-
/* @__PURE__ */ n("path", { d: "M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z" }),
|
|
82
|
-
/* @__PURE__ */ n("polyline", { points: "3.27 6.96 12 12.01 20.73 6.96" }),
|
|
83
|
-
/* @__PURE__ */ n("line", { x1: "12", y1: "22.08", x2: "12", y2: "12" })
|
|
84
|
-
] }), L = (h) => /* @__PURE__ */ c(t, { ...h, children: [
|
|
85
|
-
/* @__PURE__ */ n("path", { d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" }),
|
|
86
|
-
/* @__PURE__ */ n("polyline", { points: "14 2 14 8 20 8" }),
|
|
87
|
-
/* @__PURE__ */ n("line", { x1: "8", y1: "13", x2: "16", y2: "13" }),
|
|
88
|
-
/* @__PURE__ */ n("line", { x1: "8", y1: "17", x2: "12", y2: "17" }),
|
|
89
|
-
/* @__PURE__ */ n("line", { x1: "14", y1: "17", x2: "16", y2: "17" })
|
|
90
|
-
] }), T = (h) => /* @__PURE__ */ c(t, { ...h, children: [
|
|
91
|
-
/* @__PURE__ */ n("rect", { x: "2", y: "7", width: "20", height: "14", rx: "2", ry: "2" }),
|
|
92
|
-
/* @__PURE__ */ n("path", { d: "M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16" })
|
|
93
|
-
] }), f = (h) => /* @__PURE__ */ c(t, { ...h, children: [
|
|
94
|
-
/* @__PURE__ */ n("path", { d: "M3 22h18" }),
|
|
95
|
-
/* @__PURE__ */ n("path", { d: "M6 18v-4" }),
|
|
96
|
-
/* @__PURE__ */ n("path", { d: "M10 18v-4" }),
|
|
97
|
-
/* @__PURE__ */ n("path", { d: "M14 18v-4" }),
|
|
98
|
-
/* @__PURE__ */ n("path", { d: "M18 18v-4" }),
|
|
99
|
-
/* @__PURE__ */ n("path", { d: "M3 10l9-7 9 7" }),
|
|
100
|
-
/* @__PURE__ */ n("path", { d: "M3 10h18v4H3z" })
|
|
101
|
-
] });
|
|
102
|
-
export {
|
|
103
|
-
f as BankIcon,
|
|
104
|
-
z as BarCodeIcon,
|
|
105
|
-
T as BriefcaseIcon,
|
|
106
|
-
e as CreditCardIcon,
|
|
107
|
-
o as DollarSignIcon,
|
|
108
|
-
p as EuroIcon,
|
|
109
|
-
V as GiftIcon,
|
|
110
|
-
L as InvoiceIcon,
|
|
111
|
-
H as PackageIcon,
|
|
112
|
-
I as PercentIcon,
|
|
113
|
-
r as PoundIcon,
|
|
114
|
-
x as ReceiptIcon,
|
|
115
|
-
d as ShoppingBagIcon,
|
|
116
|
-
l as ShoppingCartIcon,
|
|
117
|
-
w as StoreIcon,
|
|
118
|
-
M as TagIcon,
|
|
119
|
-
s as TagsIcon,
|
|
120
|
-
g as TrendDownIcon,
|
|
121
|
-
v as TrendUpIcon,
|
|
122
|
-
C as TruckIcon,
|
|
123
|
-
y as WalletIcon
|
|
124
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const n=require("react/jsx-runtime"),s=require("../Icon.cjs"),o=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"}),n.jsx("polyline",{points:"22,6 12,13 2,6"})]}),a=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M21.2 8.4c.5.38.8.97.8 1.6v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V10a2 2 0 0 1 .8-1.6l8-6a2 2 0 0 1 2.4 0l8 6Z"}),n.jsx("path",{d:"m22 10-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 10"})]}),x=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("rect",{x:"2",y:"4",width:"20",height:"16",rx:"2"}),n.jsx("path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"})]}),t=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"}),n.jsx("polyline",{points:"22,6 12,13 2,6"}),n.jsx("polyline",{points:"9 16 11 18 15 14"})]}),e=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"}),n.jsx("polyline",{points:"22,6 12,13 2,6"}),n.jsx("polyline",{points:"15 14 18 17 21 14"})]}),h=c=>n.jsx(s.Icon,{...c,children:n.jsx("path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"})}),l=c=>n.jsx(s.Icon,{...c,children:n.jsx("path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"})}),i=c=>n.jsx(s.Icon,{...c,children:n.jsx("path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"})}),j=c=>n.jsx(s.Icon,{...c,children:n.jsx("path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"})}),d=c=>n.jsx(s.Icon,{...c,children:n.jsx("path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"})}),I=c=>n.jsx(s.Icon,{...c,children:n.jsx("path",{d:"M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z"})}),p=c=>n.jsx(s.Icon,{...c,children:n.jsx("path",{d:"M17 8h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2v4l-4-4H9a1.994 1.994 0 0 1-1.414-.586m0 0L11 14h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2v4l.586-.586Z"})}),r=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M17 8h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2v4l-4-4H9"}),n.jsx("path",{d:"M15 4H5a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2v4l4-4h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2z"})]}),M=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"}),n.jsx("line",{x1:"8",y1:"9",x2:"16",y2:"9"}),n.jsx("line",{x1:"8",y1:"13",x2:"14",y2:"13"})]}),y=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"}),n.jsx("line",{x1:"12",y1:"8",x2:"12",y2:"14"}),n.jsx("line",{x1:"9",y1:"11",x2:"15",y2:"11"})]}),v=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"}),n.jsx("path",{d:"M13.73 21a2 2 0 0 1-3.46 0"})]}),m=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"}),n.jsx("path",{d:"M13.73 21a2 2 0 0 1-3.46 0"}),n.jsx("path",{d:"M2 8c0-2.2.7-4.3 2-6"}),n.jsx("path",{d:"M22 8a10 10 0 0 0-2-6"})]}),A=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"}),n.jsx("path",{d:"M13.73 21a2 2 0 0 1-3.46 0"}),n.jsx("line",{x1:"1",y1:"1",x2:"23",y2:"23"})]}),f=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"}),n.jsx("path",{d:"M13.73 21a2 2 0 0 1-3.46 0"})]}),u=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"}),n.jsx("path",{d:"M13.73 21a2 2 0 0 1-3.46 0"})]}),C=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M13.73 21a2 2 0 0 1-3.46 0"}),n.jsx("path",{d:"M18.63 13A17.89 17.89 0 0 1 18 8"}),n.jsx("path",{d:"M6.26 6.26A5.86 5.86 0 0 0 6 8c0 7-3 9-3 9h14"}),n.jsx("path",{d:"M18 8a6 6 0 0 0-9.33-5"}),n.jsx("line",{x1:"1",y1:"1",x2:"23",y2:"23"})]}),H=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"}),n.jsx("path",{d:"M13.73 21a2 2 0 0 1-3.46 0"}),n.jsx("line",{x1:"19",y1:"2",x2:"19",y2:"8"}),n.jsx("line",{x1:"22",y1:"5",x2:"16",y2:"5"})]}),V=c=>n.jsx(s.Icon,{...c,children:n.jsx("path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"})}),g=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"}),n.jsx("path",{d:"M14.05 2a9 9 0 0 1 8 7.94"}),n.jsx("path",{d:"M14.05 6A5 5 0 0 1 18 10"})]}),z=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"}),n.jsx("path",{d:"M14.05 2a9 9 0 0 1 8 7.94"}),n.jsx("path",{d:"M14.05 6A5 5 0 0 1 18 10"})]}),O=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M10.68 13.31a16 16 0 0 0 3.41 2.6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7 2 2 0 0 1 1.72 2v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.42 19.42 0 0 1-3.33-2.67m-2.67-3.34a19.79 19.79 0 0 1-3.07-8.63A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91"}),n.jsx("line",{x1:"1",y1:"1",x2:"23",y2:"23"})]}),P=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("line",{x1:"23",y1:"1",x2:"17",y2:"7"}),n.jsx("line",{x1:"17",y1:"1",x2:"23",y2:"7"}),n.jsx("path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"})]}),b=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M17 18a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2"}),n.jsx("rect",{x:"3",y:"4",width:"18",height:"18",rx:"2"}),n.jsx("circle",{cx:"12",cy:"10",r:"2"}),n.jsx("line",{x1:"8",y1:"2",x2:"8",y2:"4"}),n.jsx("line",{x1:"16",y1:"2",x2:"16",y2:"4"})]}),L=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M16 8a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z"}),n.jsx("path",{d:"M16 20H4a2 2 0 0 1-2-2v-2c0-2.21 3.58-4 8-4s8 1.79 8 4"}),n.jsx("path",{d:"M21 10h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1Z"}),n.jsx("path",{d:"m15 12 3 2 3-2"})]}),R=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("circle",{cx:"10",cy:"8",r:"4"}),n.jsx("path",{d:"M16 20H4a2 2 0 0 1-2-2v-2c0-2.21 3.58-4 8-4"}),n.jsx("path",{d:"M21.5 17.5c-.08.67-.52 1.24-1.15 1.5-.63.25-1.35.1-1.85-.4l-.5-.5c-.2-.2-.5-.2-.7 0l-1 1c-.2.2-.2.5 0 .7l.5.5c.5.5.65 1.22.4 1.85-.26.63-.83 1.07-1.5 1.15-.83.1-1.7-.48-1.7-1.3v-1c0-4.42 3.58-8 8-8h1c.82 0 1.4.87 1.3 1.7Z"})]}),w=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"}),n.jsx("line",{x1:"12",y1:"8",x2:"12",y2:"12"}),n.jsx("line",{x1:"12",y1:"14",x2:"12.01",y2:"14"})]}),B=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"m3 11 18-5v12L3 13v-2z"}),n.jsx("path",{d:"M11.6 16.8a3 3 0 1 1-5.8-1.6"})]}),N=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"}),n.jsx("line",{x1:"9",y1:"10",x2:"9.01",y2:"10"}),n.jsx("line",{x1:"12",y1:"10",x2:"12.01",y2:"10"}),n.jsx("line",{x1:"15",y1:"10",x2:"15.01",y2:"10"})]}),F=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("polygon",{points:"23 7 16 12 23 17 23 7"}),n.jsx("rect",{x:"1",y:"5",width:"15",height:"14",rx:"2",ry:"2"})]}),S=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("polygon",{points:"23 7 16 12 23 17 23 7"}),n.jsx("rect",{x:"1",y:"5",width:"15",height:"14",rx:"2",ry:"2"})]}),T=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M16 16v1a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2m5.66 0H14a2 2 0 0 1 2 2v3.34l1 1L23 7v10"}),n.jsx("line",{x1:"1",y1:"1",x2:"23",y2:"23"})]}),Z=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("polyline",{points:"9 17 4 12 9 7"}),n.jsx("path",{d:"M20 18v-2a4 4 0 0 0-4-4H4"})]}),k=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("polyline",{points:"7 17 2 12 7 7"}),n.jsx("polyline",{points:"12 17 7 12 12 7"}),n.jsx("path",{d:"M22 18v-2a4 4 0 0 0-4-4H7"})]}),q=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("polyline",{points:"15 17 20 12 15 7"}),n.jsx("path",{d:"M4 18v-2a4 4 0 0 1 4-4h12"})]}),E=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"4"}),n.jsx("path",{d:"M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94"})]}),Q=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"4"}),n.jsx("path",{d:"M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94"})]}),D=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M4 11a9 9 0 0 1 9 9"}),n.jsx("path",{d:"M4 4a16 16 0 0 1 16 16"}),n.jsx("circle",{cx:"5",cy:"19",r:"1"})]}),G=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M4 11a9 9 0 0 1 9 9"}),n.jsx("path",{d:"M4 4a16 16 0 0 1 16 16"}),n.jsx("circle",{cx:"5",cy:"19",r:"1"})]}),J=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"m3 11 18-5v12L3 13v-2z"}),n.jsx("path",{d:"M11.6 16.8a3 3 0 1 1-5.8-1.6"})]});exports.AlternateEmailIcon=Q;exports.AnnouncementIcon=w;exports.AtSignIcon=E;exports.BellIcon=u;exports.BellOffIcon=C;exports.BellPlusIcon=H;exports.CampaignIcon=B;exports.ChatBubbleIcon=l;exports.ChatBubbleOutlineIcon=i;exports.ChatIcon=h;exports.CommentAddIcon=y;exports.CommentIcon=M;exports.ContactMailIcon=L;exports.ContactPhoneIcon=R;exports.ContactsIcon=b;exports.ForumIcon=p;exports.ForwardIcon=q;exports.ForwardToInboxIcon=e;exports.MailIcon=o;exports.MailOpenIcon=a;exports.MailOutlineIcon=x;exports.MarkEmailReadIcon=t;exports.MegaphoneIcon=J;exports.MessageCircleIcon=I;exports.MessageIcon=j;exports.MessageSquareIcon=d;exports.NotificationsActiveIcon=m;exports.NotificationsIcon=v;exports.NotificationsNoneIcon=f;exports.NotificationsOffIcon=A;exports.PhoneCallIcon=z;exports.PhoneIcon=V;exports.PhoneInTalkIcon=g;exports.PhoneMissedIcon=P;exports.PhoneOffIcon=O;exports.QuestionAnswerIcon=r;exports.ReplyAllIcon=k;exports.ReplyIcon=Z;exports.RssFeedIcon=G;exports.RssIcon=D;exports.SmsIcon=N;exports.VideoCallIcon=F;exports.VideocamIcon=S;exports.VideocamOffIcon=T;
|
|
@@ -1,184 +0,0 @@
|
|
|
1
|
-
import { jsxs as h, jsx as a } from "react/jsx-runtime";
|
|
2
|
-
import { Icon as c } from "../Icon.js";
|
|
3
|
-
const l = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
4
|
-
/* @__PURE__ */ a("path", { d: "M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z" }),
|
|
5
|
-
/* @__PURE__ */ a("polyline", { points: "22,6 12,13 2,6" })
|
|
6
|
-
] }), e = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
7
|
-
/* @__PURE__ */ a("path", { d: "M21.2 8.4c.5.38.8.97.8 1.6v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V10a2 2 0 0 1 .8-1.6l8-6a2 2 0 0 1 2.4 0l8 6Z" }),
|
|
8
|
-
/* @__PURE__ */ a("path", { d: "m22 10-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 10" })
|
|
9
|
-
] }), i = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
10
|
-
/* @__PURE__ */ a("rect", { x: "2", y: "4", width: "20", height: "16", rx: "2" }),
|
|
11
|
-
/* @__PURE__ */ a("path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" })
|
|
12
|
-
] }), d = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
13
|
-
/* @__PURE__ */ a("path", { d: "M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z" }),
|
|
14
|
-
/* @__PURE__ */ a("polyline", { points: "22,6 12,13 2,6" }),
|
|
15
|
-
/* @__PURE__ */ a("polyline", { points: "9 16 11 18 15 14" })
|
|
16
|
-
] }), p = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
17
|
-
/* @__PURE__ */ a("path", { d: "M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z" }),
|
|
18
|
-
/* @__PURE__ */ a("polyline", { points: "22,6 12,13 2,6" }),
|
|
19
|
-
/* @__PURE__ */ a("polyline", { points: "15 14 18 17 21 14" })
|
|
20
|
-
] }), s = (n) => /* @__PURE__ */ a(c, { ...n, children: /* @__PURE__ */ a("path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" }) }), r = (n) => /* @__PURE__ */ a(c, { ...n, children: /* @__PURE__ */ a("path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" }) }), M = (n) => /* @__PURE__ */ a(c, { ...n, children: /* @__PURE__ */ a("path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" }) }), y = (n) => /* @__PURE__ */ a(c, { ...n, children: /* @__PURE__ */ a("path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" }) }), x = (n) => /* @__PURE__ */ a(c, { ...n, children: /* @__PURE__ */ a("path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" }) }), I = (n) => /* @__PURE__ */ a(c, { ...n, children: /* @__PURE__ */ a("path", { d: "M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z" }) }), v = (n) => /* @__PURE__ */ a(c, { ...n, children: /* @__PURE__ */ a("path", { d: "M17 8h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2v4l-4-4H9a1.994 1.994 0 0 1-1.414-.586m0 0L11 14h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2v4l.586-.586Z" }) }), A = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
21
|
-
/* @__PURE__ */ a("path", { d: "M17 8h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2v4l-4-4H9" }),
|
|
22
|
-
/* @__PURE__ */ a("path", { d: "M15 4H5a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2v4l4-4h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2z" })
|
|
23
|
-
] }), m = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
24
|
-
/* @__PURE__ */ a("path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" }),
|
|
25
|
-
/* @__PURE__ */ a("line", { x1: "8", y1: "9", x2: "16", y2: "9" }),
|
|
26
|
-
/* @__PURE__ */ a("line", { x1: "8", y1: "13", x2: "14", y2: "13" })
|
|
27
|
-
] }), H = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
28
|
-
/* @__PURE__ */ a("path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" }),
|
|
29
|
-
/* @__PURE__ */ a("line", { x1: "12", y1: "8", x2: "12", y2: "14" }),
|
|
30
|
-
/* @__PURE__ */ a("line", { x1: "9", y1: "11", x2: "15", y2: "11" })
|
|
31
|
-
] }), z = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
32
|
-
/* @__PURE__ */ a("path", { d: "M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9" }),
|
|
33
|
-
/* @__PURE__ */ a("path", { d: "M13.73 21a2 2 0 0 1-3.46 0" })
|
|
34
|
-
] }), V = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
35
|
-
/* @__PURE__ */ a("path", { d: "M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9" }),
|
|
36
|
-
/* @__PURE__ */ a("path", { d: "M13.73 21a2 2 0 0 1-3.46 0" }),
|
|
37
|
-
/* @__PURE__ */ a("path", { d: "M2 8c0-2.2.7-4.3 2-6" }),
|
|
38
|
-
/* @__PURE__ */ a("path", { d: "M22 8a10 10 0 0 0-2-6" })
|
|
39
|
-
] }), f = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
40
|
-
/* @__PURE__ */ a("path", { d: "M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9" }),
|
|
41
|
-
/* @__PURE__ */ a("path", { d: "M13.73 21a2 2 0 0 1-3.46 0" }),
|
|
42
|
-
/* @__PURE__ */ a("line", { x1: "1", y1: "1", x2: "23", y2: "23" })
|
|
43
|
-
] }), g = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
44
|
-
/* @__PURE__ */ a("path", { d: "M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9" }),
|
|
45
|
-
/* @__PURE__ */ a("path", { d: "M13.73 21a2 2 0 0 1-3.46 0" })
|
|
46
|
-
] }), C = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
47
|
-
/* @__PURE__ */ a("path", { d: "M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9" }),
|
|
48
|
-
/* @__PURE__ */ a("path", { d: "M13.73 21a2 2 0 0 1-3.46 0" })
|
|
49
|
-
] }), L = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
50
|
-
/* @__PURE__ */ a("path", { d: "M13.73 21a2 2 0 0 1-3.46 0" }),
|
|
51
|
-
/* @__PURE__ */ a("path", { d: "M18.63 13A17.89 17.89 0 0 1 18 8" }),
|
|
52
|
-
/* @__PURE__ */ a("path", { d: "M6.26 6.26A5.86 5.86 0 0 0 6 8c0 7-3 9-3 9h14" }),
|
|
53
|
-
/* @__PURE__ */ a("path", { d: "M18 8a6 6 0 0 0-9.33-5" }),
|
|
54
|
-
/* @__PURE__ */ a("line", { x1: "1", y1: "1", x2: "23", y2: "23" })
|
|
55
|
-
] }), u = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
56
|
-
/* @__PURE__ */ a("path", { d: "M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9" }),
|
|
57
|
-
/* @__PURE__ */ a("path", { d: "M13.73 21a2 2 0 0 1-3.46 0" }),
|
|
58
|
-
/* @__PURE__ */ a("line", { x1: "19", y1: "2", x2: "19", y2: "8" }),
|
|
59
|
-
/* @__PURE__ */ a("line", { x1: "22", y1: "5", x2: "16", y2: "5" })
|
|
60
|
-
] }), w = (n) => /* @__PURE__ */ a(c, { ...n, children: /* @__PURE__ */ a("path", { d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" }) }), O = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
61
|
-
/* @__PURE__ */ a("path", { d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" }),
|
|
62
|
-
/* @__PURE__ */ a("path", { d: "M14.05 2a9 9 0 0 1 8 7.94" }),
|
|
63
|
-
/* @__PURE__ */ a("path", { d: "M14.05 6A5 5 0 0 1 18 10" })
|
|
64
|
-
] }), P = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
65
|
-
/* @__PURE__ */ a("path", { d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" }),
|
|
66
|
-
/* @__PURE__ */ a("path", { d: "M14.05 2a9 9 0 0 1 8 7.94" }),
|
|
67
|
-
/* @__PURE__ */ a("path", { d: "M14.05 6A5 5 0 0 1 18 10" })
|
|
68
|
-
] }), b = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
69
|
-
/* @__PURE__ */ a("path", { d: "M10.68 13.31a16 16 0 0 0 3.41 2.6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7 2 2 0 0 1 1.72 2v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.42 19.42 0 0 1-3.33-2.67m-2.67-3.34a19.79 19.79 0 0 1-3.07-8.63A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91" }),
|
|
70
|
-
/* @__PURE__ */ a("line", { x1: "1", y1: "1", x2: "23", y2: "23" })
|
|
71
|
-
] }), B = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
72
|
-
/* @__PURE__ */ a("line", { x1: "23", y1: "1", x2: "17", y2: "7" }),
|
|
73
|
-
/* @__PURE__ */ a("line", { x1: "17", y1: "1", x2: "23", y2: "7" }),
|
|
74
|
-
/* @__PURE__ */ a("path", { d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" })
|
|
75
|
-
] }), N = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
76
|
-
/* @__PURE__ */ a("path", { d: "M17 18a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2" }),
|
|
77
|
-
/* @__PURE__ */ a("rect", { x: "3", y: "4", width: "18", height: "18", rx: "2" }),
|
|
78
|
-
/* @__PURE__ */ a("circle", { cx: "12", cy: "10", r: "2" }),
|
|
79
|
-
/* @__PURE__ */ a("line", { x1: "8", y1: "2", x2: "8", y2: "4" }),
|
|
80
|
-
/* @__PURE__ */ a("line", { x1: "16", y1: "2", x2: "16", y2: "4" })
|
|
81
|
-
] }), R = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
82
|
-
/* @__PURE__ */ a("path", { d: "M16 8a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z" }),
|
|
83
|
-
/* @__PURE__ */ a("path", { d: "M16 20H4a2 2 0 0 1-2-2v-2c0-2.21 3.58-4 8-4s8 1.79 8 4" }),
|
|
84
|
-
/* @__PURE__ */ a("path", { d: "M21 10h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1Z" }),
|
|
85
|
-
/* @__PURE__ */ a("path", { d: "m15 12 3 2 3-2" })
|
|
86
|
-
] }), Z = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
87
|
-
/* @__PURE__ */ a("circle", { cx: "10", cy: "8", r: "4" }),
|
|
88
|
-
/* @__PURE__ */ a("path", { d: "M16 20H4a2 2 0 0 1-2-2v-2c0-2.21 3.58-4 8-4" }),
|
|
89
|
-
/* @__PURE__ */ a("path", { d: "M21.5 17.5c-.08.67-.52 1.24-1.15 1.5-.63.25-1.35.1-1.85-.4l-.5-.5c-.2-.2-.5-.2-.7 0l-1 1c-.2.2-.2.5 0 .7l.5.5c.5.5.65 1.22.4 1.85-.26.63-.83 1.07-1.5 1.15-.83.1-1.7-.48-1.7-1.3v-1c0-4.42 3.58-8 8-8h1c.82 0 1.4.87 1.3 1.7Z" })
|
|
90
|
-
] }), F = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
91
|
-
/* @__PURE__ */ a("path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" }),
|
|
92
|
-
/* @__PURE__ */ a("line", { x1: "12", y1: "8", x2: "12", y2: "12" }),
|
|
93
|
-
/* @__PURE__ */ a("line", { x1: "12", y1: "14", x2: "12.01", y2: "14" })
|
|
94
|
-
] }), S = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
95
|
-
/* @__PURE__ */ a("path", { d: "m3 11 18-5v12L3 13v-2z" }),
|
|
96
|
-
/* @__PURE__ */ a("path", { d: "M11.6 16.8a3 3 0 1 1-5.8-1.6" })
|
|
97
|
-
] }), j = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
98
|
-
/* @__PURE__ */ a("path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" }),
|
|
99
|
-
/* @__PURE__ */ a("line", { x1: "9", y1: "10", x2: "9.01", y2: "10" }),
|
|
100
|
-
/* @__PURE__ */ a("line", { x1: "12", y1: "10", x2: "12.01", y2: "10" }),
|
|
101
|
-
/* @__PURE__ */ a("line", { x1: "15", y1: "10", x2: "15.01", y2: "10" })
|
|
102
|
-
] }), k = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
103
|
-
/* @__PURE__ */ a("polygon", { points: "23 7 16 12 23 17 23 7" }),
|
|
104
|
-
/* @__PURE__ */ a("rect", { x: "1", y: "5", width: "15", height: "14", rx: "2", ry: "2" })
|
|
105
|
-
] }), E = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
106
|
-
/* @__PURE__ */ a("polygon", { points: "23 7 16 12 23 17 23 7" }),
|
|
107
|
-
/* @__PURE__ */ a("rect", { x: "1", y: "5", width: "15", height: "14", rx: "2", ry: "2" })
|
|
108
|
-
] }), T = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
109
|
-
/* @__PURE__ */ a("path", { d: "M16 16v1a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2m5.66 0H14a2 2 0 0 1 2 2v3.34l1 1L23 7v10" }),
|
|
110
|
-
/* @__PURE__ */ a("line", { x1: "1", y1: "1", x2: "23", y2: "23" })
|
|
111
|
-
] }), q = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
112
|
-
/* @__PURE__ */ a("polyline", { points: "9 17 4 12 9 7" }),
|
|
113
|
-
/* @__PURE__ */ a("path", { d: "M20 18v-2a4 4 0 0 0-4-4H4" })
|
|
114
|
-
] }), Q = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
115
|
-
/* @__PURE__ */ a("polyline", { points: "7 17 2 12 7 7" }),
|
|
116
|
-
/* @__PURE__ */ a("polyline", { points: "12 17 7 12 12 7" }),
|
|
117
|
-
/* @__PURE__ */ a("path", { d: "M22 18v-2a4 4 0 0 0-4-4H7" })
|
|
118
|
-
] }), D = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
119
|
-
/* @__PURE__ */ a("polyline", { points: "15 17 20 12 15 7" }),
|
|
120
|
-
/* @__PURE__ */ a("path", { d: "M4 18v-2a4 4 0 0 1 4-4h12" })
|
|
121
|
-
] }), G = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
122
|
-
/* @__PURE__ */ a("circle", { cx: "12", cy: "12", r: "4" }),
|
|
123
|
-
/* @__PURE__ */ a("path", { d: "M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94" })
|
|
124
|
-
] }), J = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
125
|
-
/* @__PURE__ */ a("circle", { cx: "12", cy: "12", r: "4" }),
|
|
126
|
-
/* @__PURE__ */ a("path", { d: "M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94" })
|
|
127
|
-
] }), K = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
128
|
-
/* @__PURE__ */ a("path", { d: "M4 11a9 9 0 0 1 9 9" }),
|
|
129
|
-
/* @__PURE__ */ a("path", { d: "M4 4a16 16 0 0 1 16 16" }),
|
|
130
|
-
/* @__PURE__ */ a("circle", { cx: "5", cy: "19", r: "1" })
|
|
131
|
-
] }), U = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
132
|
-
/* @__PURE__ */ a("path", { d: "M4 11a9 9 0 0 1 9 9" }),
|
|
133
|
-
/* @__PURE__ */ a("path", { d: "M4 4a16 16 0 0 1 16 16" }),
|
|
134
|
-
/* @__PURE__ */ a("circle", { cx: "5", cy: "19", r: "1" })
|
|
135
|
-
] }), W = (n) => /* @__PURE__ */ h(c, { ...n, children: [
|
|
136
|
-
/* @__PURE__ */ a("path", { d: "m3 11 18-5v12L3 13v-2z" }),
|
|
137
|
-
/* @__PURE__ */ a("path", { d: "M11.6 16.8a3 3 0 1 1-5.8-1.6" })
|
|
138
|
-
] });
|
|
139
|
-
export {
|
|
140
|
-
J as AlternateEmailIcon,
|
|
141
|
-
F as AnnouncementIcon,
|
|
142
|
-
G as AtSignIcon,
|
|
143
|
-
C as BellIcon,
|
|
144
|
-
L as BellOffIcon,
|
|
145
|
-
u as BellPlusIcon,
|
|
146
|
-
S as CampaignIcon,
|
|
147
|
-
r as ChatBubbleIcon,
|
|
148
|
-
M as ChatBubbleOutlineIcon,
|
|
149
|
-
s as ChatIcon,
|
|
150
|
-
H as CommentAddIcon,
|
|
151
|
-
m as CommentIcon,
|
|
152
|
-
R as ContactMailIcon,
|
|
153
|
-
Z as ContactPhoneIcon,
|
|
154
|
-
N as ContactsIcon,
|
|
155
|
-
v as ForumIcon,
|
|
156
|
-
D as ForwardIcon,
|
|
157
|
-
p as ForwardToInboxIcon,
|
|
158
|
-
l as MailIcon,
|
|
159
|
-
e as MailOpenIcon,
|
|
160
|
-
i as MailOutlineIcon,
|
|
161
|
-
d as MarkEmailReadIcon,
|
|
162
|
-
W as MegaphoneIcon,
|
|
163
|
-
I as MessageCircleIcon,
|
|
164
|
-
y as MessageIcon,
|
|
165
|
-
x as MessageSquareIcon,
|
|
166
|
-
V as NotificationsActiveIcon,
|
|
167
|
-
z as NotificationsIcon,
|
|
168
|
-
g as NotificationsNoneIcon,
|
|
169
|
-
f as NotificationsOffIcon,
|
|
170
|
-
P as PhoneCallIcon,
|
|
171
|
-
w as PhoneIcon,
|
|
172
|
-
O as PhoneInTalkIcon,
|
|
173
|
-
B as PhoneMissedIcon,
|
|
174
|
-
b as PhoneOffIcon,
|
|
175
|
-
A as QuestionAnswerIcon,
|
|
176
|
-
Q as ReplyAllIcon,
|
|
177
|
-
q as ReplyIcon,
|
|
178
|
-
U as RssFeedIcon,
|
|
179
|
-
K as RssIcon,
|
|
180
|
-
j as SmsIcon,
|
|
181
|
-
k as VideoCallIcon,
|
|
182
|
-
E as VideocamIcon,
|
|
183
|
-
T as VideocamOffIcon
|
|
184
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const n=require("react/jsx-runtime"),c=require("../Icon.cjs"),o=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"}),n.jsx("polyline",{points:"13 2 13 9 20 9"})]}),x=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"}),n.jsx("polyline",{points:"14 2 14 8 20 8"}),n.jsx("line",{x1:"16",y1:"13",x2:"8",y2:"13"}),n.jsx("line",{x1:"16",y1:"17",x2:"8",y2:"17"}),n.jsx("polyline",{points:"10 9 9 9 8 9"})]}),e=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"}),n.jsx("polyline",{points:"14 2 14 8 20 8"}),n.jsx("line",{x1:"12",y1:"18",x2:"12",y2:"12"}),n.jsx("line",{x1:"9",y1:"15",x2:"15",y2:"15"})]}),l=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"}),n.jsx("polyline",{points:"14 2 14 8 20 8"}),n.jsx("line",{x1:"9",y1:"15",x2:"15",y2:"15"})]}),h=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"}),n.jsx("polyline",{points:"14 2 14 8 20 8"}),n.jsx("polyline",{points:"9 15 11 17 15 13"})]}),i=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"}),n.jsx("polyline",{points:"14 2 14 8 20 8"}),n.jsx("line",{x1:"9.5",y1:"12.5",x2:"14.5",y2:"17.5"}),n.jsx("line",{x1:"14.5",y1:"12.5",x2:"9.5",y2:"17.5"})]}),t=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("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"}),n.jsx("path",{d:"M3 7.6v12.8c0 .4.2.8.5 1.1.3.3.7.5 1.1.5h9.8"}),n.jsx("path",{d:"M15 2v5h5"})]}),a=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"}),n.jsx("polyline",{points:"14 2 14 8 20 8"}),n.jsx("polyline",{points:"9 13 11 15 9 17"}),n.jsx("polyline",{points:"15 13 13 15 15 17"})]}),j=s=>n.jsx(c.Icon,{...s,children:n.jsx("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"})}),I=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("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"}),n.jsx("path",{d:"M6 10l-2 9h18l-2-9"})]}),d=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("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"}),n.jsx("line",{x1:"12",y1:"11",x2:"12",y2:"17"}),n.jsx("line",{x1:"9",y1:"14",x2:"15",y2:"14"})]}),r=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("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"}),n.jsx("line",{x1:"9",y1:"14",x2:"15",y2:"14"})]}),y=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("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"}),n.jsx("polyline",{points:"9 14 11 16 15 12"})]}),p=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"}),n.jsx("polyline",{points:"14 2 14 8 20 8"}),n.jsx("line",{x1:"16",y1:"13",x2:"8",y2:"13"}),n.jsx("line",{x1:"16",y1:"17",x2:"8",y2:"17"}),n.jsx("line",{x1:"10",y1:"9",x2:"8",y2:"9"})]}),M=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"}),n.jsx("polyline",{points:"14 2 14 8 20 8"}),n.jsx("line",{x1:"16",y1:"13",x2:"8",y2:"13"}),n.jsx("line",{x1:"16",y1:"17",x2:"8",y2:"17"})]}),v=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("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"}),n.jsx("path",{d:"M15 3v6h6"})]}),V=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("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"}),n.jsx("path",{d:"M15 3v6h6"}),n.jsx("line",{x1:"12",y1:"13",x2:"12",y2:"17"}),n.jsx("line",{x1:"10",y1:"15",x2:"14",y2:"15"})]}),F=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("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"}),n.jsx("rect",{x:"8",y:"2",width:"8",height:"4",rx:"1",ry:"1"})]}),H=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("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"}),n.jsx("rect",{x:"8",y:"2",width:"8",height:"4",rx:"1",ry:"1"}),n.jsx("line",{x1:"8",y1:"12",x2:"16",y2:"12"}),n.jsx("line",{x1:"8",y1:"16",x2:"12",y2:"16"})]}),g=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("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"}),n.jsx("rect",{x:"8",y:"2",width:"8",height:"4",rx:"1",ry:"1"}),n.jsx("polyline",{points:"9 14 11 16 15 12"})]}),C=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),n.jsx("circle",{cx:"8.5",cy:"8.5",r:"1.5"}),n.jsx("polyline",{points:"21 15 16 10 5 21"})]}),z=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),n.jsx("circle",{cx:"8.5",cy:"8.5",r:"1.5"}),n.jsx("path",{d:"M16 3v6"}),n.jsx("path",{d:"M13 6h6"})]}),m=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M4 8V6a2 2 0 0 1 2-2h2"}),n.jsx("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"}),n.jsx("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"}),n.jsx("circle",{cx:"11.5",cy:"11.5",r:"4.5"}),n.jsx("line",{x1:"21",y1:"21",x2:"14.8",y2:"14.8"})]}),b=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M3 3v18h18"}),n.jsx("path",{d:"M21 21v-9l-4-4-4 4"}),n.jsx("path",{d:"M3 21l12-12"})]}),u=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),n.jsx("circle",{cx:"8.5",cy:"8.5",r:"1.5"}),n.jsx("polyline",{points:"21 15 16 10 5 21"})]}),k=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("rect",{x:"7",y:"7",width:"14",height:"14",rx:"2",ry:"2"}),n.jsx("path",{d:"M3 5a2 2 0 0 1 2-2h12"}),n.jsx("circle",{cx:"12",cy:"12",r:"2"})]}),A=s=>n.jsxs(c.Icon,{...s,children:[n.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"}),n.jsx("circle",{cx:"12",cy:"13",r:"4"})]}),T=s=>n.jsx(c.Icon,{...s,children:n.jsx("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"})}),L=s=>n.jsx(c.Icon,{...s,children:n.jsx("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"})}),w=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M4 19.5A2.5 2.5 0 0 1 6.5 17H20"}),n.jsx("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"})]}),P=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"}),n.jsx("path",{d:"M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"})]}),B=s=>n.jsx(c.Icon,{...s,children:n.jsx("path",{d:"M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"})}),O=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("polyline",{points:"22 12 16 12 14 15 10 15 8 12 2 12"}),n.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"})]}),N=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("polyline",{points:"21 8 21 21 3 21 3 8"}),n.jsx("rect",{x:"1",y:"3",width:"22",height:"5"}),n.jsx("line",{x1:"10",y1:"12",x2:"14",y2:"12"})]}),S=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}),n.jsx("path",{d:"M21 12c0 1.66-4 3-9 3s-9-1.34-9-3"}),n.jsx("path",{d:"M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5"})]}),f=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}),n.jsx("path",{d:"M21 12c0 1.66-4 3-9 3s-9-1.34-9-3"}),n.jsx("path",{d:"M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5"})]}),D=s=>n.jsx(c.Icon,{...s,children:n.jsx("path",{d:"M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z"})}),Z=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z"}),n.jsx("line",{x1:"1",y1:"1",x2:"23",y2:"23"})]}),q=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("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"}),n.jsx("line",{x1:"7",y1:"7",x2:"7.01",y2:"7"})]}),Q=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("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"}),n.jsx("path",{d:"M6 9.01V9"}),n.jsx("path",{d:"m15 5 6.3 6.3a2.4 2.4 0 0 1 0 3.4L17 19"})]}),X=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("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"}),n.jsx("line",{x1:"7",y1:"7",x2:"7.01",y2:"7"})]}),R=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}),n.jsx("line",{x1:"3",y1:"9",x2:"21",y2:"9"}),n.jsx("line",{x1:"3",y1:"15",x2:"21",y2:"15"}),n.jsx("line",{x1:"9",y1:"3",x2:"9",y2:"21"}),n.jsx("line",{x1:"15",y1:"3",x2:"15",y2:"21"})]}),E=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}),n.jsx("line",{x1:"3",y1:"9",x2:"21",y2:"9"}),n.jsx("line",{x1:"9",y1:"3",x2:"9",y2:"21"})]}),G=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("polyline",{points:"16 18 22 12 16 6"}),n.jsx("polyline",{points:"8 6 2 12 8 18"})]}),J=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}),n.jsx("polyline",{points:"9 8 5 12 9 16"}),n.jsx("polyline",{points:"15 8 19 12 15 16"})]}),K=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("polyline",{points:"4 17 10 11 4 5"}),n.jsx("line",{x1:"12",y1:"19",x2:"20",y2:"19"})]}),U=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("line",{x1:"4",y1:"9",x2:"20",y2:"9"}),n.jsx("line",{x1:"4",y1:"15",x2:"20",y2:"15"}),n.jsx("line",{x1:"10",y1:"3",x2:"8",y2:"21"}),n.jsx("line",{x1:"16",y1:"3",x2:"14",y2:"21"})]}),W=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("line",{x1:"4",y1:"9",x2:"20",y2:"9"}),n.jsx("line",{x1:"4",y1:"15",x2:"20",y2:"15"}),n.jsx("line",{x1:"10",y1:"3",x2:"8",y2:"21"}),n.jsx("line",{x1:"16",y1:"3",x2:"14",y2:"21"})]}),Y=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("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"}),n.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"})]});exports.ArchiveIcon=N;exports.ArticleIcon=p;exports.AttachFileIcon=L;exports.AttachmentIcon=T;exports.BookIcon=w;exports.BookOpenIcon=P;exports.BookmarkIcon=B;exports.BrokenImageIcon=b;exports.ClipboardCheckIcon=g;exports.ClipboardIcon=F;exports.ClipboardTextIcon=H;exports.CloudIcon=D;exports.CloudOffIcon=Z;exports.CodeBlockIcon=J;exports.CodeIcon=G;exports.DatabaseIcon=S;exports.DescriptionIcon=M;exports.FileCheckIcon=h;exports.FileCodeIcon=a;exports.FileIcon=o;exports.FileMinusIcon=l;exports.FilePlusIcon=e;exports.FileTextIcon=x;exports.FileXIcon=i;exports.FilesIcon=t;exports.FolderCheckIcon=y;exports.FolderIcon=j;exports.FolderMinusIcon=r;exports.FolderOpenIcon=I;exports.FolderPlusIcon=d;exports.FormatQuoteIcon=Y;exports.HashIcon=U;exports.ImageAddIcon=z;exports.ImageIcon=C;exports.ImageSearchIcon=m;exports.InboxIcon=O;exports.LabelIcon=X;exports.NoteAddIcon=V;exports.NoteIcon=v;exports.NumbersIcon=W;exports.PhotoCameraIcon=A;exports.PhotoIcon=u;exports.PhotoLibraryIcon=k;exports.StorageIcon=f;exports.TableChartIcon=E;exports.TableIcon=R;exports.TagIcon=q;exports.TagsIcon=Q;exports.TerminalIcon=K;
|