@ashmit72/mage-icons-react 0.1.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/dist/index.d.mts +55 -0
- package/dist/index.d.ts +55 -0
- package/dist/index.js +198 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +189 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +49 -0
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
interface IconProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {
|
|
5
|
+
size?: string | number;
|
|
6
|
+
strokeWidth?: string | number;
|
|
7
|
+
color?: string;
|
|
8
|
+
}
|
|
9
|
+
declare const Icon: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* verified-filled icon in filled style
|
|
13
|
+
* @category filled
|
|
14
|
+
*/
|
|
15
|
+
declare const VerifiedFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* dashboard icon in stroke style
|
|
19
|
+
* @category stroke
|
|
20
|
+
*/
|
|
21
|
+
declare const Dashboard: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* login icon in stroke style
|
|
25
|
+
* @category stroke
|
|
26
|
+
*/
|
|
27
|
+
declare const Login: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* moon icon in stroke style
|
|
31
|
+
* @category stroke
|
|
32
|
+
*/
|
|
33
|
+
declare const Moon: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* test icon in stroke style
|
|
37
|
+
* @category stroke
|
|
38
|
+
*/
|
|
39
|
+
declare const Test: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* trash icon in stroke style
|
|
43
|
+
* @category stroke
|
|
44
|
+
*/
|
|
45
|
+
declare const Trash: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* upload icon in stroke style
|
|
49
|
+
* @category stroke
|
|
50
|
+
*/
|
|
51
|
+
declare const Upload: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
52
|
+
|
|
53
|
+
type IconName = 'VerifiedFilled' | 'Dashboard' | 'Login' | 'Moon' | 'Test' | 'Trash' | 'Upload';
|
|
54
|
+
|
|
55
|
+
export { Dashboard, Icon, type IconName, type IconProps, Login, Moon, Test, Trash, Upload, VerifiedFilled };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
interface IconProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {
|
|
5
|
+
size?: string | number;
|
|
6
|
+
strokeWidth?: string | number;
|
|
7
|
+
color?: string;
|
|
8
|
+
}
|
|
9
|
+
declare const Icon: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* verified-filled icon in filled style
|
|
13
|
+
* @category filled
|
|
14
|
+
*/
|
|
15
|
+
declare const VerifiedFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* dashboard icon in stroke style
|
|
19
|
+
* @category stroke
|
|
20
|
+
*/
|
|
21
|
+
declare const Dashboard: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* login icon in stroke style
|
|
25
|
+
* @category stroke
|
|
26
|
+
*/
|
|
27
|
+
declare const Login: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* moon icon in stroke style
|
|
31
|
+
* @category stroke
|
|
32
|
+
*/
|
|
33
|
+
declare const Moon: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* test icon in stroke style
|
|
37
|
+
* @category stroke
|
|
38
|
+
*/
|
|
39
|
+
declare const Test: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* trash icon in stroke style
|
|
43
|
+
* @category stroke
|
|
44
|
+
*/
|
|
45
|
+
declare const Trash: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* upload icon in stroke style
|
|
49
|
+
* @category stroke
|
|
50
|
+
*/
|
|
51
|
+
declare const Upload: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
52
|
+
|
|
53
|
+
type IconName = 'VerifiedFilled' | 'Dashboard' | 'Login' | 'Moon' | 'Test' | 'Trash' | 'Upload';
|
|
54
|
+
|
|
55
|
+
export { Dashboard, Icon, type IconName, type IconProps, Login, Moon, Test, Trash, Upload, VerifiedFilled };
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var react = require('react');
|
|
4
|
+
var jsxRuntime = require('react/jsx-runtime');
|
|
5
|
+
|
|
6
|
+
var Icon = react.forwardRef(
|
|
7
|
+
({
|
|
8
|
+
color = "currentColor",
|
|
9
|
+
size = 24,
|
|
10
|
+
strokeWidth = 2,
|
|
11
|
+
className,
|
|
12
|
+
children,
|
|
13
|
+
...rest
|
|
14
|
+
}, ref) => {
|
|
15
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
16
|
+
"svg",
|
|
17
|
+
{
|
|
18
|
+
ref,
|
|
19
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
20
|
+
width: size,
|
|
21
|
+
height: size,
|
|
22
|
+
viewBox: "0 0 24 24",
|
|
23
|
+
fill: "none",
|
|
24
|
+
stroke: color,
|
|
25
|
+
strokeWidth,
|
|
26
|
+
strokeLinecap: "round",
|
|
27
|
+
strokeLinejoin: "round",
|
|
28
|
+
className,
|
|
29
|
+
...rest,
|
|
30
|
+
children
|
|
31
|
+
}
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
);
|
|
35
|
+
Icon.displayName = "Icon";
|
|
36
|
+
var VerifiedFilled = react.forwardRef(
|
|
37
|
+
({ size = 24, color = "currentColor", ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
38
|
+
"svg",
|
|
39
|
+
{
|
|
40
|
+
ref,
|
|
41
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
42
|
+
width: size,
|
|
43
|
+
height: size,
|
|
44
|
+
viewBox: "0 0 24 24",
|
|
45
|
+
fill: color,
|
|
46
|
+
...props,
|
|
47
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: "M22.02 11.164a1.84 1.84 0 0 0-.57-.67l-1.33-1a.35.35 0 0 1-.14-.2.36.36 0 0 1 0-.25l.55-1.63a2 2 0 0 0 .06-.9 1.8 1.8 0 0 0-.36-.84 1.86 1.86 0 0 0-.7-.57 1.75 1.75 0 0 0-.85-.17h-1.5a.41.41 0 0 1-.39-.3l-.43-1.5a1.9 1.9 0 0 0-.46-.81 2 2 0 0 0-.78-.49 2 2 0 0 0-.92-.06 1.9 1.9 0 0 0-.83.39l-1.14.9a.35.35 0 0 1-.23.09.36.36 0 0 1-.22-.05l-1.13-.9a1.85 1.85 0 0 0-.8-.38 1.9 1.9 0 0 0-.88 0 1.9 1.9 0 0 0-.78.43 2.1 2.1 0 0 0-.51.79l-.43 1.51a.38.38 0 0 1-.15.22.4.4 0 0 1-.27.07H5.41a1.9 1.9 0 0 0-.89.18 1.8 1.8 0 0 0-.71.57 1.9 1.9 0 0 0-.36.83c-.05.293-.03.595.06.88L4 8.993a.41.41 0 0 1-.14.45l-1.33 1c-.242.18-.44.412-.58.68a1.93 1.93 0 0 0 0 1.71 2 2 0 0 0 .58.68l1.33 1a.41.41 0 0 1 .14.45l-.55 1.63a2 2 0 0 0-.07.91c.05.298.174.58.36.82.183.25.428.45.71.58.265.126.557.184.85.17h1.49a.38.38 0 0 1 .25.08.34.34 0 0 1 .14.21l.43 1.51a2 2 0 0 0 .46.8 1.89 1.89 0 0 0 2.54.17l1.15-.91a.39.39 0 0 1 .49 0l1.13.9c.24.202.53.337.84.39q.17.015.34 0c.197 0 .393-.03.58-.09a1.87 1.87 0 0 0 1.24-1.28l.44-1.52a.34.34 0 0 1 .14-.21.4.4 0 0 1 .27-.08h1.43a2 2 0 0 0 .89-.17 1.91 1.91 0 0 0 1.06-1.4 1.9 1.9 0 0 0-.07-.92l-.54-1.62a.36.36 0 0 1 0-.25.35.35 0 0 1 .14-.2l1.33-1a1.9 1.9 0 0 0 .57-.68c.14-.266.212-.561.21-.86a1.9 1.9 0 0 0-.23-.78m-5.44-.76-4.42 4.42c-.171.167-.371.303-.59.4-.222.09-.46.138-.7.14a1.7 1.7 0 0 1-.71-.15 1.9 1.9 0 0 1-.6-.4l-2.18-2.19a1 1 0 0 1 1.41-1.41l2.08 2.08 4.3-4.31a1 1 0 0 1 1.41 0 1 1 0 0 1 0 1.46z" })
|
|
48
|
+
}
|
|
49
|
+
)
|
|
50
|
+
);
|
|
51
|
+
VerifiedFilled.displayName = "VerifiedFilled";
|
|
52
|
+
var Dashboard = react.forwardRef(
|
|
53
|
+
({ size = 24, color = "currentColor", strokeWidth = 2, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
54
|
+
"svg",
|
|
55
|
+
{
|
|
56
|
+
ref,
|
|
57
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
58
|
+
width: size,
|
|
59
|
+
height: size,
|
|
60
|
+
viewBox: "0 0 24 24",
|
|
61
|
+
fill: "none",
|
|
62
|
+
stroke: color,
|
|
63
|
+
strokeWidth,
|
|
64
|
+
strokeLinecap: "round",
|
|
65
|
+
strokeLinejoin: "round",
|
|
66
|
+
...props,
|
|
67
|
+
children: [
|
|
68
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { width: "18.5", height: "18.5", x: "2.75", y: "2.75", stroke: "currentColor", "stroke-width": "1.5", rx: "6" }),
|
|
69
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "currentColor", "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "1.5", d: "m7 15 2.45-3.26a1 1 0 0 1 1.33-.25L13.17 13a1 1 0 0 0 1.37-.29L17 9" })
|
|
70
|
+
]
|
|
71
|
+
}
|
|
72
|
+
)
|
|
73
|
+
);
|
|
74
|
+
Dashboard.displayName = "Dashboard";
|
|
75
|
+
var Login = react.forwardRef(
|
|
76
|
+
({ size = 24, color = "currentColor", strokeWidth = 2, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
77
|
+
"svg",
|
|
78
|
+
{
|
|
79
|
+
ref,
|
|
80
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
81
|
+
width: size,
|
|
82
|
+
height: size,
|
|
83
|
+
viewBox: "0 0 24 24",
|
|
84
|
+
fill: "none",
|
|
85
|
+
stroke: color,
|
|
86
|
+
strokeWidth,
|
|
87
|
+
strokeLinecap: "round",
|
|
88
|
+
strokeLinejoin: "round",
|
|
89
|
+
...props,
|
|
90
|
+
children: [
|
|
91
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "currentColor", "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "1.5", d: "M10.973 2.755h5.136a4.92 4.92 0 0 1 5.136 4.623v9.244a4.92 4.92 0 0 1-5.136 4.623h-5.136" }),
|
|
92
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "currentColor", "stroke-linecap": "round", "stroke-miterlimit": "10", "stroke-width": "1.5", d: "M16.109 12H2.755" }),
|
|
93
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "currentColor", "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "1.5", d: "m11.397 17.136 4.404-4.404a1.04 1.04 0 0 0 0-1.464l-4.405-4.404" })
|
|
94
|
+
]
|
|
95
|
+
}
|
|
96
|
+
)
|
|
97
|
+
);
|
|
98
|
+
Login.displayName = "Login";
|
|
99
|
+
var Moon = react.forwardRef(
|
|
100
|
+
({ size = 24, color = "currentColor", strokeWidth = 2, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
101
|
+
"svg",
|
|
102
|
+
{
|
|
103
|
+
ref,
|
|
104
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
105
|
+
width: size,
|
|
106
|
+
height: size,
|
|
107
|
+
viewBox: "0 0 24 24",
|
|
108
|
+
fill: "none",
|
|
109
|
+
stroke: color,
|
|
110
|
+
strokeWidth,
|
|
111
|
+
strokeLinecap: "round",
|
|
112
|
+
strokeLinejoin: "round",
|
|
113
|
+
...props,
|
|
114
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "currentColor", "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "1.5", d: "M21.182 14.86A9.474 9.474 0 1 1 9.139 2.819a1.053 1.053 0 0 1 1.38 1.295 7.7 7.7 0 0 0-.085 4.642 7 7 0 0 0 4.81 4.811c1.52.45 3.14.42 4.643-.084a1.053 1.053 0 0 1 1.295 1.379" })
|
|
115
|
+
}
|
|
116
|
+
)
|
|
117
|
+
);
|
|
118
|
+
Moon.displayName = "Moon";
|
|
119
|
+
var Test = react.forwardRef(
|
|
120
|
+
({ size = 24, color = "currentColor", strokeWidth = 2, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
121
|
+
"svg",
|
|
122
|
+
{
|
|
123
|
+
ref,
|
|
124
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
125
|
+
width: size,
|
|
126
|
+
height: size,
|
|
127
|
+
viewBox: "0 0 24 24",
|
|
128
|
+
fill: "none",
|
|
129
|
+
stroke: color,
|
|
130
|
+
strokeWidth,
|
|
131
|
+
strokeLinecap: "round",
|
|
132
|
+
strokeLinejoin: "round",
|
|
133
|
+
...props,
|
|
134
|
+
children: [
|
|
135
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }),
|
|
136
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m9 9 6 6M15 9l-6 6" })
|
|
137
|
+
]
|
|
138
|
+
}
|
|
139
|
+
)
|
|
140
|
+
);
|
|
141
|
+
Test.displayName = "Test";
|
|
142
|
+
var Trash = react.forwardRef(
|
|
143
|
+
({ size = 24, color = "currentColor", strokeWidth = 2, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
144
|
+
"svg",
|
|
145
|
+
{
|
|
146
|
+
ref,
|
|
147
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
148
|
+
width: size,
|
|
149
|
+
height: size,
|
|
150
|
+
viewBox: "0 0 24 24",
|
|
151
|
+
fill: "none",
|
|
152
|
+
stroke: color,
|
|
153
|
+
strokeWidth,
|
|
154
|
+
strokeLinecap: "round",
|
|
155
|
+
strokeLinejoin: "round",
|
|
156
|
+
...props,
|
|
157
|
+
children: [
|
|
158
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "currentColor", "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "1.5", d: "M5.47 6.015v12.514a2.72 2.72 0 0 0 2.721 2.721h7.618a2.72 2.72 0 0 0 2.72-2.72V6.014M3.294 6.015h17.412" }),
|
|
159
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "currentColor", "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "1.5", d: "M8.735 6.015V4.382a1.63 1.63 0 0 1 1.633-1.632h3.264a1.63 1.63 0 0 1 1.633 1.632v1.633" })
|
|
160
|
+
]
|
|
161
|
+
}
|
|
162
|
+
)
|
|
163
|
+
);
|
|
164
|
+
Trash.displayName = "Trash";
|
|
165
|
+
var Upload = react.forwardRef(
|
|
166
|
+
({ size = 24, color = "currentColor", strokeWidth = 2, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
167
|
+
"svg",
|
|
168
|
+
{
|
|
169
|
+
ref,
|
|
170
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
171
|
+
width: size,
|
|
172
|
+
height: size,
|
|
173
|
+
viewBox: "0 0 24 24",
|
|
174
|
+
fill: "none",
|
|
175
|
+
stroke: color,
|
|
176
|
+
strokeWidth,
|
|
177
|
+
strokeLinecap: "round",
|
|
178
|
+
strokeLinejoin: "round",
|
|
179
|
+
...props,
|
|
180
|
+
children: [
|
|
181
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "currentColor", "stroke-linecap": "round", "stroke-miterlimit": "10", "stroke-width": "1.5", d: "M12 3.212v12.026" }),
|
|
182
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "currentColor", "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "1.5", d: "M16.625 7.456 12.66 3.49a.937.937 0 0 0-1.318 0L7.375 7.456M2.75 13.85v4.625a2.31 2.31 0 0 0 2.313 2.313h13.875a2.31 2.31 0 0 0 2.312-2.313V13.85" })
|
|
183
|
+
]
|
|
184
|
+
}
|
|
185
|
+
)
|
|
186
|
+
);
|
|
187
|
+
Upload.displayName = "Upload";
|
|
188
|
+
|
|
189
|
+
exports.Dashboard = Dashboard;
|
|
190
|
+
exports.Icon = Icon;
|
|
191
|
+
exports.Login = Login;
|
|
192
|
+
exports.Moon = Moon;
|
|
193
|
+
exports.Test = Test;
|
|
194
|
+
exports.Trash = Trash;
|
|
195
|
+
exports.Upload = Upload;
|
|
196
|
+
exports.VerifiedFilled = VerifiedFilled;
|
|
197
|
+
//# sourceMappingURL=index.js.map
|
|
198
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/Icon.tsx","../src/filled/VerifiedFilled.tsx","../src/stroke/Dashboard.tsx","../src/stroke/Login.tsx","../src/stroke/Moon.tsx","../src/stroke/Test.tsx","../src/stroke/Trash.tsx","../src/stroke/Upload.tsx"],"names":["forwardRef","jsx","jsxs"],"mappings":"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","file":"index.js","sourcesContent":["import { forwardRef, SVGProps } from 'react';\n\nexport interface IconProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n size?: string | number;\n strokeWidth?: string | number;\n color?: string;\n}\n\nexport const Icon = forwardRef<SVGSVGElement, IconProps>(\n (\n {\n color = 'currentColor',\n size = 24,\n strokeWidth = 2,\n className,\n children,\n ...rest\n },\n ref\n ) => {\n return (\n <svg\n ref={ref}\n xmlns=\"http://www.w3.org/2000/svg\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n className={className}\n {...rest}\n >\n {children}\n </svg>\n );\n }\n);\n\nIcon.displayName = 'Icon';","import { forwardRef } from 'react';\nimport type { IconProps } from '../Icon';\n\n/**\n * verified-filled icon in filled style\n * @category filled\n */\nexport const VerifiedFilled = forwardRef<SVGSVGElement, IconProps>(\n ({ size = 24, color = 'currentColor', ...props }, ref) => (\n <svg\n ref={ref}\n xmlns=\"http://www.w3.org/2000/svg\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n fill={color}\n {...props}\n >\n <path fill=\"currentColor\" d=\"M22.02 11.164a1.84 1.84 0 0 0-.57-.67l-1.33-1a.35.35 0 0 1-.14-.2.36.36 0 0 1 0-.25l.55-1.63a2 2 0 0 0 .06-.9 1.8 1.8 0 0 0-.36-.84 1.86 1.86 0 0 0-.7-.57 1.75 1.75 0 0 0-.85-.17h-1.5a.41.41 0 0 1-.39-.3l-.43-1.5a1.9 1.9 0 0 0-.46-.81 2 2 0 0 0-.78-.49 2 2 0 0 0-.92-.06 1.9 1.9 0 0 0-.83.39l-1.14.9a.35.35 0 0 1-.23.09.36.36 0 0 1-.22-.05l-1.13-.9a1.85 1.85 0 0 0-.8-.38 1.9 1.9 0 0 0-.88 0 1.9 1.9 0 0 0-.78.43 2.1 2.1 0 0 0-.51.79l-.43 1.51a.38.38 0 0 1-.15.22.4.4 0 0 1-.27.07H5.41a1.9 1.9 0 0 0-.89.18 1.8 1.8 0 0 0-.71.57 1.9 1.9 0 0 0-.36.83c-.05.293-.03.595.06.88L4 8.993a.41.41 0 0 1-.14.45l-1.33 1c-.242.18-.44.412-.58.68a1.93 1.93 0 0 0 0 1.71 2 2 0 0 0 .58.68l1.33 1a.41.41 0 0 1 .14.45l-.55 1.63a2 2 0 0 0-.07.91c.05.298.174.58.36.82.183.25.428.45.71.58.265.126.557.184.85.17h1.49a.38.38 0 0 1 .25.08.34.34 0 0 1 .14.21l.43 1.51a2 2 0 0 0 .46.8 1.89 1.89 0 0 0 2.54.17l1.15-.91a.39.39 0 0 1 .49 0l1.13.9c.24.202.53.337.84.39q.17.015.34 0c.197 0 .393-.03.58-.09a1.87 1.87 0 0 0 1.24-1.28l.44-1.52a.34.34 0 0 1 .14-.21.4.4 0 0 1 .27-.08h1.43a2 2 0 0 0 .89-.17 1.91 1.91 0 0 0 1.06-1.4 1.9 1.9 0 0 0-.07-.92l-.54-1.62a.36.36 0 0 1 0-.25.35.35 0 0 1 .14-.2l1.33-1a1.9 1.9 0 0 0 .57-.68c.14-.266.212-.561.21-.86a1.9 1.9 0 0 0-.23-.78m-5.44-.76-4.42 4.42c-.171.167-.371.303-.59.4-.222.09-.46.138-.7.14a1.7 1.7 0 0 1-.71-.15 1.9 1.9 0 0 1-.6-.4l-2.18-2.19a1 1 0 0 1 1.41-1.41l2.08 2.08 4.3-4.31a1 1 0 0 1 1.41 0 1 1 0 0 1 0 1.46z\"/>\n </svg>\n )\n);\n\nVerifiedFilled.displayName = 'VerifiedFilled';\n","import { forwardRef } from 'react';\nimport type { IconProps } from '../Icon';\n\n/**\n * dashboard icon in stroke style\n * @category stroke\n */\nexport const Dashboard = forwardRef<SVGSVGElement, IconProps>(\n ({ size = 24, color = 'currentColor', strokeWidth = 2, ...props }, ref) => (\n <svg\n ref={ref}\n xmlns=\"http://www.w3.org/2000/svg\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n {...props}\n >\n <rect width=\"18.5\" height=\"18.5\" x=\"2.75\" y=\"2.75\" stroke=\"currentColor\" stroke-width=\"1.5\" rx=\"6\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m7 15 2.45-3.26a1 1 0 0 1 1.33-.25L13.17 13a1 1 0 0 0 1.37-.29L17 9\"/>\n </svg>\n )\n);\n\nDashboard.displayName = 'Dashboard';\n","import { forwardRef } from 'react';\nimport type { IconProps } from '../Icon';\n\n/**\n * login icon in stroke style\n * @category stroke\n */\nexport const Login = forwardRef<SVGSVGElement, IconProps>(\n ({ size = 24, color = 'currentColor', strokeWidth = 2, ...props }, ref) => (\n <svg\n ref={ref}\n xmlns=\"http://www.w3.org/2000/svg\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n {...props}\n >\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M10.973 2.755h5.136a4.92 4.92 0 0 1 5.136 4.623v9.244a4.92 4.92 0 0 1-5.136 4.623h-5.136\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"1.5\" d=\"M16.109 12H2.755\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m11.397 17.136 4.404-4.404a1.04 1.04 0 0 0 0-1.464l-4.405-4.404\"/>\n </svg>\n )\n);\n\nLogin.displayName = 'Login';\n","import { forwardRef } from 'react';\nimport type { IconProps } from '../Icon';\n\n/**\n * moon icon in stroke style\n * @category stroke\n */\nexport const Moon = forwardRef<SVGSVGElement, IconProps>(\n ({ size = 24, color = 'currentColor', strokeWidth = 2, ...props }, ref) => (\n <svg\n ref={ref}\n xmlns=\"http://www.w3.org/2000/svg\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n {...props}\n >\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M21.182 14.86A9.474 9.474 0 1 1 9.139 2.819a1.053 1.053 0 0 1 1.38 1.295 7.7 7.7 0 0 0-.085 4.642 7 7 0 0 0 4.81 4.811c1.52.45 3.14.42 4.643-.084a1.053 1.053 0 0 1 1.295 1.379\"/>\n </svg>\n )\n);\n\nMoon.displayName = 'Moon';\n","import { forwardRef } from 'react';\nimport type { IconProps } from '../Icon';\n\n/**\n * test icon in stroke style\n * @category stroke\n */\nexport const Test = forwardRef<SVGSVGElement, IconProps>(\n ({ size = 24, color = 'currentColor', strokeWidth = 2, ...props }, ref) => (\n <svg\n ref={ref}\n xmlns=\"http://www.w3.org/2000/svg\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n {...props}\n >\n <rect width=\"18\" height=\"18\" x=\"3\" y=\"3\" rx=\"2\" ry=\"2\"/><path d=\"m9 9 6 6M15 9l-6 6\"/>\n </svg>\n )\n);\n\nTest.displayName = 'Test';\n","import { forwardRef } from 'react';\nimport type { IconProps } from '../Icon';\n\n/**\n * trash icon in stroke style\n * @category stroke\n */\nexport const Trash = forwardRef<SVGSVGElement, IconProps>(\n ({ size = 24, color = 'currentColor', strokeWidth = 2, ...props }, ref) => (\n <svg\n ref={ref}\n xmlns=\"http://www.w3.org/2000/svg\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n {...props}\n >\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M5.47 6.015v12.514a2.72 2.72 0 0 0 2.721 2.721h7.618a2.72 2.72 0 0 0 2.72-2.72V6.014M3.294 6.015h17.412\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M8.735 6.015V4.382a1.63 1.63 0 0 1 1.633-1.632h3.264a1.63 1.63 0 0 1 1.633 1.632v1.633\"/>\n </svg>\n )\n);\n\nTrash.displayName = 'Trash';\n","import { forwardRef } from 'react';\nimport type { IconProps } from '../Icon';\n\n/**\n * upload icon in stroke style\n * @category stroke\n */\nexport const Upload = forwardRef<SVGSVGElement, IconProps>(\n ({ size = 24, color = 'currentColor', strokeWidth = 2, ...props }, ref) => (\n <svg\n ref={ref}\n xmlns=\"http://www.w3.org/2000/svg\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n {...props}\n >\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"1.5\" d=\"M12 3.212v12.026\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M16.625 7.456 12.66 3.49a.937.937 0 0 0-1.318 0L7.375 7.456M2.75 13.85v4.625a2.31 2.31 0 0 0 2.313 2.313h13.875a2.31 2.31 0 0 0 2.312-2.313V13.85\"/>\n </svg>\n )\n);\n\nUpload.displayName = 'Upload';\n"]}
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
import { forwardRef } from 'react';
|
|
2
|
+
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
3
|
+
|
|
4
|
+
var Icon = forwardRef(
|
|
5
|
+
({
|
|
6
|
+
color = "currentColor",
|
|
7
|
+
size = 24,
|
|
8
|
+
strokeWidth = 2,
|
|
9
|
+
className,
|
|
10
|
+
children,
|
|
11
|
+
...rest
|
|
12
|
+
}, ref) => {
|
|
13
|
+
return /* @__PURE__ */ jsx(
|
|
14
|
+
"svg",
|
|
15
|
+
{
|
|
16
|
+
ref,
|
|
17
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
18
|
+
width: size,
|
|
19
|
+
height: size,
|
|
20
|
+
viewBox: "0 0 24 24",
|
|
21
|
+
fill: "none",
|
|
22
|
+
stroke: color,
|
|
23
|
+
strokeWidth,
|
|
24
|
+
strokeLinecap: "round",
|
|
25
|
+
strokeLinejoin: "round",
|
|
26
|
+
className,
|
|
27
|
+
...rest,
|
|
28
|
+
children
|
|
29
|
+
}
|
|
30
|
+
);
|
|
31
|
+
}
|
|
32
|
+
);
|
|
33
|
+
Icon.displayName = "Icon";
|
|
34
|
+
var VerifiedFilled = forwardRef(
|
|
35
|
+
({ size = 24, color = "currentColor", ...props }, ref) => /* @__PURE__ */ jsx(
|
|
36
|
+
"svg",
|
|
37
|
+
{
|
|
38
|
+
ref,
|
|
39
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
40
|
+
width: size,
|
|
41
|
+
height: size,
|
|
42
|
+
viewBox: "0 0 24 24",
|
|
43
|
+
fill: color,
|
|
44
|
+
...props,
|
|
45
|
+
children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M22.02 11.164a1.84 1.84 0 0 0-.57-.67l-1.33-1a.35.35 0 0 1-.14-.2.36.36 0 0 1 0-.25l.55-1.63a2 2 0 0 0 .06-.9 1.8 1.8 0 0 0-.36-.84 1.86 1.86 0 0 0-.7-.57 1.75 1.75 0 0 0-.85-.17h-1.5a.41.41 0 0 1-.39-.3l-.43-1.5a1.9 1.9 0 0 0-.46-.81 2 2 0 0 0-.78-.49 2 2 0 0 0-.92-.06 1.9 1.9 0 0 0-.83.39l-1.14.9a.35.35 0 0 1-.23.09.36.36 0 0 1-.22-.05l-1.13-.9a1.85 1.85 0 0 0-.8-.38 1.9 1.9 0 0 0-.88 0 1.9 1.9 0 0 0-.78.43 2.1 2.1 0 0 0-.51.79l-.43 1.51a.38.38 0 0 1-.15.22.4.4 0 0 1-.27.07H5.41a1.9 1.9 0 0 0-.89.18 1.8 1.8 0 0 0-.71.57 1.9 1.9 0 0 0-.36.83c-.05.293-.03.595.06.88L4 8.993a.41.41 0 0 1-.14.45l-1.33 1c-.242.18-.44.412-.58.68a1.93 1.93 0 0 0 0 1.71 2 2 0 0 0 .58.68l1.33 1a.41.41 0 0 1 .14.45l-.55 1.63a2 2 0 0 0-.07.91c.05.298.174.58.36.82.183.25.428.45.71.58.265.126.557.184.85.17h1.49a.38.38 0 0 1 .25.08.34.34 0 0 1 .14.21l.43 1.51a2 2 0 0 0 .46.8 1.89 1.89 0 0 0 2.54.17l1.15-.91a.39.39 0 0 1 .49 0l1.13.9c.24.202.53.337.84.39q.17.015.34 0c.197 0 .393-.03.58-.09a1.87 1.87 0 0 0 1.24-1.28l.44-1.52a.34.34 0 0 1 .14-.21.4.4 0 0 1 .27-.08h1.43a2 2 0 0 0 .89-.17 1.91 1.91 0 0 0 1.06-1.4 1.9 1.9 0 0 0-.07-.92l-.54-1.62a.36.36 0 0 1 0-.25.35.35 0 0 1 .14-.2l1.33-1a1.9 1.9 0 0 0 .57-.68c.14-.266.212-.561.21-.86a1.9 1.9 0 0 0-.23-.78m-5.44-.76-4.42 4.42c-.171.167-.371.303-.59.4-.222.09-.46.138-.7.14a1.7 1.7 0 0 1-.71-.15 1.9 1.9 0 0 1-.6-.4l-2.18-2.19a1 1 0 0 1 1.41-1.41l2.08 2.08 4.3-4.31a1 1 0 0 1 1.41 0 1 1 0 0 1 0 1.46z" })
|
|
46
|
+
}
|
|
47
|
+
)
|
|
48
|
+
);
|
|
49
|
+
VerifiedFilled.displayName = "VerifiedFilled";
|
|
50
|
+
var Dashboard = forwardRef(
|
|
51
|
+
({ size = 24, color = "currentColor", strokeWidth = 2, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
52
|
+
"svg",
|
|
53
|
+
{
|
|
54
|
+
ref,
|
|
55
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
56
|
+
width: size,
|
|
57
|
+
height: size,
|
|
58
|
+
viewBox: "0 0 24 24",
|
|
59
|
+
fill: "none",
|
|
60
|
+
stroke: color,
|
|
61
|
+
strokeWidth,
|
|
62
|
+
strokeLinecap: "round",
|
|
63
|
+
strokeLinejoin: "round",
|
|
64
|
+
...props,
|
|
65
|
+
children: [
|
|
66
|
+
/* @__PURE__ */ jsx("rect", { width: "18.5", height: "18.5", x: "2.75", y: "2.75", stroke: "currentColor", "stroke-width": "1.5", rx: "6" }),
|
|
67
|
+
/* @__PURE__ */ jsx("path", { stroke: "currentColor", "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "1.5", d: "m7 15 2.45-3.26a1 1 0 0 1 1.33-.25L13.17 13a1 1 0 0 0 1.37-.29L17 9" })
|
|
68
|
+
]
|
|
69
|
+
}
|
|
70
|
+
)
|
|
71
|
+
);
|
|
72
|
+
Dashboard.displayName = "Dashboard";
|
|
73
|
+
var Login = forwardRef(
|
|
74
|
+
({ size = 24, color = "currentColor", strokeWidth = 2, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
75
|
+
"svg",
|
|
76
|
+
{
|
|
77
|
+
ref,
|
|
78
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
79
|
+
width: size,
|
|
80
|
+
height: size,
|
|
81
|
+
viewBox: "0 0 24 24",
|
|
82
|
+
fill: "none",
|
|
83
|
+
stroke: color,
|
|
84
|
+
strokeWidth,
|
|
85
|
+
strokeLinecap: "round",
|
|
86
|
+
strokeLinejoin: "round",
|
|
87
|
+
...props,
|
|
88
|
+
children: [
|
|
89
|
+
/* @__PURE__ */ jsx("path", { stroke: "currentColor", "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "1.5", d: "M10.973 2.755h5.136a4.92 4.92 0 0 1 5.136 4.623v9.244a4.92 4.92 0 0 1-5.136 4.623h-5.136" }),
|
|
90
|
+
/* @__PURE__ */ jsx("path", { stroke: "currentColor", "stroke-linecap": "round", "stroke-miterlimit": "10", "stroke-width": "1.5", d: "M16.109 12H2.755" }),
|
|
91
|
+
/* @__PURE__ */ jsx("path", { stroke: "currentColor", "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "1.5", d: "m11.397 17.136 4.404-4.404a1.04 1.04 0 0 0 0-1.464l-4.405-4.404" })
|
|
92
|
+
]
|
|
93
|
+
}
|
|
94
|
+
)
|
|
95
|
+
);
|
|
96
|
+
Login.displayName = "Login";
|
|
97
|
+
var Moon = forwardRef(
|
|
98
|
+
({ size = 24, color = "currentColor", strokeWidth = 2, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
99
|
+
"svg",
|
|
100
|
+
{
|
|
101
|
+
ref,
|
|
102
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
103
|
+
width: size,
|
|
104
|
+
height: size,
|
|
105
|
+
viewBox: "0 0 24 24",
|
|
106
|
+
fill: "none",
|
|
107
|
+
stroke: color,
|
|
108
|
+
strokeWidth,
|
|
109
|
+
strokeLinecap: "round",
|
|
110
|
+
strokeLinejoin: "round",
|
|
111
|
+
...props,
|
|
112
|
+
children: /* @__PURE__ */ jsx("path", { stroke: "currentColor", "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "1.5", d: "M21.182 14.86A9.474 9.474 0 1 1 9.139 2.819a1.053 1.053 0 0 1 1.38 1.295 7.7 7.7 0 0 0-.085 4.642 7 7 0 0 0 4.81 4.811c1.52.45 3.14.42 4.643-.084a1.053 1.053 0 0 1 1.295 1.379" })
|
|
113
|
+
}
|
|
114
|
+
)
|
|
115
|
+
);
|
|
116
|
+
Moon.displayName = "Moon";
|
|
117
|
+
var Test = forwardRef(
|
|
118
|
+
({ size = 24, color = "currentColor", strokeWidth = 2, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
119
|
+
"svg",
|
|
120
|
+
{
|
|
121
|
+
ref,
|
|
122
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
123
|
+
width: size,
|
|
124
|
+
height: size,
|
|
125
|
+
viewBox: "0 0 24 24",
|
|
126
|
+
fill: "none",
|
|
127
|
+
stroke: color,
|
|
128
|
+
strokeWidth,
|
|
129
|
+
strokeLinecap: "round",
|
|
130
|
+
strokeLinejoin: "round",
|
|
131
|
+
...props,
|
|
132
|
+
children: [
|
|
133
|
+
/* @__PURE__ */ jsx("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }),
|
|
134
|
+
/* @__PURE__ */ jsx("path", { d: "m9 9 6 6M15 9l-6 6" })
|
|
135
|
+
]
|
|
136
|
+
}
|
|
137
|
+
)
|
|
138
|
+
);
|
|
139
|
+
Test.displayName = "Test";
|
|
140
|
+
var Trash = forwardRef(
|
|
141
|
+
({ size = 24, color = "currentColor", strokeWidth = 2, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
142
|
+
"svg",
|
|
143
|
+
{
|
|
144
|
+
ref,
|
|
145
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
146
|
+
width: size,
|
|
147
|
+
height: size,
|
|
148
|
+
viewBox: "0 0 24 24",
|
|
149
|
+
fill: "none",
|
|
150
|
+
stroke: color,
|
|
151
|
+
strokeWidth,
|
|
152
|
+
strokeLinecap: "round",
|
|
153
|
+
strokeLinejoin: "round",
|
|
154
|
+
...props,
|
|
155
|
+
children: [
|
|
156
|
+
/* @__PURE__ */ jsx("path", { stroke: "currentColor", "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "1.5", d: "M5.47 6.015v12.514a2.72 2.72 0 0 0 2.721 2.721h7.618a2.72 2.72 0 0 0 2.72-2.72V6.014M3.294 6.015h17.412" }),
|
|
157
|
+
/* @__PURE__ */ jsx("path", { stroke: "currentColor", "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "1.5", d: "M8.735 6.015V4.382a1.63 1.63 0 0 1 1.633-1.632h3.264a1.63 1.63 0 0 1 1.633 1.632v1.633" })
|
|
158
|
+
]
|
|
159
|
+
}
|
|
160
|
+
)
|
|
161
|
+
);
|
|
162
|
+
Trash.displayName = "Trash";
|
|
163
|
+
var Upload = forwardRef(
|
|
164
|
+
({ size = 24, color = "currentColor", strokeWidth = 2, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
165
|
+
"svg",
|
|
166
|
+
{
|
|
167
|
+
ref,
|
|
168
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
169
|
+
width: size,
|
|
170
|
+
height: size,
|
|
171
|
+
viewBox: "0 0 24 24",
|
|
172
|
+
fill: "none",
|
|
173
|
+
stroke: color,
|
|
174
|
+
strokeWidth,
|
|
175
|
+
strokeLinecap: "round",
|
|
176
|
+
strokeLinejoin: "round",
|
|
177
|
+
...props,
|
|
178
|
+
children: [
|
|
179
|
+
/* @__PURE__ */ jsx("path", { stroke: "currentColor", "stroke-linecap": "round", "stroke-miterlimit": "10", "stroke-width": "1.5", d: "M12 3.212v12.026" }),
|
|
180
|
+
/* @__PURE__ */ jsx("path", { stroke: "currentColor", "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "1.5", d: "M16.625 7.456 12.66 3.49a.937.937 0 0 0-1.318 0L7.375 7.456M2.75 13.85v4.625a2.31 2.31 0 0 0 2.313 2.313h13.875a2.31 2.31 0 0 0 2.312-2.313V13.85" })
|
|
181
|
+
]
|
|
182
|
+
}
|
|
183
|
+
)
|
|
184
|
+
);
|
|
185
|
+
Upload.displayName = "Upload";
|
|
186
|
+
|
|
187
|
+
export { Dashboard, Icon, Login, Moon, Test, Trash, Upload, VerifiedFilled };
|
|
188
|
+
//# sourceMappingURL=index.mjs.map
|
|
189
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/Icon.tsx","../src/filled/VerifiedFilled.tsx","../src/stroke/Dashboard.tsx","../src/stroke/Login.tsx","../src/stroke/Moon.tsx","../src/stroke/Test.tsx","../src/stroke/Trash.tsx","../src/stroke/Upload.tsx"],"names":["forwardRef","jsx","jsxs"],"mappings":"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","file":"index.mjs","sourcesContent":["import { forwardRef, SVGProps } from 'react';\n\nexport interface IconProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n size?: string | number;\n strokeWidth?: string | number;\n color?: string;\n}\n\nexport const Icon = forwardRef<SVGSVGElement, IconProps>(\n (\n {\n color = 'currentColor',\n size = 24,\n strokeWidth = 2,\n className,\n children,\n ...rest\n },\n ref\n ) => {\n return (\n <svg\n ref={ref}\n xmlns=\"http://www.w3.org/2000/svg\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n className={className}\n {...rest}\n >\n {children}\n </svg>\n );\n }\n);\n\nIcon.displayName = 'Icon';","import { forwardRef } from 'react';\nimport type { IconProps } from '../Icon';\n\n/**\n * verified-filled icon in filled style\n * @category filled\n */\nexport const VerifiedFilled = forwardRef<SVGSVGElement, IconProps>(\n ({ size = 24, color = 'currentColor', ...props }, ref) => (\n <svg\n ref={ref}\n xmlns=\"http://www.w3.org/2000/svg\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n fill={color}\n {...props}\n >\n <path fill=\"currentColor\" d=\"M22.02 11.164a1.84 1.84 0 0 0-.57-.67l-1.33-1a.35.35 0 0 1-.14-.2.36.36 0 0 1 0-.25l.55-1.63a2 2 0 0 0 .06-.9 1.8 1.8 0 0 0-.36-.84 1.86 1.86 0 0 0-.7-.57 1.75 1.75 0 0 0-.85-.17h-1.5a.41.41 0 0 1-.39-.3l-.43-1.5a1.9 1.9 0 0 0-.46-.81 2 2 0 0 0-.78-.49 2 2 0 0 0-.92-.06 1.9 1.9 0 0 0-.83.39l-1.14.9a.35.35 0 0 1-.23.09.36.36 0 0 1-.22-.05l-1.13-.9a1.85 1.85 0 0 0-.8-.38 1.9 1.9 0 0 0-.88 0 1.9 1.9 0 0 0-.78.43 2.1 2.1 0 0 0-.51.79l-.43 1.51a.38.38 0 0 1-.15.22.4.4 0 0 1-.27.07H5.41a1.9 1.9 0 0 0-.89.18 1.8 1.8 0 0 0-.71.57 1.9 1.9 0 0 0-.36.83c-.05.293-.03.595.06.88L4 8.993a.41.41 0 0 1-.14.45l-1.33 1c-.242.18-.44.412-.58.68a1.93 1.93 0 0 0 0 1.71 2 2 0 0 0 .58.68l1.33 1a.41.41 0 0 1 .14.45l-.55 1.63a2 2 0 0 0-.07.91c.05.298.174.58.36.82.183.25.428.45.71.58.265.126.557.184.85.17h1.49a.38.38 0 0 1 .25.08.34.34 0 0 1 .14.21l.43 1.51a2 2 0 0 0 .46.8 1.89 1.89 0 0 0 2.54.17l1.15-.91a.39.39 0 0 1 .49 0l1.13.9c.24.202.53.337.84.39q.17.015.34 0c.197 0 .393-.03.58-.09a1.87 1.87 0 0 0 1.24-1.28l.44-1.52a.34.34 0 0 1 .14-.21.4.4 0 0 1 .27-.08h1.43a2 2 0 0 0 .89-.17 1.91 1.91 0 0 0 1.06-1.4 1.9 1.9 0 0 0-.07-.92l-.54-1.62a.36.36 0 0 1 0-.25.35.35 0 0 1 .14-.2l1.33-1a1.9 1.9 0 0 0 .57-.68c.14-.266.212-.561.21-.86a1.9 1.9 0 0 0-.23-.78m-5.44-.76-4.42 4.42c-.171.167-.371.303-.59.4-.222.09-.46.138-.7.14a1.7 1.7 0 0 1-.71-.15 1.9 1.9 0 0 1-.6-.4l-2.18-2.19a1 1 0 0 1 1.41-1.41l2.08 2.08 4.3-4.31a1 1 0 0 1 1.41 0 1 1 0 0 1 0 1.46z\"/>\n </svg>\n )\n);\n\nVerifiedFilled.displayName = 'VerifiedFilled';\n","import { forwardRef } from 'react';\nimport type { IconProps } from '../Icon';\n\n/**\n * dashboard icon in stroke style\n * @category stroke\n */\nexport const Dashboard = forwardRef<SVGSVGElement, IconProps>(\n ({ size = 24, color = 'currentColor', strokeWidth = 2, ...props }, ref) => (\n <svg\n ref={ref}\n xmlns=\"http://www.w3.org/2000/svg\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n {...props}\n >\n <rect width=\"18.5\" height=\"18.5\" x=\"2.75\" y=\"2.75\" stroke=\"currentColor\" stroke-width=\"1.5\" rx=\"6\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m7 15 2.45-3.26a1 1 0 0 1 1.33-.25L13.17 13a1 1 0 0 0 1.37-.29L17 9\"/>\n </svg>\n )\n);\n\nDashboard.displayName = 'Dashboard';\n","import { forwardRef } from 'react';\nimport type { IconProps } from '../Icon';\n\n/**\n * login icon in stroke style\n * @category stroke\n */\nexport const Login = forwardRef<SVGSVGElement, IconProps>(\n ({ size = 24, color = 'currentColor', strokeWidth = 2, ...props }, ref) => (\n <svg\n ref={ref}\n xmlns=\"http://www.w3.org/2000/svg\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n {...props}\n >\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M10.973 2.755h5.136a4.92 4.92 0 0 1 5.136 4.623v9.244a4.92 4.92 0 0 1-5.136 4.623h-5.136\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"1.5\" d=\"M16.109 12H2.755\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m11.397 17.136 4.404-4.404a1.04 1.04 0 0 0 0-1.464l-4.405-4.404\"/>\n </svg>\n )\n);\n\nLogin.displayName = 'Login';\n","import { forwardRef } from 'react';\nimport type { IconProps } from '../Icon';\n\n/**\n * moon icon in stroke style\n * @category stroke\n */\nexport const Moon = forwardRef<SVGSVGElement, IconProps>(\n ({ size = 24, color = 'currentColor', strokeWidth = 2, ...props }, ref) => (\n <svg\n ref={ref}\n xmlns=\"http://www.w3.org/2000/svg\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n {...props}\n >\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M21.182 14.86A9.474 9.474 0 1 1 9.139 2.819a1.053 1.053 0 0 1 1.38 1.295 7.7 7.7 0 0 0-.085 4.642 7 7 0 0 0 4.81 4.811c1.52.45 3.14.42 4.643-.084a1.053 1.053 0 0 1 1.295 1.379\"/>\n </svg>\n )\n);\n\nMoon.displayName = 'Moon';\n","import { forwardRef } from 'react';\nimport type { IconProps } from '../Icon';\n\n/**\n * test icon in stroke style\n * @category stroke\n */\nexport const Test = forwardRef<SVGSVGElement, IconProps>(\n ({ size = 24, color = 'currentColor', strokeWidth = 2, ...props }, ref) => (\n <svg\n ref={ref}\n xmlns=\"http://www.w3.org/2000/svg\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n {...props}\n >\n <rect width=\"18\" height=\"18\" x=\"3\" y=\"3\" rx=\"2\" ry=\"2\"/><path d=\"m9 9 6 6M15 9l-6 6\"/>\n </svg>\n )\n);\n\nTest.displayName = 'Test';\n","import { forwardRef } from 'react';\nimport type { IconProps } from '../Icon';\n\n/**\n * trash icon in stroke style\n * @category stroke\n */\nexport const Trash = forwardRef<SVGSVGElement, IconProps>(\n ({ size = 24, color = 'currentColor', strokeWidth = 2, ...props }, ref) => (\n <svg\n ref={ref}\n xmlns=\"http://www.w3.org/2000/svg\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n {...props}\n >\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M5.47 6.015v12.514a2.72 2.72 0 0 0 2.721 2.721h7.618a2.72 2.72 0 0 0 2.72-2.72V6.014M3.294 6.015h17.412\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M8.735 6.015V4.382a1.63 1.63 0 0 1 1.633-1.632h3.264a1.63 1.63 0 0 1 1.633 1.632v1.633\"/>\n </svg>\n )\n);\n\nTrash.displayName = 'Trash';\n","import { forwardRef } from 'react';\nimport type { IconProps } from '../Icon';\n\n/**\n * upload icon in stroke style\n * @category stroke\n */\nexport const Upload = forwardRef<SVGSVGElement, IconProps>(\n ({ size = 24, color = 'currentColor', strokeWidth = 2, ...props }, ref) => (\n <svg\n ref={ref}\n xmlns=\"http://www.w3.org/2000/svg\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n {...props}\n >\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"1.5\" d=\"M12 3.212v12.026\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M16.625 7.456 12.66 3.49a.937.937 0 0 0-1.318 0L7.375 7.456M2.75 13.85v4.625a2.31 2.31 0 0 0 2.313 2.313h13.875a2.31 2.31 0 0 0 2.312-2.313V13.85\"/>\n </svg>\n )\n);\n\nUpload.displayName = 'Upload';\n"]}
|
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ashmit72/mage-icons-react",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "React components for Prototype",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"sideEffects": false,
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "tsup",
|
|
21
|
+
"dev": "tsup --watch",
|
|
22
|
+
"clean": "rm -rf dist",
|
|
23
|
+
"lint": "eslint src --ext ts,tsx",
|
|
24
|
+
"check-types": "tsc --noEmit"
|
|
25
|
+
},
|
|
26
|
+
"peerDependencies": {
|
|
27
|
+
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@types/react": "^18.2.48",
|
|
31
|
+
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
32
|
+
"@typescript-eslint/parser": "^7.0.0",
|
|
33
|
+
"eslint": "^8.57.0",
|
|
34
|
+
"eslint-plugin-react": "^7.34.0",
|
|
35
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
36
|
+
"react": "^18.2.0",
|
|
37
|
+
"tsup": "^8.0.1",
|
|
38
|
+
"typescript": "^5.3.3"
|
|
39
|
+
},
|
|
40
|
+
"keywords": [
|
|
41
|
+
"react",
|
|
42
|
+
"icons",
|
|
43
|
+
"svg",
|
|
44
|
+
"mage-icons",
|
|
45
|
+
"filled",
|
|
46
|
+
"stroke"
|
|
47
|
+
],
|
|
48
|
+
"license": "MIT"
|
|
49
|
+
}
|