@forgedevstack/bear 1.1.8 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- 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/BearLogo/BearLogo.d.ts +2 -7
- package/dist/components/BearLogo/BearLogo.types.d.ts +15 -0
- package/dist/components/BearLogo/EmberLogo.d.ts +1 -8
- package/dist/components/BearLogo/index.d.ts +1 -2
- package/dist/components/Biometric/Biometric.cjs +1 -0
- package/dist/components/Biometric/Biometric.d.ts +3 -0
- package/dist/components/Biometric/Biometric.js +123 -0
- package/dist/components/Biometric/Biometric.types.d.ts +35 -0
- package/dist/components/Biometric/BiometricIcon.cjs +1 -0
- package/dist/components/Biometric/BiometricIcon.d.ts +3 -0
- package/dist/components/Biometric/BiometricIcon.js +45 -0
- package/dist/components/Biometric/index.d.ts +3 -0
- package/dist/components/Biometric/useBiometric.cjs +1 -0
- package/dist/components/Biometric/useBiometric.d.ts +2 -0
- package/dist/components/Biometric/useBiometric.js +21 -0
- package/dist/components/Calendar/Calendar.cjs +1 -1
- package/dist/components/Calendar/Calendar.js +3 -2
- 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/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.const.cjs +1 -1
- package/dist/components/DateRangePicker/DateRangePicker.const.js +12 -13
- package/dist/components/DateRangePicker/DateRangePicker.js +107 -81
- package/dist/components/Dropdown/Dropdown.cjs +1 -1
- package/dist/components/Dropdown/Dropdown.js +48 -44
- 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/index.cjs +1 -1
- package/dist/components/Icon/index.d.ts +93 -56
- package/dist/components/Icon/index.js +38 -26
- package/dist/components/Input/Input.cjs +1 -1
- package/dist/components/Input/Input.js +153 -101
- package/dist/components/Input/Input.types.d.ts +8 -2
- package/dist/components/Input/index.d.ts +1 -1
- 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/Popover/Popover.cjs +1 -1
- package/dist/components/Popover/Popover.js +76 -76
- package/dist/components/Portal/Portal.cjs +1 -0
- package/dist/components/Portal/Portal.d.ts +11 -0
- package/dist/components/Portal/Portal.js +12 -0
- package/dist/components/Portal/index.d.ts +2 -0
- package/dist/components/Select/Select.cjs +1 -1
- package/dist/components/Select/Select.js +41 -38
- package/dist/components/Tabs/TabList.cjs +1 -0
- package/dist/components/Tabs/TabList.d.ts +3 -0
- package/dist/components/Tabs/TabList.js +69 -0
- package/dist/components/Tabs/TabPanel.cjs +1 -0
- package/dist/components/Tabs/TabPanel.d.ts +3 -0
- package/dist/components/Tabs/TabPanel.js +13 -0
- package/dist/components/Tabs/Tabs.cjs +1 -1
- package/dist/components/Tabs/Tabs.d.ts +2 -27
- package/dist/components/Tabs/Tabs.js +42 -61
- package/dist/components/Tabs/Tabs.types.d.ts +4 -0
- package/dist/components/Tabs/index.d.ts +3 -1
- 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/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/index.cjs +1 -1
- package/dist/components/index.d.ts +15 -2
- package/dist/components/index.js +329 -312
- 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/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 +408 -391
- package/dist/styles/_effects.css +9 -0
- package/dist/styles.css +1 -1
- package/dist/types/theme.types.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const s=require("react/jsx-runtime"),r=require("react"),h=require("../../utils/cn.cjs"),B=require("../../hooks/useClickOutside.cjs");require("../../context/BearProvider.cjs");require("../../hooks/useBearComponent/useBearComponent.cjs");const K={xs:"bear-text-xs bear-py-1 bear-px-2",sm:"bear-text-sm bear-py-1.5 bear-px-3",md:"bear-text-sm bear-py-2 bear-px-3",lg:"bear-text-base bear-py-2.5 bear-px-4",xl:"bear-text-lg bear-py-3 bear-px-5"},U={"bottom-start":"bear-top-full bear-left-0 bear-mt-1","bottom-end":"bear-top-full bear-right-0 bear-mt-1",bottom:"bear-top-full bear-left-1/2 -bear-translate-x-1/2 bear-mt-1","top-start":"bear-bottom-full bear-left-0 bear-mb-1","top-end":"bear-bottom-full bear-right-0 bear-mb-1",top:"bear-bottom-full bear-left-1/2 -bear-translate-x-1/2 bear-mb-1",left:"bear-right-full bear-top-0 bear-mr-1",right:"bear-left-full bear-top-0 bear-ml-1"},V=({trigger:x,items:i,open:k,defaultOpen:j=!1,placement:N="bottom-start",offset:Z=4,matchWidth:S=!1,minWidth:D=150,maxHeight:I=300,size:R="md",closeOnSelect:y=!0,closeOnClickOutside:g=!0,disabled:m=!1,onOpenChange:u,className:q,testId:A,...L})=>{var C;const[M,W]=r.useState(j),[o,d]=r.useState(-1),w=r.useRef(null),z=r.useRef(null),E=r.useRef(null),p=k!==void 0,t=p?k:M,f=r.useCallback(e=>{p||W(e),u==null||u(e)},[p,u]),F=r.useCallback(()=>{m||f(!t)},[m,t,f]),n=r.useCallback(()=>{f(!1),d(-1)},[f]),v=r.useCallback(e=>{var b;e.disabled||e.divider||e.header||((b=e.onClick)==null||b.call(e),y&&!e.items&&n())},[y,n]),P=r.useCallback(()=>{t&&g&&n()},[t,g,n]);B.useClickOutside(w,P),r.useEffect(()=>{if(!t)return;const e=i.filter(a=>!a.disabled&&!a.divider&&!a.header),b=a=>{switch(a.key){case"Escape":a.preventDefault(),n();break;case"ArrowDown":a.preventDefault(),d(c=>{const l=c+1;return l>=e.length?0:l});break;case"ArrowUp":a.preventDefault(),d(c=>{const l=c-1;return l<0?e.length-1:l});break;case"Enter":case" ":a.preventDefault(),o>=0&&o<e.length&&v(e[o]);break}};return document.addEventListener("keydown",b),()=>document.removeEventListener("keydown",b)},[t,i,o,n,v]),r.useEffect(()=>{t||d(-1)},[t]);const T=(e,b)=>{if(e.divider)return s.jsx("div",{className:"bear-my-1 bear-mx-2 bear-h-px",style:{backgroundColor:"var(--bear-border-default)"},role:"separator"},e.key);if(e.header)return s.jsx("div",{className:"bear-px-3 bear-py-1.5 bear-text-xs bear-font-semibold bear-uppercase bear-tracking-wider",style:{color:"var(--bear-text-muted)"},children:e.label},e.key);const a=i.slice(0,b).filter(l=>!l.disabled&&!l.divider&&!l.header).length,c=o===a;return s.jsxs("button",{type:"button",role:"menuitem",disabled:e.disabled,onClick:()=>v(e),onMouseEnter:()=>d(a),className:h.cn("bear-w-full bear-flex bear-items-center bear-gap-2 bear-text-left bear-border-none bear-bg-transparent",K[R],"bear-transition-colors bear-cursor-pointer",c&&!e.danger&&"bear-bg-[var(--bear-bg-tertiary)]",e.danger&&"bear-text-red-600 dark:bear-text-red-400 hover:bear-bg-red-50 dark:hover:bear-bg-red-900/20",!e.danger&&!e.disabled&&"hover:bear-bg-[var(--bear-bg-tertiary)]",e.disabled&&"bear-opacity-50 bear-cursor-not-allowed bear-pointer-events-none"),style:e.disabled?{color:"var(--bear-text-muted)"}:e.danger?void 0:{color:"var(--bear-text-secondary)"},children:[e.icon&&s.jsx("span",{className:"bear-flex-shrink-0 bear-w-5 bear-h-5 bear-flex bear-items-center bear-justify-center",children:e.icon}),s.jsx("span",{className:"bear-flex-1",children:e.label}),e.trailing&&s.jsx("span",{className:"bear-flex-shrink-0",style:{color:"var(--bear-text-muted)"},children:e.trailing}),e.items&&s.jsx("svg",{className:"bear-w-4 bear-h-4 bear-flex-shrink-0",style:{color:"var(--bear-text-muted)"},viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",children:s.jsx("polyline",{points:"9 18 15 12 9 6"})})]},e.key)},_=r.isValidElement(x)?r.cloneElement(x,{onClick:F,ref:E,"aria-expanded":t,"aria-haspopup":!0}):x;return s.jsxs("div",{ref:w,className:h.cn("bear-relative bear-inline-block",q),"data-testid":A,...L,children:[_,t&&s.jsx("div",{ref:z,role:"menu",className:h.cn("bear-absolute bear-z-50","bear-border bear-rounded-lg bear-shadow-lg","bear-py-1 bear-overflow-y-auto","bear-animate-in bear-fade-in-0 bear-zoom-in-95 bear-duration-100",U[N]),style:{backgroundColor:"var(--bear-bg-primary)",borderColor:"var(--bear-border-default)",minWidth:S?(C=E.current)==null?void 0:C.offsetWidth:D,maxHeight:I},children:i.map((e,b)=>T(e,b))})]})};exports.Dropdown=V;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { useState as
|
|
3
|
-
import { cn as
|
|
1
|
+
import { jsxs as I, jsx as o } from "react/jsx-runtime";
|
|
2
|
+
import { useState as D, useRef as v, useCallback as c, useEffect as S, isValidElement as q, cloneElement as G } from "react";
|
|
3
|
+
import { cn as h } from "../../utils/cn.js";
|
|
4
4
|
import { useClickOutside as H } from "../../hooks/useClickOutside.js";
|
|
5
5
|
import "../../context/BearProvider.js";
|
|
6
6
|
import "../../hooks/useBearComponent/useBearComponent.js";
|
|
@@ -21,8 +21,8 @@ const J = {
|
|
|
21
21
|
right: "bear-left-full bear-top-0 bear-ml-1"
|
|
22
22
|
}, te = ({
|
|
23
23
|
trigger: p,
|
|
24
|
-
items:
|
|
25
|
-
open:
|
|
24
|
+
items: i,
|
|
25
|
+
open: y,
|
|
26
26
|
defaultOpen: A = !1,
|
|
27
27
|
placement: L = "bottom-start",
|
|
28
28
|
offset: X = 4,
|
|
@@ -30,33 +30,33 @@ const J = {
|
|
|
30
30
|
minWidth: j = 150,
|
|
31
31
|
maxHeight: W = 300,
|
|
32
32
|
size: z = "md",
|
|
33
|
-
closeOnSelect:
|
|
34
|
-
closeOnClickOutside:
|
|
33
|
+
closeOnSelect: g = !0,
|
|
34
|
+
closeOnClickOutside: k = !0,
|
|
35
35
|
disabled: w = !1,
|
|
36
36
|
onOpenChange: f,
|
|
37
37
|
className: F,
|
|
38
38
|
testId: M,
|
|
39
39
|
..._
|
|
40
40
|
}) => {
|
|
41
|
-
var
|
|
42
|
-
const [B, K] =
|
|
41
|
+
var C;
|
|
42
|
+
const [B, K] = D(A), [n, s] = D(-1), E = v(null), P = v(null), N = v(null), x = y !== void 0, a = x ? y : B, u = c((e) => {
|
|
43
43
|
x || K(e), f == null || f(e);
|
|
44
|
-
}, [x, f]), T =
|
|
44
|
+
}, [x, f]), T = c(() => {
|
|
45
45
|
w || u(!a);
|
|
46
|
-
}, [w, a, u]),
|
|
46
|
+
}, [w, a, u]), l = c(() => {
|
|
47
47
|
u(!1), s(-1);
|
|
48
|
-
}, [u]),
|
|
48
|
+
}, [u]), m = c((e) => {
|
|
49
49
|
var t;
|
|
50
|
-
e.disabled || e.divider || e.header || ((t = e.onClick) == null || t.call(e),
|
|
51
|
-
}, [
|
|
52
|
-
a &&
|
|
53
|
-
}, [a,
|
|
54
|
-
H(E, U),
|
|
50
|
+
e.disabled || e.divider || e.header || ((t = e.onClick) == null || t.call(e), g && !e.items && l());
|
|
51
|
+
}, [g, l]), U = c(() => {
|
|
52
|
+
a && k && l();
|
|
53
|
+
}, [a, k, l]);
|
|
54
|
+
H(E, U), S(() => {
|
|
55
55
|
if (!a) return;
|
|
56
|
-
const e =
|
|
56
|
+
const e = i.filter((r) => !r.disabled && !r.divider && !r.header), t = (r) => {
|
|
57
57
|
switch (r.key) {
|
|
58
58
|
case "Escape":
|
|
59
|
-
r.preventDefault(),
|
|
59
|
+
r.preventDefault(), l();
|
|
60
60
|
break;
|
|
61
61
|
case "ArrowDown":
|
|
62
62
|
r.preventDefault(), s((d) => {
|
|
@@ -72,55 +72,59 @@ const J = {
|
|
|
72
72
|
break;
|
|
73
73
|
case "Enter":
|
|
74
74
|
case " ":
|
|
75
|
-
r.preventDefault(),
|
|
75
|
+
r.preventDefault(), n >= 0 && n < e.length && m(e[n]);
|
|
76
76
|
break;
|
|
77
77
|
}
|
|
78
78
|
};
|
|
79
79
|
return document.addEventListener("keydown", t), () => document.removeEventListener("keydown", t);
|
|
80
|
-
}, [a,
|
|
80
|
+
}, [a, i, n, l, m]), S(() => {
|
|
81
81
|
a || s(-1);
|
|
82
82
|
}, [a]);
|
|
83
83
|
const V = (e, t) => {
|
|
84
84
|
if (e.divider)
|
|
85
|
-
return /* @__PURE__ */
|
|
85
|
+
return /* @__PURE__ */ o(
|
|
86
86
|
"div",
|
|
87
87
|
{
|
|
88
|
-
className: "bear-my-1 bear-mx-2 bear-h-px
|
|
88
|
+
className: "bear-my-1 bear-mx-2 bear-h-px",
|
|
89
|
+
style: { backgroundColor: "var(--bear-border-default)" },
|
|
89
90
|
role: "separator"
|
|
90
91
|
},
|
|
91
92
|
e.key
|
|
92
93
|
);
|
|
93
94
|
if (e.header)
|
|
94
|
-
return /* @__PURE__ */
|
|
95
|
+
return /* @__PURE__ */ o(
|
|
95
96
|
"div",
|
|
96
97
|
{
|
|
97
|
-
className: "bear-px-3 bear-py-1.5 bear-text-xs bear-font-semibold bear-uppercase bear-tracking-wider
|
|
98
|
+
className: "bear-px-3 bear-py-1.5 bear-text-xs bear-font-semibold bear-uppercase bear-tracking-wider",
|
|
99
|
+
style: { color: "var(--bear-text-muted)" },
|
|
98
100
|
children: e.label
|
|
99
101
|
},
|
|
100
102
|
e.key
|
|
101
103
|
);
|
|
102
|
-
const r =
|
|
103
|
-
return /* @__PURE__ */
|
|
104
|
+
const r = i.slice(0, t).filter((b) => !b.disabled && !b.divider && !b.header).length, d = n === r;
|
|
105
|
+
return /* @__PURE__ */ I(
|
|
104
106
|
"button",
|
|
105
107
|
{
|
|
106
108
|
type: "button",
|
|
107
109
|
role: "menuitem",
|
|
108
110
|
disabled: e.disabled,
|
|
109
|
-
onClick: () =>
|
|
111
|
+
onClick: () => m(e),
|
|
110
112
|
onMouseEnter: () => s(r),
|
|
111
|
-
className:
|
|
113
|
+
className: h(
|
|
112
114
|
"bear-w-full bear-flex bear-items-center bear-gap-2 bear-text-left bear-border-none bear-bg-transparent",
|
|
113
115
|
J[z],
|
|
114
116
|
"bear-transition-colors bear-cursor-pointer",
|
|
115
|
-
d && "bear-bg-
|
|
116
|
-
e.danger
|
|
117
|
+
d && !e.danger && "bear-bg-[var(--bear-bg-tertiary)]",
|
|
118
|
+
e.danger && "bear-text-red-600 dark:bear-text-red-400 hover:bear-bg-red-50 dark:hover:bear-bg-red-900/20",
|
|
119
|
+
!e.danger && !e.disabled && "hover:bear-bg-[var(--bear-bg-tertiary)]",
|
|
117
120
|
e.disabled && "bear-opacity-50 bear-cursor-not-allowed bear-pointer-events-none"
|
|
118
121
|
),
|
|
122
|
+
style: e.disabled ? { color: "var(--bear-text-muted)" } : e.danger ? void 0 : { color: "var(--bear-text-secondary)" },
|
|
119
123
|
children: [
|
|
120
|
-
e.icon && /* @__PURE__ */
|
|
121
|
-
/* @__PURE__ */
|
|
122
|
-
e.trailing && /* @__PURE__ */
|
|
123
|
-
e.items && /* @__PURE__ */
|
|
124
|
+
e.icon && /* @__PURE__ */ o("span", { className: "bear-flex-shrink-0 bear-w-5 bear-h-5 bear-flex bear-items-center bear-justify-center", children: e.icon }),
|
|
125
|
+
/* @__PURE__ */ o("span", { className: "bear-flex-1", children: e.label }),
|
|
126
|
+
e.trailing && /* @__PURE__ */ o("span", { className: "bear-flex-shrink-0", style: { color: "var(--bear-text-muted)" }, children: e.trailing }),
|
|
127
|
+
e.items && /* @__PURE__ */ o("svg", { className: "bear-w-4 bear-h-4 bear-flex-shrink-0", style: { color: "var(--bear-text-muted)" }, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ o("polyline", { points: "9 18 15 12 9 6" }) })
|
|
124
128
|
]
|
|
125
129
|
},
|
|
126
130
|
e.key
|
|
@@ -131,34 +135,34 @@ const J = {
|
|
|
131
135
|
"aria-expanded": a,
|
|
132
136
|
"aria-haspopup": !0
|
|
133
137
|
}) : p;
|
|
134
|
-
return /* @__PURE__ */
|
|
138
|
+
return /* @__PURE__ */ I(
|
|
135
139
|
"div",
|
|
136
140
|
{
|
|
137
141
|
ref: E,
|
|
138
|
-
className:
|
|
142
|
+
className: h("bear-relative bear-inline-block", F),
|
|
139
143
|
"data-testid": M,
|
|
140
144
|
..._,
|
|
141
145
|
children: [
|
|
142
146
|
Z,
|
|
143
|
-
a && /* @__PURE__ */
|
|
147
|
+
a && /* @__PURE__ */ o(
|
|
144
148
|
"div",
|
|
145
149
|
{
|
|
146
150
|
ref: P,
|
|
147
151
|
role: "menu",
|
|
148
|
-
className:
|
|
152
|
+
className: h(
|
|
149
153
|
"bear-absolute bear-z-50",
|
|
150
|
-
"bear-
|
|
151
|
-
"bear-border bear-border-gray-200 dark:bear-border-gray-700",
|
|
152
|
-
"bear-rounded-lg bear-shadow-lg",
|
|
154
|
+
"bear-border bear-rounded-lg bear-shadow-lg",
|
|
153
155
|
"bear-py-1 bear-overflow-y-auto",
|
|
154
156
|
"bear-animate-in bear-fade-in-0 bear-zoom-in-95 bear-duration-100",
|
|
155
157
|
Q[L]
|
|
156
158
|
),
|
|
157
159
|
style: {
|
|
158
|
-
|
|
160
|
+
backgroundColor: "var(--bear-bg-primary)",
|
|
161
|
+
borderColor: "var(--bear-border-default)",
|
|
162
|
+
minWidth: R ? (C = N.current) == null ? void 0 : C.offsetWidth : j,
|
|
159
163
|
maxHeight: W
|
|
160
164
|
},
|
|
161
|
-
children:
|
|
165
|
+
children: i.map((e, t) => V(e, t))
|
|
162
166
|
}
|
|
163
167
|
)
|
|
164
168
|
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const n=require("react/jsx-runtime"),c=require("../Icon.cjs"),x=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("circle",{cx:"9",cy:"21",r:"1"}),n.jsx("circle",{cx:"20",cy:"21",r:"1"}),n.jsx("path",{d:"M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"})]}),o=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"}),n.jsx("line",{x1:"3",y1:"6",x2:"21",y2:"6"}),n.jsx("path",{d:"M16 10a4 4 0 0 1-8 0"})]}),t=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("rect",{x:"1",y:"4",width:"22",height:"16",rx:"2",ry:"2"}),n.jsx("line",{x1:"1",y1:"10",x2:"23",y2:"10"})]}),h=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("line",{x1:"12",y1:"1",x2:"12",y2:"23"}),n.jsx("path",{d:"M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"})]}),j=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M4 10h12"}),n.jsx("path",{d:"M4 14h12"}),n.jsx("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"})]}),a=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M4 18h12"}),n.jsx("path",{d:"M4 14h8"}),n.jsx("path",{d:"M17 4a4 4 0 0 0-7.4 2.1L8 18"})]}),e=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("rect",{x:"2",y:"6",width:"20",height:"14",rx:"2"}),n.jsx("path",{d:"M2 10h20"}),n.jsx("path",{d:"M16 14h2"})]}),i=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("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"}),n.jsx("line",{x1:"8",y1:"8",x2:"16",y2:"8"}),n.jsx("line",{x1:"8",y1:"12",x2:"16",y2:"12"}),n.jsx("line",{x1:"8",y1:"16",x2:"12",y2:"16"})]}),l=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"})]}),d=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"}),n.jsx("path",{d:"M22 7l-8.97 8.97"})]}),r=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("line",{x1:"19",y1:"5",x2:"5",y2:"19"}),n.jsx("circle",{cx:"6.5",cy:"6.5",r:"2.5"}),n.jsx("circle",{cx:"17.5",cy:"17.5",r:"2.5"})]}),p=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("polyline",{points:"23 6 13.5 15.5 8.5 10.5 1 18"}),n.jsx("polyline",{points:"17 6 23 6 23 12"})]}),I=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("polyline",{points:"23 18 13.5 8.5 8.5 13.5 1 6"}),n.jsx("polyline",{points:"17 18 23 18 23 12"})]}),y=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M3 5v14"}),n.jsx("path",{d:"M8 5v14"}),n.jsx("path",{d:"M12 5v14"}),n.jsx("path",{d:"M17 5v14"}),n.jsx("path",{d:"M21 5v14"}),n.jsx("path",{d:"M6 5v14"}),n.jsx("path",{d:"M14 5v14"}),n.jsx("path",{d:"M10 5v14"}),n.jsx("path",{d:"M19 5v14"})]}),M=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("polyline",{points:"20 12 20 22 4 22 4 12"}),n.jsx("rect",{x:"2",y:"7",width:"20",height:"5"}),n.jsx("line",{x1:"12",y1:"22",x2:"12",y2:"7"}),n.jsx("path",{d:"M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z"}),n.jsx("path",{d:"M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z"})]}),v=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M3 9l1-4h16l1 4"}),n.jsx("path",{d:"M3 9v10a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V9"}),n.jsx("path",{d:"M9 21V12h6v9"}),n.jsx("path",{d:"M3 9a3 3 0 0 0 3 3 3 3 0 0 0 3-3"}),n.jsx("path",{d:"M9 9a3 3 0 0 0 3 3 3 3 0 0 0 3-3"}),n.jsx("path",{d:"M15 9a3 3 0 0 0 3 3 3 3 0 0 0 3-3"})]}),g=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("rect",{x:"1",y:"3",width:"15",height:"13"}),n.jsx("polygon",{points:"16 8 20 8 23 11 23 16 16 16 16 8"}),n.jsx("circle",{cx:"5.5",cy:"18.5",r:"2.5"}),n.jsx("circle",{cx:"18.5",cy:"18.5",r:"2.5"})]}),u=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("line",{x1:"16.5",y1:"9.4",x2:"7.5",y2:"4.21"}),n.jsx("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"}),n.jsx("polyline",{points:"3.27 6.96 12 12.01 20.73 6.96"}),n.jsx("line",{x1:"12",y1:"22.08",x2:"12",y2:"12"})]}),T=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:"8",y1:"13",x2:"16",y2:"13"}),n.jsx("line",{x1:"8",y1:"17",x2:"12",y2:"17"}),n.jsx("line",{x1:"14",y1:"17",x2:"16",y2:"17"})]}),C=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("rect",{x:"2",y:"7",width:"20",height:"14",rx:"2",ry:"2"}),n.jsx("path",{d:"M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"})]}),S=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M3 22h18"}),n.jsx("path",{d:"M6 18v-4"}),n.jsx("path",{d:"M10 18v-4"}),n.jsx("path",{d:"M14 18v-4"}),n.jsx("path",{d:"M18 18v-4"}),n.jsx("path",{d:"M3 10l9-7 9 7"}),n.jsx("path",{d:"M3 10h18v4H3z"})]});exports.BankIcon=S;exports.BarCodeIcon=y;exports.BriefcaseIcon=C;exports.CreditCardIcon=t;exports.DollarSignIcon=h;exports.EuroIcon=j;exports.GiftIcon=M;exports.InvoiceIcon=T;exports.PackageIcon=u;exports.PercentIcon=r;exports.PoundIcon=a;exports.ReceiptIcon=i;exports.ShoppingBagIcon=o;exports.ShoppingCartIcon=x;exports.StoreIcon=v;exports.TagIcon=l;exports.TagsIcon=d;exports.TrendDownIcon=I;exports.TrendUpIcon=p;exports.TruckIcon=g;exports.WalletIcon=e;
|
|
@@ -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 {};
|