@forgedevstack/bear 1.1.9 → 1.2.1
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 +4 -0
- package/dist/components/AlertDialog/AlertDialog.cjs +1 -1
- package/dist/components/AlertDialog/AlertDialog.const.cjs +1 -1
- package/dist/components/AlertDialog/AlertDialog.const.d.ts +2 -2
- package/dist/components/AlertDialog/AlertDialog.const.js +4 -4
- package/dist/components/AlertDialog/AlertDialog.js +76 -62
- package/dist/components/Autocomplete/Autocomplete.cjs +1 -1
- package/dist/components/Autocomplete/Autocomplete.const.cjs +1 -0
- package/dist/components/Autocomplete/Autocomplete.const.d.ts +1 -0
- package/dist/components/Autocomplete/Autocomplete.const.js +4 -0
- package/dist/components/Autocomplete/Autocomplete.js +110 -72
- package/dist/components/BottomSheet/BottomSheet.cjs +1 -1
- package/dist/components/BottomSheet/BottomSheet.js +74 -53
- package/dist/components/BottomSheet/BottomSheet.types.d.ts +2 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.cjs +1 -1
- package/dist/components/Breadcrumbs/Breadcrumbs.js +126 -46
- package/dist/components/Breadcrumbs/Breadcrumbs.types.d.ts +11 -4
- package/dist/components/Breadcrumbs/index.d.ts +1 -1
- package/dist/components/Calendar/Calendar.cjs +1 -1
- package/dist/components/Calendar/Calendar.js +3 -2
- package/dist/components/Cascader/Cascader.cjs +1 -1
- package/dist/components/Cascader/Cascader.const.cjs +1 -1
- package/dist/components/Cascader/Cascader.const.d.ts +1 -1
- package/dist/components/Cascader/Cascader.const.js +1 -1
- package/dist/components/Cascader/Cascader.js +109 -146
- package/dist/components/Cascader/components/CascaderPanel/CascaderPanel.cjs +1 -0
- package/dist/components/Cascader/components/CascaderPanel/CascaderPanel.d.ts +3 -0
- package/dist/components/Cascader/components/CascaderPanel/CascaderPanel.js +50 -0
- package/dist/components/Cascader/components/CascaderPanel/index.d.ts +1 -0
- package/dist/components/Chart/BarChart.cjs +1 -0
- package/dist/components/Chart/BarChart.d.ts +3 -0
- package/dist/components/Chart/BarChart.js +65 -0
- 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 +7 -0
- package/dist/components/Chart/Chart.const.js +12 -2
- package/dist/components/Chart/Chart.d.ts +1 -13
- package/dist/components/Chart/Chart.js +18 -204
- package/dist/components/Chart/Chart.types.d.ts +7 -1
- package/dist/components/Chart/LineChart.cjs +1 -0
- package/dist/components/Chart/LineChart.d.ts +3 -0
- package/dist/components/Chart/LineChart.js +73 -0
- package/dist/components/Chart/PieChart.cjs +1 -0
- package/dist/components/Chart/PieChart.d.ts +3 -0
- package/dist/components/Chart/PieChart.js +110 -0
- package/dist/components/Chart/index.d.ts +4 -1
- package/dist/components/CloseButton/CloseButton.cjs +1 -0
- package/dist/components/CloseButton/CloseButton.d.ts +4 -0
- package/dist/components/CloseButton/CloseButton.js +60 -0
- package/dist/components/CloseButton/CloseButton.types.d.ts +15 -0
- package/dist/components/CloseButton/index.d.ts +2 -0
- package/dist/components/ColorPicker/ColorPicker.cjs +1 -1
- package/dist/components/ColorPicker/ColorPicker.const.cjs +1 -1
- package/dist/components/ColorPicker/ColorPicker.const.d.ts +4 -2
- package/dist/components/ColorPicker/ColorPicker.const.js +8 -6
- package/dist/components/ColorPicker/ColorPicker.js +135 -73
- package/dist/components/ColorPicker/ColorPicker.utils.cjs +1 -0
- package/dist/components/ColorPicker/ColorPicker.utils.d.ts +17 -0
- package/dist/components/ColorPicker/ColorPicker.utils.js +43 -0
- package/dist/components/CountdownTimer/CountdownTimer.cjs +1 -1
- package/dist/components/CountdownTimer/CountdownTimer.const.cjs +1 -1
- package/dist/components/CountdownTimer/CountdownTimer.const.d.ts +2 -0
- package/dist/components/CountdownTimer/CountdownTimer.const.js +29 -17
- package/dist/components/CountdownTimer/CountdownTimer.js +91 -61
- package/dist/components/CountdownTimer/CountdownTimer.types.d.ts +11 -2
- package/dist/components/CreditInput/CreditInput.cjs +1 -1
- package/dist/components/CreditInput/CreditInput.js +80 -78
- package/dist/components/DatePicker/DatePicker.cjs +1 -1
- package/dist/components/DatePicker/DatePicker.js +12 -11
- package/dist/components/DateRangePicker/DateRangePicker.cjs +1 -1
- package/dist/components/DateRangePicker/DateRangePicker.js +89 -84
- package/dist/components/DiffSquares/DiffSquares.cjs +1 -0
- package/dist/components/DiffSquares/DiffSquares.const.cjs +1 -0
- package/dist/components/DiffSquares/DiffSquares.const.d.ts +3 -0
- package/dist/components/DiffSquares/DiffSquares.const.js +6 -0
- package/dist/components/DiffSquares/DiffSquares.d.ts +3 -0
- package/dist/components/DiffSquares/DiffSquares.js +70 -0
- package/dist/components/DiffSquares/DiffSquares.types.d.ts +23 -0
- package/dist/components/DiffSquares/DiffSquares.utils.cjs +1 -0
- package/dist/components/DiffSquares/DiffSquares.utils.d.ts +3 -0
- package/dist/components/DiffSquares/DiffSquares.utils.js +12 -0
- package/dist/components/DiffSquares/index.d.ts +2 -0
- package/dist/components/Drawer/Drawer.cjs +1 -1
- package/dist/components/Drawer/Drawer.js +41 -41
- package/dist/components/Dropdown/Dropdown.cjs +1 -1
- package/dist/components/Dropdown/Dropdown.const.cjs +1 -0
- package/dist/components/Dropdown/Dropdown.const.d.ts +7 -0
- package/dist/components/Dropdown/Dropdown.const.js +10 -0
- package/dist/components/Dropdown/Dropdown.d.ts +0 -1
- package/dist/components/Dropdown/Dropdown.js +102 -92
- package/dist/components/Dropdown/Dropdown.types.d.ts +2 -0
- package/dist/components/Gauge/Gauge.cjs +1 -1
- package/dist/components/Gauge/Gauge.js +61 -50
- package/dist/components/Gauge/Gauge.types.d.ts +2 -0
- package/dist/components/HoverCard/HoverCard.cjs +6 -6
- package/dist/components/HoverCard/HoverCard.js +72 -54
- package/dist/components/Icon/icons/commerce.cjs +1 -0
- package/dist/components/Icon/icons/commerce.d.ts +25 -0
- package/dist/components/Icon/icons/commerce.js +124 -0
- package/dist/components/Icon/icons/device.cjs +1 -0
- package/dist/components/Icon/icons/device.d.ts +27 -0
- package/dist/components/Icon/icons/device.js +122 -0
- package/dist/components/Icon/icons/file.cjs +1 -0
- package/dist/components/Icon/icons/file.d.ts +25 -0
- package/dist/components/Icon/icons/file.js +120 -0
- package/dist/components/Icon/icons/social.cjs +1 -0
- package/dist/components/Icon/icons/social.d.ts +24 -0
- package/dist/components/Icon/icons/social.js +89 -0
- package/dist/components/Icon/icons/status.js +1 -1
- package/dist/components/Icon/index.cjs +1 -1
- package/dist/components/Icon/index.d.ts +93 -56
- package/dist/components/Icon/index.js +38 -26
- package/dist/components/MentionsInput/MentionsInput.cjs +1 -1
- package/dist/components/MentionsInput/MentionsInput.js +106 -83
- package/dist/components/Menu/Menu.cjs +1 -1
- package/dist/components/Menu/Menu.js +91 -80
- package/dist/components/Modal/Modal.cjs +1 -1
- package/dist/components/Modal/Modal.const.cjs +1 -1
- package/dist/components/Modal/Modal.const.d.ts +1 -1
- package/dist/components/Modal/Modal.const.js +1 -1
- package/dist/components/Modal/Modal.js +50 -44
- package/dist/components/Modal/Modal.types.d.ts +6 -0
- package/dist/components/MultiSelect/MultiSelect.cjs +1 -1
- package/dist/components/MultiSelect/MultiSelect.js +123 -78
- package/dist/components/NavigableSelect/NavigableSelect.cjs +1 -1
- package/dist/components/NavigableSelect/NavigableSelect.const.cjs +1 -1
- package/dist/components/NavigableSelect/NavigableSelect.const.d.ts +1 -1
- package/dist/components/NavigableSelect/NavigableSelect.const.js +1 -1
- package/dist/components/NavigableSelect/NavigableSelect.js +167 -143
- package/dist/components/NotificationCenter/NotificationCenter.cjs +1 -1
- package/dist/components/NotificationCenter/NotificationCenter.const.cjs +1 -1
- package/dist/components/NotificationCenter/NotificationCenter.const.d.ts +1 -1
- package/dist/components/NotificationCenter/NotificationCenter.const.js +1 -1
- package/dist/components/NotificationCenter/NotificationCenter.js +87 -81
- package/dist/components/OTPInput/OTPInput.cjs +1 -1
- package/dist/components/OTPInput/OTPInput.const.cjs +1 -0
- package/dist/components/OTPInput/OTPInput.const.d.ts +6 -0
- package/dist/components/OTPInput/OTPInput.const.js +14 -0
- package/dist/components/OTPInput/OTPInput.js +99 -65
- package/dist/components/OTPInput/OTPInput.types.d.ts +7 -0
- package/dist/components/Overlay/Overlay.cjs +1 -0
- package/dist/components/Overlay/Overlay.d.ts +4 -0
- package/dist/components/Overlay/Overlay.js +38 -0
- package/dist/components/Overlay/Overlay.types.d.ts +23 -0
- package/dist/components/Overlay/index.d.ts +2 -0
- package/dist/components/PhoneInput/PhoneInput.cjs +1 -1
- package/dist/components/PhoneInput/PhoneInput.const.cjs +1 -1
- package/dist/components/PhoneInput/PhoneInput.const.d.ts +1 -1
- package/dist/components/PhoneInput/PhoneInput.const.js +1 -1
- package/dist/components/PhoneInput/PhoneInput.js +88 -83
- package/dist/components/Popconfirm/Popconfirm.cjs +1 -1
- package/dist/components/Popconfirm/Popconfirm.const.cjs +1 -1
- package/dist/components/Popconfirm/Popconfirm.const.d.ts +1 -3
- package/dist/components/Popconfirm/Popconfirm.const.js +12 -18
- package/dist/components/Popconfirm/Popconfirm.js +71 -51
- package/dist/components/Popover/Popover.cjs +1 -1
- package/dist/components/Popover/Popover.js +36 -31
- package/dist/components/Portal/Portal.cjs +1 -0
- package/dist/components/Portal/Portal.d.ts +8 -0
- package/dist/components/Portal/Portal.js +6 -0
- package/dist/components/Portal/index.d.ts +2 -0
- package/dist/components/Select/Select.cjs +1 -1
- package/dist/components/Select/Select.js +71 -51
- package/dist/components/Stepper/Stepper.cjs +1 -1
- package/dist/components/Stepper/Stepper.const.cjs +1 -1
- package/dist/components/Stepper/Stepper.const.d.ts +3 -2
- package/dist/components/Stepper/Stepper.const.js +15 -14
- package/dist/components/Stepper/Stepper.d.ts +0 -7
- package/dist/components/Stepper/Stepper.js +164 -117
- package/dist/components/Stepper/Stepper.types.d.ts +3 -0
- package/dist/components/Tabs/TabList.cjs +1 -1
- package/dist/components/Tabs/TabList.js +72 -57
- package/dist/components/Tabs/Tabs.types.d.ts +4 -2
- package/dist/components/Tabs/index.d.ts +2 -2
- package/dist/components/ThemeIcon/ThemeIcon.cjs +1 -0
- package/dist/components/ThemeIcon/ThemeIcon.d.ts +4 -0
- package/dist/components/ThemeIcon/ThemeIcon.js +54 -0
- package/dist/components/ThemeIcon/ThemeIcon.types.d.ts +22 -0
- package/dist/components/ThemeIcon/index.d.ts +2 -0
- package/dist/components/TimePicker/components/TimePickerDialDropdown/TimePickerDialDropdown.cjs +1 -1
- package/dist/components/TimePicker/components/TimePickerDialDropdown/TimePickerDialDropdown.js +26 -26
- package/dist/components/TimePicker/helpers/ClockFaceSvg.cjs +1 -1
- package/dist/components/TimePicker/helpers/ClockFaceSvg.js +17 -17
- package/dist/components/Toast/Toast.cjs +1 -1
- package/dist/components/Toast/Toast.js +86 -82
- package/dist/components/Toast/Toast.types.d.ts +2 -0
- package/dist/components/Tooltip/Tooltip.cjs +1 -1
- package/dist/components/Tooltip/Tooltip.js +52 -44
- package/dist/components/TreeSelect/TreeSelect.cjs +1 -1
- package/dist/components/TreeSelect/TreeSelect.const.cjs +1 -1
- package/dist/components/TreeSelect/TreeSelect.const.d.ts +1 -1
- package/dist/components/TreeSelect/TreeSelect.const.js +3 -3
- package/dist/components/TreeSelect/TreeSelect.js +120 -88
- package/dist/components/VisuallyHidden/VisuallyHidden.cjs +1 -0
- package/dist/components/VisuallyHidden/VisuallyHidden.d.ts +6 -0
- package/dist/components/VisuallyHidden/VisuallyHidden.js +22 -0
- package/dist/components/VisuallyHidden/index.d.ts +2 -0
- package/dist/components/Watermark/Watermark.cjs +1 -1
- package/dist/components/Watermark/Watermark.const.cjs +1 -1
- package/dist/components/Watermark/Watermark.const.d.ts +6 -3
- package/dist/components/Watermark/Watermark.const.js +13 -11
- package/dist/components/Watermark/Watermark.js +87 -61
- package/dist/components/Watermark/Watermark.types.d.ts +2 -0
- package/dist/components/index.cjs +1 -1
- package/dist/components/index.d.ts +15 -3
- package/dist/components/index.js +296 -280
- package/dist/hooks/bearStyled.cjs +1 -1
- package/dist/hooks/bearStyled.d.ts +31 -9
- package/dist/hooks/bearStyled.js +17 -12
- package/dist/hooks/index.cjs +1 -1
- package/dist/hooks/index.d.ts +1 -1
- package/dist/hooks/index.js +55 -54
- package/dist/hooks/useClickOutside.cjs +1 -1
- package/dist/hooks/useClickOutside.d.ts +4 -11
- package/dist/hooks/useClickOutside.js +26 -7
- package/dist/hooks/useMediaQuery/useMediaQuery.d.ts +9 -1
- package/dist/hooks/useResponsive.cjs +1 -1
- package/dist/hooks/useResponsive.d.ts +2 -17
- package/dist/hooks/useResponsive.js +47 -41
- package/dist/index.cjs +1 -1
- package/dist/index.js +383 -366
- package/dist/styles/_effects.css +26 -0
- package/dist/styles.css +1 -1
- package/dist/types/theme.types.d.ts +1 -0
- package/dist/utils/maxVisible.utils.cjs +1 -0
- package/dist/utils/maxVisible.utils.d.ts +12 -0
- package/dist/utils/maxVisible.utils.js +15 -0
- package/package.json +1 -1
- package/dist/components/HoverCard/HoverCard.utils.cjs +0 -1
- package/dist/components/HoverCard/HoverCard.utils.js +0 -23
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { IconProps } from '../Icon.types';
|
|
3
|
+
type IconComponent = FC<Omit<IconProps, 'children'>>;
|
|
4
|
+
export declare const ShoppingCartIcon: IconComponent;
|
|
5
|
+
export declare const ShoppingBagIcon: IconComponent;
|
|
6
|
+
export declare const CreditCardIcon: IconComponent;
|
|
7
|
+
export declare const DollarSignIcon: IconComponent;
|
|
8
|
+
export declare const EuroIcon: IconComponent;
|
|
9
|
+
export declare const PoundIcon: IconComponent;
|
|
10
|
+
export declare const WalletIcon: IconComponent;
|
|
11
|
+
export declare const ReceiptIcon: IconComponent;
|
|
12
|
+
export declare const TagIcon: IconComponent;
|
|
13
|
+
export declare const TagsIcon: IconComponent;
|
|
14
|
+
export declare const PercentIcon: IconComponent;
|
|
15
|
+
export declare const TrendUpIcon: IconComponent;
|
|
16
|
+
export declare const TrendDownIcon: IconComponent;
|
|
17
|
+
export declare const BarCodeIcon: IconComponent;
|
|
18
|
+
export declare const GiftIcon: IconComponent;
|
|
19
|
+
export declare const StoreIcon: IconComponent;
|
|
20
|
+
export declare const TruckIcon: IconComponent;
|
|
21
|
+
export declare const PackageIcon: IconComponent;
|
|
22
|
+
export declare const InvoiceIcon: IconComponent;
|
|
23
|
+
export declare const BriefcaseIcon: IconComponent;
|
|
24
|
+
export declare const BankIcon: IconComponent;
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,124 @@
|
|
|
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
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
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;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { IconProps } from '../Icon.types';
|
|
3
|
+
type IconComponent = FC<Omit<IconProps, 'children'>>;
|
|
4
|
+
export declare const MonitorIcon: IconComponent;
|
|
5
|
+
export declare const LaptopIcon: IconComponent;
|
|
6
|
+
export declare const TabletIcon: IconComponent;
|
|
7
|
+
export declare const SmartphoneIcon: IconComponent;
|
|
8
|
+
export declare const WatchIcon: IconComponent;
|
|
9
|
+
export declare const TvIcon: IconComponent;
|
|
10
|
+
export declare const SpeakerIcon: IconComponent;
|
|
11
|
+
export declare const HeadphonesIcon: IconComponent;
|
|
12
|
+
export declare const CameraIcon: IconComponent;
|
|
13
|
+
export declare const PrinterIcon: IconComponent;
|
|
14
|
+
export declare const ServerIcon: IconComponent;
|
|
15
|
+
export declare const DatabaseIcon: IconComponent;
|
|
16
|
+
export declare const CloudIcon: IconComponent;
|
|
17
|
+
export declare const CloudUploadIcon: IconComponent;
|
|
18
|
+
export declare const CloudDownloadIcon: IconComponent;
|
|
19
|
+
export declare const WifiIcon: IconComponent;
|
|
20
|
+
export declare const WifiOffIcon: IconComponent;
|
|
21
|
+
export declare const BluetoothIcon: IconComponent;
|
|
22
|
+
export declare const BatteryIcon: IconComponent;
|
|
23
|
+
export declare const BatteryChargingIcon: IconComponent;
|
|
24
|
+
export declare const UsbIcon: IconComponent;
|
|
25
|
+
export declare const CpuIcon: IconComponent;
|
|
26
|
+
export declare const HardDriveIcon: IconComponent;
|
|
27
|
+
export {};
|
|
@@ -0,0 +1,122 @@
|
|
|
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
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const s=require("react/jsx-runtime"),o=require("../Icon.cjs"),c=n=>s.jsxs(o.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"})]}),i=n=>s.jsxs(o.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"}),s.jsx("line",{x1:"16",y1:"13",x2:"8",y2:"13"}),s.jsx("line",{x1:"16",y1:"17",x2:"8",y2:"17"}),s.jsx("polyline",{points:"10 9 9 9 8 9"})]}),x=n=>s.jsxs(o.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"}),s.jsx("polyline",{points:"10 12 8 14 10 16"}),s.jsx("polyline",{points:"14 12 16 14 14 16"})]}),e=n=>s.jsxs(o.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"}),s.jsx("circle",{cx:"10",cy:"13",r:"2"}),s.jsx("path",{d:"M20 17l-1.09-1.09a2 2 0 0 0-2.82 0L10 22"})]}),l=n=>s.jsxs(o.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"}),s.jsx("polygon",{points:"10 11 14 14 10 17 10 11"})]}),a=n=>s.jsxs(o.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"}),s.jsx("path",{d:"M10 16s-1.5-2 0-4"}),s.jsx("path",{d:"M14 16s1.5-2 0-4"}),s.jsx("circle",{cx:"12",cy:"14",r:"1"})]}),h=n=>s.jsxs(o.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"}),s.jsx("path",{d:"M12 12v6"}),s.jsx("path",{d:"M10 12h4"}),s.jsx("path",{d:"M10 15h4"})]}),j=n=>s.jsxs(o.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"}),s.jsx("line",{x1:"8",y1:"13",x2:"16",y2:"13"}),s.jsx("line",{x1:"8",y1:"17",x2:"16",y2:"17"}),s.jsx("line",{x1:"12",y1:"11",x2:"12",y2:"19"})]}),t=n=>s.jsxs(o.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"}),s.jsx("path",{d:"M9 15v-2h1.5a1.5 1.5 0 0 1 0 3H9"}),s.jsx("path",{d:"M14 13v4h1a2 2 0 0 0 2-2v0a2 2 0 0 0-2-2h-1z"})]}),p=n=>s.jsxs(o.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"}),s.jsx("path",{d:"M8 16c0-1 .5-2 2-2"}),s.jsx("path",{d:"M14 14c1.5 0 2 1 2 2"}),s.jsx("circle",{cx:"12",cy:"15",r:"0.5"})]}),d=n=>s.jsxs(o.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"}),s.jsx("line",{x1:"12",y1:"18",x2:"12",y2:"12"}),s.jsx("line",{x1:"9",y1:"15",x2:"15",y2:"15"})]}),I=n=>s.jsxs(o.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"}),s.jsx("line",{x1:"9",y1:"15",x2:"15",y2:"15"})]}),r=n=>s.jsxs(o.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"}),s.jsx("line",{x1:"9.5",y1:"12.5",x2:"14.5",y2:"17.5"}),s.jsx("line",{x1:"14.5",y1:"12.5",x2:"9.5",y2:"17.5"})]}),y=n=>s.jsxs(o.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"}),s.jsx("polyline",{points:"9 15 11 17 15 13"})]}),F=n=>s.jsxs(o.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"}),s.jsx("circle",{cx:"11.5",cy:"14.5",r:"2.5"}),s.jsx("line",{x1:"13.25",y1:"16.25",x2:"15",y2:"18"})]}),M=n=>s.jsx(o.Icon,{...n,children:s.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"})}),v=n=>s.jsxs(o.Icon,{...n,children:[s.jsx("path",{d:"M5 19a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4l2 3h9a2 2 0 0 1 2 2v1"}),s.jsx("path",{d:"M20 10H8.5a2.5 2.5 0 0 0-2.4 1.8L4 19h14.2a2 2 0 0 0 1.9-1.4l2-6.6A1 1 0 0 0 21.1 10z"})]}),V=n=>s.jsxs(o.Icon,{...n,children:[s.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"}),s.jsx("line",{x1:"12",y1:"11",x2:"12",y2:"17"}),s.jsx("line",{x1:"9",y1:"14",x2:"15",y2:"14"})]}),H=n=>s.jsxs(o.Icon,{...n,children:[s.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"}),s.jsx("rect",{x:"8",y:"2",width:"8",height:"4",rx:"1",ry:"1"})]}),z=n=>s.jsxs(o.Icon,{...n,children:[s.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"}),s.jsx("rect",{x:"8",y:"2",width:"8",height:"4",rx:"1",ry:"1"}),s.jsx("polyline",{points:"9 14 11 16 15 12"})]}),u=n=>s.jsxs(o.Icon,{...n,children:[s.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"}),s.jsx("rect",{x:"8",y:"2",width:"8",height:"4",rx:"1",ry:"1"}),s.jsx("line",{x1:"8",y1:"12",x2:"16",y2:"12"}),s.jsx("line",{x1:"8",y1:"16",x2:"16",y2:"16"})]});exports.ClipboardCheckIcon=z;exports.ClipboardIcon=H;exports.ClipboardListIcon=u;exports.FileArchiveIcon=h;exports.FileAudioIcon=a;exports.FileCheckIcon=y;exports.FileCodeIcon=x;exports.FileIcon=c;exports.FileImageIcon=e;exports.FileJsonIcon=p;exports.FileMinusIcon=I;exports.FilePdfIcon=t;exports.FilePlusIcon=d;exports.FileSearchIcon=F;exports.FileSpreadsheetIcon=j;exports.FileTextIcon=i;exports.FileVideoIcon=l;exports.FileXIcon=r;exports.FolderIcon=M;exports.FolderOpenIcon=v;exports.FolderPlusIcon=V;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { IconProps } from '../Icon.types';
|
|
3
|
+
type IconComponent = FC<Omit<IconProps, 'children'>>;
|
|
4
|
+
export declare const FileIcon: IconComponent;
|
|
5
|
+
export declare const FileTextIcon: IconComponent;
|
|
6
|
+
export declare const FileCodeIcon: IconComponent;
|
|
7
|
+
export declare const FileImageIcon: IconComponent;
|
|
8
|
+
export declare const FileVideoIcon: IconComponent;
|
|
9
|
+
export declare const FileAudioIcon: IconComponent;
|
|
10
|
+
export declare const FileArchiveIcon: IconComponent;
|
|
11
|
+
export declare const FileSpreadsheetIcon: IconComponent;
|
|
12
|
+
export declare const FilePdfIcon: IconComponent;
|
|
13
|
+
export declare const FileJsonIcon: IconComponent;
|
|
14
|
+
export declare const FilePlusIcon: IconComponent;
|
|
15
|
+
export declare const FileMinusIcon: IconComponent;
|
|
16
|
+
export declare const FileXIcon: IconComponent;
|
|
17
|
+
export declare const FileCheckIcon: IconComponent;
|
|
18
|
+
export declare const FileSearchIcon: IconComponent;
|
|
19
|
+
export declare const FolderIcon: IconComponent;
|
|
20
|
+
export declare const FolderOpenIcon: IconComponent;
|
|
21
|
+
export declare const FolderPlusIcon: IconComponent;
|
|
22
|
+
export declare const ClipboardIcon: IconComponent;
|
|
23
|
+
export declare const ClipboardCheckIcon: IconComponent;
|
|
24
|
+
export declare const ClipboardListIcon: IconComponent;
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import { jsxs as l, jsx as n } from "react/jsx-runtime";
|
|
2
|
+
import { Icon as i } from "../Icon.js";
|
|
3
|
+
const e = (a) => /* @__PURE__ */ l(i, { ...a, children: [
|
|
4
|
+
/* @__PURE__ */ n("path", { d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" }),
|
|
5
|
+
/* @__PURE__ */ n("polyline", { points: "14 2 14 8 20 8" })
|
|
6
|
+
] }), c = (a) => /* @__PURE__ */ l(i, { ...a, 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
|
+
] }), t = (a) => /* @__PURE__ */ l(i, { ...a, 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("polyline", { points: "10 12 8 14 10 16" }),
|
|
16
|
+
/* @__PURE__ */ n("polyline", { points: "14 12 16 14 14 16" })
|
|
17
|
+
] }), p = (a) => /* @__PURE__ */ l(i, { ...a, 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("circle", { cx: "10", cy: "13", r: "2" }),
|
|
21
|
+
/* @__PURE__ */ n("path", { d: "M20 17l-1.09-1.09a2 2 0 0 0-2.82 0L10 22" })
|
|
22
|
+
] }), d = (a) => /* @__PURE__ */ l(i, { ...a, children: [
|
|
23
|
+
/* @__PURE__ */ n("path", { d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" }),
|
|
24
|
+
/* @__PURE__ */ n("polyline", { points: "14 2 14 8 20 8" }),
|
|
25
|
+
/* @__PURE__ */ n("polygon", { points: "10 11 14 14 10 17 10 11" })
|
|
26
|
+
] }), y = (a) => /* @__PURE__ */ l(i, { ...a, children: [
|
|
27
|
+
/* @__PURE__ */ n("path", { d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" }),
|
|
28
|
+
/* @__PURE__ */ n("polyline", { points: "14 2 14 8 20 8" }),
|
|
29
|
+
/* @__PURE__ */ n("path", { d: "M10 16s-1.5-2 0-4" }),
|
|
30
|
+
/* @__PURE__ */ n("path", { d: "M14 16s1.5-2 0-4" }),
|
|
31
|
+
/* @__PURE__ */ n("circle", { cx: "12", cy: "14", r: "1" })
|
|
32
|
+
] }), s = (a) => /* @__PURE__ */ l(i, { ...a, children: [
|
|
33
|
+
/* @__PURE__ */ n("path", { d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" }),
|
|
34
|
+
/* @__PURE__ */ n("polyline", { points: "14 2 14 8 20 8" }),
|
|
35
|
+
/* @__PURE__ */ n("path", { d: "M12 12v6" }),
|
|
36
|
+
/* @__PURE__ */ n("path", { d: "M10 12h4" }),
|
|
37
|
+
/* @__PURE__ */ n("path", { d: "M10 15h4" })
|
|
38
|
+
] }), r = (a) => /* @__PURE__ */ l(i, { ...a, children: [
|
|
39
|
+
/* @__PURE__ */ n("path", { d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" }),
|
|
40
|
+
/* @__PURE__ */ n("polyline", { points: "14 2 14 8 20 8" }),
|
|
41
|
+
/* @__PURE__ */ n("line", { x1: "8", y1: "13", x2: "16", y2: "13" }),
|
|
42
|
+
/* @__PURE__ */ n("line", { x1: "8", y1: "17", x2: "16", y2: "17" }),
|
|
43
|
+
/* @__PURE__ */ n("line", { x1: "12", y1: "11", x2: "12", y2: "19" })
|
|
44
|
+
] }), x = (a) => /* @__PURE__ */ l(i, { ...a, children: [
|
|
45
|
+
/* @__PURE__ */ n("path", { d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" }),
|
|
46
|
+
/* @__PURE__ */ n("polyline", { points: "14 2 14 8 20 8" }),
|
|
47
|
+
/* @__PURE__ */ n("path", { d: "M9 15v-2h1.5a1.5 1.5 0 0 1 0 3H9" }),
|
|
48
|
+
/* @__PURE__ */ n("path", { d: "M14 13v4h1a2 2 0 0 0 2-2v0a2 2 0 0 0-2-2h-1z" })
|
|
49
|
+
] }), M = (a) => /* @__PURE__ */ l(i, { ...a, children: [
|
|
50
|
+
/* @__PURE__ */ n("path", { d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" }),
|
|
51
|
+
/* @__PURE__ */ n("polyline", { points: "14 2 14 8 20 8" }),
|
|
52
|
+
/* @__PURE__ */ n("path", { d: "M8 16c0-1 .5-2 2-2" }),
|
|
53
|
+
/* @__PURE__ */ n("path", { d: "M14 14c1.5 0 2 1 2 2" }),
|
|
54
|
+
/* @__PURE__ */ n("circle", { cx: "12", cy: "15", r: "0.5" })
|
|
55
|
+
] }), v = (a) => /* @__PURE__ */ l(i, { ...a, children: [
|
|
56
|
+
/* @__PURE__ */ n("path", { d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" }),
|
|
57
|
+
/* @__PURE__ */ n("polyline", { points: "14 2 14 8 20 8" }),
|
|
58
|
+
/* @__PURE__ */ n("line", { x1: "12", y1: "18", x2: "12", y2: "12" }),
|
|
59
|
+
/* @__PURE__ */ n("line", { x1: "9", y1: "15", x2: "15", y2: "15" })
|
|
60
|
+
] }), I = (a) => /* @__PURE__ */ l(i, { ...a, children: [
|
|
61
|
+
/* @__PURE__ */ n("path", { d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" }),
|
|
62
|
+
/* @__PURE__ */ n("polyline", { points: "14 2 14 8 20 8" }),
|
|
63
|
+
/* @__PURE__ */ n("line", { x1: "9", y1: "15", x2: "15", y2: "15" })
|
|
64
|
+
] }), H = (a) => /* @__PURE__ */ l(i, { ...a, children: [
|
|
65
|
+
/* @__PURE__ */ n("path", { d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" }),
|
|
66
|
+
/* @__PURE__ */ n("polyline", { points: "14 2 14 8 20 8" }),
|
|
67
|
+
/* @__PURE__ */ n("line", { x1: "9.5", y1: "12.5", x2: "14.5", y2: "17.5" }),
|
|
68
|
+
/* @__PURE__ */ n("line", { x1: "14.5", y1: "12.5", x2: "9.5", y2: "17.5" })
|
|
69
|
+
] }), V = (a) => /* @__PURE__ */ l(i, { ...a, children: [
|
|
70
|
+
/* @__PURE__ */ n("path", { d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" }),
|
|
71
|
+
/* @__PURE__ */ n("polyline", { points: "14 2 14 8 20 8" }),
|
|
72
|
+
/* @__PURE__ */ n("polyline", { points: "9 15 11 17 15 13" })
|
|
73
|
+
] }), z = (a) => /* @__PURE__ */ l(i, { ...a, children: [
|
|
74
|
+
/* @__PURE__ */ n("path", { d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" }),
|
|
75
|
+
/* @__PURE__ */ n("polyline", { points: "14 2 14 8 20 8" }),
|
|
76
|
+
/* @__PURE__ */ n("circle", { cx: "11.5", cy: "14.5", r: "2.5" }),
|
|
77
|
+
/* @__PURE__ */ n("line", { x1: "13.25", y1: "16.25", x2: "15", y2: "18" })
|
|
78
|
+
] }), F = (a) => /* @__PURE__ */ n(i, { ...a, 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" }) }), C = (a) => /* @__PURE__ */ l(i, { ...a, children: [
|
|
79
|
+
/* @__PURE__ */ n("path", { d: "M5 19a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4l2 3h9a2 2 0 0 1 2 2v1" }),
|
|
80
|
+
/* @__PURE__ */ n("path", { d: "M20 10H8.5a2.5 2.5 0 0 0-2.4 1.8L4 19h14.2a2 2 0 0 0 1.9-1.4l2-6.6A1 1 0 0 0 21.1 10z" })
|
|
81
|
+
] }), g = (a) => /* @__PURE__ */ l(i, { ...a, children: [
|
|
82
|
+
/* @__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" }),
|
|
83
|
+
/* @__PURE__ */ n("line", { x1: "12", y1: "11", x2: "12", y2: "17" }),
|
|
84
|
+
/* @__PURE__ */ n("line", { x1: "9", y1: "14", x2: "15", y2: "14" })
|
|
85
|
+
] }), m = (a) => /* @__PURE__ */ l(i, { ...a, children: [
|
|
86
|
+
/* @__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" }),
|
|
87
|
+
/* @__PURE__ */ n("rect", { x: "8", y: "2", width: "8", height: "4", rx: "1", ry: "1" })
|
|
88
|
+
] }), u = (a) => /* @__PURE__ */ l(i, { ...a, children: [
|
|
89
|
+
/* @__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" }),
|
|
90
|
+
/* @__PURE__ */ n("rect", { x: "8", y: "2", width: "8", height: "4", rx: "1", ry: "1" }),
|
|
91
|
+
/* @__PURE__ */ n("polyline", { points: "9 14 11 16 15 12" })
|
|
92
|
+
] }), b = (a) => /* @__PURE__ */ l(i, { ...a, children: [
|
|
93
|
+
/* @__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" }),
|
|
94
|
+
/* @__PURE__ */ n("rect", { x: "8", y: "2", width: "8", height: "4", rx: "1", ry: "1" }),
|
|
95
|
+
/* @__PURE__ */ n("line", { x1: "8", y1: "12", x2: "16", y2: "12" }),
|
|
96
|
+
/* @__PURE__ */ n("line", { x1: "8", y1: "16", x2: "16", y2: "16" })
|
|
97
|
+
] });
|
|
98
|
+
export {
|
|
99
|
+
u as ClipboardCheckIcon,
|
|
100
|
+
m as ClipboardIcon,
|
|
101
|
+
b as ClipboardListIcon,
|
|
102
|
+
s as FileArchiveIcon,
|
|
103
|
+
y as FileAudioIcon,
|
|
104
|
+
V as FileCheckIcon,
|
|
105
|
+
t as FileCodeIcon,
|
|
106
|
+
e as FileIcon,
|
|
107
|
+
p as FileImageIcon,
|
|
108
|
+
M as FileJsonIcon,
|
|
109
|
+
I as FileMinusIcon,
|
|
110
|
+
x as FilePdfIcon,
|
|
111
|
+
v as FilePlusIcon,
|
|
112
|
+
z as FileSearchIcon,
|
|
113
|
+
r as FileSpreadsheetIcon,
|
|
114
|
+
c as FileTextIcon,
|
|
115
|
+
d as FileVideoIcon,
|
|
116
|
+
H as FileXIcon,
|
|
117
|
+
F as FolderIcon,
|
|
118
|
+
C as FolderOpenIcon,
|
|
119
|
+
g as FolderPlusIcon
|
|
120
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const c=require("react/jsx-runtime"),n=require("../Icon.cjs"),h=s=>c.jsx(n.Icon,{...s,children:c.jsx("path",{d:"M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"})}),x=s=>c.jsx(n.Icon,{...s,children:c.jsx("path",{d:"M22 4s-.7 2.1-2 3.4c1.6 10-9.4 17.3-18 11.6 2.2.1 4.4-.6 6-2C3 15.5.5 9.6 3 5c2.2 2.6 5.6 4.1 9 4-.9-4.2 4-6.6 7-3.8 1.1 0 3-1.2 3-1.2z"})}),o=s=>c.jsx(n.Icon,{...s,children:c.jsx("path",{d:"M4 4l6.5 8L4 20h2l5.5-6.8L16 20h4l-7-8.5L20 4h-2l-5 6.2L9 4H4z"})}),a=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("path",{d:"M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"}),c.jsx("rect",{x:"2",y:"9",width:"4",height:"12"}),c.jsx("circle",{cx:"4",cy:"4",r:"2"})]}),t=s=>c.jsx(n.Icon,{...s,children:c.jsx("path",{d:"M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"})}),j=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("rect",{x:"2",y:"2",width:"20",height:"20",rx:"5",ry:"5"}),c.jsx("path",{d:"M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"}),c.jsx("line",{x1:"17.5",y1:"6.5",x2:"17.51",y2:"6.5"})]}),e=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("path",{d:"M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19.1c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.43z"}),c.jsx("polygon",{points:"9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"})]}),d=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("path",{d:"M9.5 9.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z"}),c.jsx("path",{d:"M14.5 9.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z"}),c.jsx("path",{d:"M7.5 16.5s1.5 2 4.5 2 4.5-2 4.5-2"}),c.jsx("path",{d:"M20.3 4.7a19.8 19.8 0 0 0-4.9-1.5l-.6 1.2a18.3 18.3 0 0 0-5.6 0L8.6 3.2a19.8 19.8 0 0 0-4.9 1.5A20 20 0 0 0 .2 17.8a20.2 20.2 0 0 0 6.1 3.1l1.4-2.2a13.1 13.1 0 0 1-2.1-1l.5-.4a14.2 14.2 0 0 0 12 0l.5.4c-.7.4-1.4.7-2.1 1l1.4 2.2a20.2 20.2 0 0 0 6.1-3.1A20 20 0 0 0 20.3 4.7z"})]}),i=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("path",{d:"M14.5 2a2.5 2.5 0 0 0 0 5H17V4.5A2.5 2.5 0 0 0 14.5 2z"}),c.jsx("path",{d:"M20 9.5a2.5 2.5 0 0 0-5 0V12h2.5A2.5 2.5 0 0 0 20 9.5z"}),c.jsx("path",{d:"M9.5 22a2.5 2.5 0 0 0 0-5H7v2.5A2.5 2.5 0 0 0 9.5 22z"}),c.jsx("path",{d:"M4 14.5a2.5 2.5 0 0 0 5 0V12H6.5A2.5 2.5 0 0 0 4 14.5z"}),c.jsx("path",{d:"M17 14.5a2.5 2.5 0 0 1 5 0v2h-2.5a2.5 2.5 0 0 1-2.5-2.5h0z"}),c.jsx("path",{d:"M14.5 17a2.5 2.5 0 0 1 0 5H12v-2.5a2.5 2.5 0 0 1 2.5-2.5z"}),c.jsx("path",{d:"M7 9.5a2.5 2.5 0 0 1-5 0V7h2.5A2.5 2.5 0 0 1 7 9.5z"}),c.jsx("path",{d:"M9.5 7a2.5 2.5 0 0 1 0-5H12v2.5A2.5 2.5 0 0 1 9.5 7z"})]}),l=s=>c.jsx(n.Icon,{...s,children:c.jsx("path",{d:"M21 2H3v16h5v4l4-4h5l4-4V2zm-10 9V7m5 4V7"})}),I=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("circle",{cx:"12",cy:"14",r:"7"}),c.jsx("path",{d:"M19 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4z"}),c.jsx("path",{d:"M16.5 3l2 2"}),c.jsx("circle",{cx:"9",cy:"13",r:"1"}),c.jsx("circle",{cx:"15",cy:"13",r:"1"}),c.jsx("path",{d:"M9 17c1.5 1 4.5 1 6 0"})]}),r=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("rect",{x:"2",y:"5",width:"20",height:"14",rx:"0"}),c.jsx("path",{d:"M5 8v8h4v-6h2v6h2V8"}),c.jsx("path",{d:"M15 8v8h4V8h-2v6h-2V8"})]}),p=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("circle",{cx:"18",cy:"5",r:"3"}),c.jsx("circle",{cx:"6",cy:"12",r:"3"}),c.jsx("circle",{cx:"18",cy:"19",r:"3"}),c.jsx("line",{x1:"8.59",y1:"13.51",x2:"15.42",y2:"17.49"}),c.jsx("line",{x1:"15.41",y1:"6.51",x2:"8.59",y2:"10.49"})]}),M=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("polyline",{points:"7 11 12 6 17 11"}),c.jsx("path",{d:"M12 6v12"}),c.jsx("path",{d:"M5 18h14"})]}),y=s=>c.jsx(n.Icon,{...s,children:c.jsx("path",{d:"M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"})}),v=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("path",{d:"M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3H14z"}),c.jsx("path",{d:"M7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3"})]}),z=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("path",{d:"M10 15V19a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3H10z"}),c.jsx("path",{d:"M17 2h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17"})]}),A=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("circle",{cx:"12",cy:"12",r:"4"}),c.jsx("path",{d:"M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94"})]}),H=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("line",{x1:"4",y1:"9",x2:"20",y2:"9"}),c.jsx("line",{x1:"4",y1:"15",x2:"20",y2:"15"}),c.jsx("line",{x1:"10",y1:"3",x2:"8",y2:"21"}),c.jsx("line",{x1:"16",y1:"3",x2:"14",y2:"21"})]}),u=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("path",{d:"M4 11a9 9 0 0 1 9 9"}),c.jsx("path",{d:"M4 4a16 16 0 0 1 16 16"}),c.jsx("circle",{cx:"5",cy:"19",r:"1"})]});exports.AtSignIcon=A;exports.DiscordIcon=d;exports.FacebookIcon=t;exports.GithubIcon=h;exports.HashIcon=H;exports.HeartIcon=y;exports.InstagramIcon=j;exports.LinkedInIcon=a;exports.NpmIcon=r;exports.RedditIcon=I;exports.RssIcon=u;exports.Share2Icon=M;exports.ShareIcon=p;exports.SlackIcon=i;exports.ThumbsDownIcon=z;exports.ThumbsUpIcon=v;exports.TwitchIcon=l;exports.TwitterIcon=x;exports.XSocialIcon=o;exports.YoutubeIcon=e;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { IconProps } from '../Icon.types';
|
|
3
|
+
type IconComponent = FC<Omit<IconProps, 'children'>>;
|
|
4
|
+
export declare const GithubIcon: IconComponent;
|
|
5
|
+
export declare const TwitterIcon: IconComponent;
|
|
6
|
+
export declare const XSocialIcon: IconComponent;
|
|
7
|
+
export declare const LinkedInIcon: IconComponent;
|
|
8
|
+
export declare const FacebookIcon: IconComponent;
|
|
9
|
+
export declare const InstagramIcon: IconComponent;
|
|
10
|
+
export declare const YoutubeIcon: IconComponent;
|
|
11
|
+
export declare const DiscordIcon: IconComponent;
|
|
12
|
+
export declare const SlackIcon: IconComponent;
|
|
13
|
+
export declare const TwitchIcon: IconComponent;
|
|
14
|
+
export declare const RedditIcon: IconComponent;
|
|
15
|
+
export declare const NpmIcon: IconComponent;
|
|
16
|
+
export declare const ShareIcon: IconComponent;
|
|
17
|
+
export declare const Share2Icon: IconComponent;
|
|
18
|
+
export declare const HeartIcon: IconComponent;
|
|
19
|
+
export declare const ThumbsUpIcon: IconComponent;
|
|
20
|
+
export declare const ThumbsDownIcon: IconComponent;
|
|
21
|
+
export declare const AtSignIcon: IconComponent;
|
|
22
|
+
export declare const HashIcon: IconComponent;
|
|
23
|
+
export declare const RssIcon: IconComponent;
|
|
24
|
+
export {};
|