magick-icons 0.1.47 → 0.1.48

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/index.d.mts CHANGED
@@ -72,6 +72,42 @@ interface IconSizeProps extends React.SVGProps<SVGSVGElement> {
72
72
  */
73
73
  declare const IconSize: React.ForwardRefExoticComponent<Omit<IconSizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
74
74
 
75
+ /**
76
+ * Props for the Legal icon component
77
+ * @property {number | string} [size] - Size of the icon (default: 24)
78
+ */
79
+ interface LegalProps extends React.SVGProps<SVGSVGElement> {
80
+ size?: number | string;
81
+ }
82
+ /**
83
+ * Legal icon component
84
+ * @example
85
+ * ```tsx
86
+ * import { Legal } from 'magick-icons';
87
+ *
88
+ * <Legal size={24} className="text-blue-500" />
89
+ * ```
90
+ */
91
+ declare const Legal: React.ForwardRefExoticComponent<Omit<LegalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
92
+
93
+ /**
94
+ * Props for the LegalModule icon component
95
+ * @property {number | string} [size] - Size of the icon (default: 24)
96
+ */
97
+ interface LegalModuleProps extends React.SVGProps<SVGSVGElement> {
98
+ size?: number | string;
99
+ }
100
+ /**
101
+ * LegalModule icon component
102
+ * @example
103
+ * ```tsx
104
+ * import { LegalModule } from 'magick-icons';
105
+ *
106
+ * <LegalModule size={24} className="text-blue-500" />
107
+ * ```
108
+ */
109
+ declare const LegalModule: React.ForwardRefExoticComponent<Omit<LegalModuleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
110
+
75
111
  /**
76
112
  * Props for the Magicko3DotsMore icon component
77
113
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -126,4 +162,130 @@ interface MagickoChartProps extends React.SVGProps<SVGSVGElement> {
126
162
  */
127
163
  declare const MagickoChart: React.ForwardRefExoticComponent<Omit<MagickoChartProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
128
164
 
129
- export { Enter, type EnterProps, Frame, type FrameProps, Google, type GoogleProps, IconSize, type IconSizeProps, Magicko3DotsMore, type Magicko3DotsMoreProps, MagickoArchive, type MagickoArchiveProps, MagickoChart, type MagickoChartProps };
165
+ /**
166
+ * Props for the MagickoKey icon component
167
+ * @property {number | string} [size] - Size of the icon (default: 24)
168
+ */
169
+ interface MagickoKeyProps extends React.SVGProps<SVGSVGElement> {
170
+ size?: number | string;
171
+ }
172
+ /**
173
+ * MagickoKey icon component
174
+ * @example
175
+ * ```tsx
176
+ * import { MagickoKey } from 'magick-icons';
177
+ *
178
+ * <MagickoKey size={24} className="text-blue-500" />
179
+ * ```
180
+ */
181
+ declare const MagickoKey: React.ForwardRefExoticComponent<Omit<MagickoKeyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
182
+
183
+ /**
184
+ * Props for the MagickoProfileCircle icon component
185
+ * @property {number | string} [size] - Size of the icon (default: 24)
186
+ */
187
+ interface MagickoProfileCircleProps extends React.SVGProps<SVGSVGElement> {
188
+ size?: number | string;
189
+ }
190
+ /**
191
+ * MagickoProfileCircle icon component
192
+ * @example
193
+ * ```tsx
194
+ * import { MagickoProfileCircle } from 'magick-icons';
195
+ *
196
+ * <MagickoProfileCircle size={24} className="text-blue-500" />
197
+ * ```
198
+ */
199
+ declare const MagickoProfileCircle: React.ForwardRefExoticComponent<Omit<MagickoProfileCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
200
+
201
+ /**
202
+ * Props for the MagickoSidebarLeft icon component
203
+ * @property {number | string} [size] - Size of the icon (default: 24)
204
+ */
205
+ interface MagickoSidebarLeftProps extends React.SVGProps<SVGSVGElement> {
206
+ size?: number | string;
207
+ }
208
+ /**
209
+ * MagickoSidebarLeft icon component
210
+ * @example
211
+ * ```tsx
212
+ * import { MagickoSidebarLeft } from 'magick-icons';
213
+ *
214
+ * <MagickoSidebarLeft size={24} className="text-blue-500" />
215
+ * ```
216
+ */
217
+ declare const MagickoSidebarLeft: React.ForwardRefExoticComponent<Omit<MagickoSidebarLeftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
218
+
219
+ /**
220
+ * Props for the MagickoSortDescending icon component
221
+ * @property {number | string} [size] - Size of the icon (default: 24)
222
+ */
223
+ interface MagickoSortDescendingProps extends React.SVGProps<SVGSVGElement> {
224
+ size?: number | string;
225
+ }
226
+ /**
227
+ * MagickoSortDescending icon component
228
+ * @example
229
+ * ```tsx
230
+ * import { MagickoSortDescending } from 'magick-icons';
231
+ *
232
+ * <MagickoSortDescending size={24} className="text-blue-500" />
233
+ * ```
234
+ */
235
+ declare const MagickoSortDescending: React.ForwardRefExoticComponent<Omit<MagickoSortDescendingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
236
+
237
+ /**
238
+ * Props for the MagickoSpeaker icon component
239
+ * @property {number | string} [size] - Size of the icon (default: 24)
240
+ */
241
+ interface MagickoSpeakerProps extends React.SVGProps<SVGSVGElement> {
242
+ size?: number | string;
243
+ }
244
+ /**
245
+ * MagickoSpeaker icon component
246
+ * @example
247
+ * ```tsx
248
+ * import { MagickoSpeaker } from 'magick-icons';
249
+ *
250
+ * <MagickoSpeaker size={24} className="text-blue-500" />
251
+ * ```
252
+ */
253
+ declare const MagickoSpeaker: React.ForwardRefExoticComponent<Omit<MagickoSpeakerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
254
+
255
+ /**
256
+ * Props for the MagickoTelescope icon component
257
+ * @property {number | string} [size] - Size of the icon (default: 24)
258
+ */
259
+ interface MagickoTelescopeProps extends React.SVGProps<SVGSVGElement> {
260
+ size?: number | string;
261
+ }
262
+ /**
263
+ * MagickoTelescope icon component
264
+ * @example
265
+ * ```tsx
266
+ * import { MagickoTelescope } from 'magick-icons';
267
+ *
268
+ * <MagickoTelescope size={24} className="text-blue-500" />
269
+ * ```
270
+ */
271
+ declare const MagickoTelescope: React.ForwardRefExoticComponent<Omit<MagickoTelescopeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
272
+
273
+ /**
274
+ * Props for the Magicpen icon component
275
+ * @property {number | string} [size] - Size of the icon (default: 24)
276
+ */
277
+ interface MagicpenProps extends React.SVGProps<SVGSVGElement> {
278
+ size?: number | string;
279
+ }
280
+ /**
281
+ * Magicpen icon component
282
+ * @example
283
+ * ```tsx
284
+ * import { Magicpen } from 'magick-icons';
285
+ *
286
+ * <Magicpen size={24} className="text-blue-500" />
287
+ * ```
288
+ */
289
+ declare const Magicpen: React.ForwardRefExoticComponent<Omit<MagicpenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
290
+
291
+ export { Enter, type EnterProps, Frame, type FrameProps, Google, type GoogleProps, IconSize, type IconSizeProps, Legal, LegalModule, type LegalModuleProps, type LegalProps, Magicko3DotsMore, type Magicko3DotsMoreProps, MagickoArchive, type MagickoArchiveProps, MagickoChart, type MagickoChartProps, MagickoKey, type MagickoKeyProps, MagickoProfileCircle, type MagickoProfileCircleProps, MagickoSidebarLeft, type MagickoSidebarLeftProps, MagickoSortDescending, type MagickoSortDescendingProps, MagickoSpeaker, type MagickoSpeakerProps, MagickoTelescope, type MagickoTelescopeProps, Magicpen, type MagicpenProps };
package/index.d.ts CHANGED
@@ -72,6 +72,42 @@ interface IconSizeProps extends React.SVGProps<SVGSVGElement> {
72
72
  */
73
73
  declare const IconSize: React.ForwardRefExoticComponent<Omit<IconSizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
74
74
 
75
+ /**
76
+ * Props for the Legal icon component
77
+ * @property {number | string} [size] - Size of the icon (default: 24)
78
+ */
79
+ interface LegalProps extends React.SVGProps<SVGSVGElement> {
80
+ size?: number | string;
81
+ }
82
+ /**
83
+ * Legal icon component
84
+ * @example
85
+ * ```tsx
86
+ * import { Legal } from 'magick-icons';
87
+ *
88
+ * <Legal size={24} className="text-blue-500" />
89
+ * ```
90
+ */
91
+ declare const Legal: React.ForwardRefExoticComponent<Omit<LegalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
92
+
93
+ /**
94
+ * Props for the LegalModule icon component
95
+ * @property {number | string} [size] - Size of the icon (default: 24)
96
+ */
97
+ interface LegalModuleProps extends React.SVGProps<SVGSVGElement> {
98
+ size?: number | string;
99
+ }
100
+ /**
101
+ * LegalModule icon component
102
+ * @example
103
+ * ```tsx
104
+ * import { LegalModule } from 'magick-icons';
105
+ *
106
+ * <LegalModule size={24} className="text-blue-500" />
107
+ * ```
108
+ */
109
+ declare const LegalModule: React.ForwardRefExoticComponent<Omit<LegalModuleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
110
+
75
111
  /**
76
112
  * Props for the Magicko3DotsMore icon component
77
113
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -126,4 +162,130 @@ interface MagickoChartProps extends React.SVGProps<SVGSVGElement> {
126
162
  */
127
163
  declare const MagickoChart: React.ForwardRefExoticComponent<Omit<MagickoChartProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
128
164
 
129
- export { Enter, type EnterProps, Frame, type FrameProps, Google, type GoogleProps, IconSize, type IconSizeProps, Magicko3DotsMore, type Magicko3DotsMoreProps, MagickoArchive, type MagickoArchiveProps, MagickoChart, type MagickoChartProps };
165
+ /**
166
+ * Props for the MagickoKey icon component
167
+ * @property {number | string} [size] - Size of the icon (default: 24)
168
+ */
169
+ interface MagickoKeyProps extends React.SVGProps<SVGSVGElement> {
170
+ size?: number | string;
171
+ }
172
+ /**
173
+ * MagickoKey icon component
174
+ * @example
175
+ * ```tsx
176
+ * import { MagickoKey } from 'magick-icons';
177
+ *
178
+ * <MagickoKey size={24} className="text-blue-500" />
179
+ * ```
180
+ */
181
+ declare const MagickoKey: React.ForwardRefExoticComponent<Omit<MagickoKeyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
182
+
183
+ /**
184
+ * Props for the MagickoProfileCircle icon component
185
+ * @property {number | string} [size] - Size of the icon (default: 24)
186
+ */
187
+ interface MagickoProfileCircleProps extends React.SVGProps<SVGSVGElement> {
188
+ size?: number | string;
189
+ }
190
+ /**
191
+ * MagickoProfileCircle icon component
192
+ * @example
193
+ * ```tsx
194
+ * import { MagickoProfileCircle } from 'magick-icons';
195
+ *
196
+ * <MagickoProfileCircle size={24} className="text-blue-500" />
197
+ * ```
198
+ */
199
+ declare const MagickoProfileCircle: React.ForwardRefExoticComponent<Omit<MagickoProfileCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
200
+
201
+ /**
202
+ * Props for the MagickoSidebarLeft icon component
203
+ * @property {number | string} [size] - Size of the icon (default: 24)
204
+ */
205
+ interface MagickoSidebarLeftProps extends React.SVGProps<SVGSVGElement> {
206
+ size?: number | string;
207
+ }
208
+ /**
209
+ * MagickoSidebarLeft icon component
210
+ * @example
211
+ * ```tsx
212
+ * import { MagickoSidebarLeft } from 'magick-icons';
213
+ *
214
+ * <MagickoSidebarLeft size={24} className="text-blue-500" />
215
+ * ```
216
+ */
217
+ declare const MagickoSidebarLeft: React.ForwardRefExoticComponent<Omit<MagickoSidebarLeftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
218
+
219
+ /**
220
+ * Props for the MagickoSortDescending icon component
221
+ * @property {number | string} [size] - Size of the icon (default: 24)
222
+ */
223
+ interface MagickoSortDescendingProps extends React.SVGProps<SVGSVGElement> {
224
+ size?: number | string;
225
+ }
226
+ /**
227
+ * MagickoSortDescending icon component
228
+ * @example
229
+ * ```tsx
230
+ * import { MagickoSortDescending } from 'magick-icons';
231
+ *
232
+ * <MagickoSortDescending size={24} className="text-blue-500" />
233
+ * ```
234
+ */
235
+ declare const MagickoSortDescending: React.ForwardRefExoticComponent<Omit<MagickoSortDescendingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
236
+
237
+ /**
238
+ * Props for the MagickoSpeaker icon component
239
+ * @property {number | string} [size] - Size of the icon (default: 24)
240
+ */
241
+ interface MagickoSpeakerProps extends React.SVGProps<SVGSVGElement> {
242
+ size?: number | string;
243
+ }
244
+ /**
245
+ * MagickoSpeaker icon component
246
+ * @example
247
+ * ```tsx
248
+ * import { MagickoSpeaker } from 'magick-icons';
249
+ *
250
+ * <MagickoSpeaker size={24} className="text-blue-500" />
251
+ * ```
252
+ */
253
+ declare const MagickoSpeaker: React.ForwardRefExoticComponent<Omit<MagickoSpeakerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
254
+
255
+ /**
256
+ * Props for the MagickoTelescope icon component
257
+ * @property {number | string} [size] - Size of the icon (default: 24)
258
+ */
259
+ interface MagickoTelescopeProps extends React.SVGProps<SVGSVGElement> {
260
+ size?: number | string;
261
+ }
262
+ /**
263
+ * MagickoTelescope icon component
264
+ * @example
265
+ * ```tsx
266
+ * import { MagickoTelescope } from 'magick-icons';
267
+ *
268
+ * <MagickoTelescope size={24} className="text-blue-500" />
269
+ * ```
270
+ */
271
+ declare const MagickoTelescope: React.ForwardRefExoticComponent<Omit<MagickoTelescopeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
272
+
273
+ /**
274
+ * Props for the Magicpen icon component
275
+ * @property {number | string} [size] - Size of the icon (default: 24)
276
+ */
277
+ interface MagicpenProps extends React.SVGProps<SVGSVGElement> {
278
+ size?: number | string;
279
+ }
280
+ /**
281
+ * Magicpen icon component
282
+ * @example
283
+ * ```tsx
284
+ * import { Magicpen } from 'magick-icons';
285
+ *
286
+ * <Magicpen size={24} className="text-blue-500" />
287
+ * ```
288
+ */
289
+ declare const Magicpen: React.ForwardRefExoticComponent<Omit<MagicpenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
290
+
291
+ export { Enter, type EnterProps, Frame, type FrameProps, Google, type GoogleProps, IconSize, type IconSizeProps, Legal, LegalModule, type LegalModuleProps, type LegalProps, Magicko3DotsMore, type Magicko3DotsMoreProps, MagickoArchive, type MagickoArchiveProps, MagickoChart, type MagickoChartProps, MagickoKey, type MagickoKeyProps, MagickoProfileCircle, type MagickoProfileCircleProps, MagickoSidebarLeft, type MagickoSidebarLeftProps, MagickoSortDescending, type MagickoSortDescendingProps, MagickoSpeaker, type MagickoSpeakerProps, MagickoTelescope, type MagickoTelescopeProps, Magicpen, type MagicpenProps };
package/index.js CHANGED
@@ -34,9 +34,18 @@ __export(index_exports, {
34
34
  Frame: () => Frame,
35
35
  Google: () => Google,
36
36
  IconSize: () => IconSize,
37
+ Legal: () => Legal,
38
+ LegalModule: () => LegalModule,
37
39
  Magicko3DotsMore: () => Magicko3DotsMore,
38
40
  MagickoArchive: () => MagickoArchive,
39
- MagickoChart: () => MagickoChart
41
+ MagickoChart: () => MagickoChart,
42
+ MagickoKey: () => MagickoKey,
43
+ MagickoProfileCircle: () => MagickoProfileCircle,
44
+ MagickoSidebarLeft: () => MagickoSidebarLeft,
45
+ MagickoSortDescending: () => MagickoSortDescending,
46
+ MagickoSpeaker: () => MagickoSpeaker,
47
+ MagickoTelescope: () => MagickoTelescope,
48
+ Magicpen: () => Magicpen
40
49
  });
41
50
  module.exports = __toCommonJS(index_exports);
42
51
 
@@ -98,46 +107,177 @@ var IconSize = import_react4.default.forwardRef(
98
107
  );
99
108
  IconSize.displayName = "IconSize";
100
109
 
101
- // dist/icons/Magicko3DotsMore.tsx
110
+ // dist/icons/Legal.tsx
102
111
  var import_react5 = __toESM(require("react"));
103
112
  var import_jsx_runtime5 = require("react/jsx-runtime");
104
- var Magicko3DotsMore = import_react5.default.forwardRef(
113
+ var Legal = import_react5.default.forwardRef(
105
114
  ({ size, ...props }, ref) => {
106
- return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { fill: "#1e293b", d: "M5 10a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0" }) });
115
+ return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", children: [
116
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { fill: "#64748b", d: "M14.884 14.858c-2.242-.075-4-1.791-4.117-3.991-.025-.35.058-.7.25-1.009l3.3-5.591a.63.63 0 0 1 1.083 0s2.6 4.408 3.309 5.6c.183.3.274.65.25 1.008a4.194 4.194 0 0 1-4.067 3.983zm-.026-9.041L12.093 10.5a.47.47 0 0 0-.075.292 2.954 2.954 0 0 0 2.867 2.816c1.508-.05 2.741-1.258 2.825-2.808 0-.1-.017-.2-.067-.283-.5-.859-1.975-3.342-2.775-4.7z" }),
117
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { fill: "#64748b", d: "M18.3 11.108h-6.875a.63.63 0 0 1-.625-.625.63.63 0 0 1 .625-.625H18.3a.63.63 0 0 1 .625.625.63.63 0 0 1-.625.625M5.158 17.709c-2.241-.075-4-1.792-4.116-3.992A1.7 1.7 0 0 1 1.3 12.7l3.3-5.592a.63.63 0 0 1 1.083 0l3.309 5.6c.183.309.266.659.241 1.009A4.194 4.194 0 0 1 5.167 17.7zm-.016-9.042-2.767 4.692a.6.6 0 0 0-.083.291 2.95 2.95 0 0 0 2.866 2.809c1.509-.05 2.742-1.259 2.825-2.809 0-.108-.016-.2-.066-.292l-2.767-4.7z" }),
118
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { fill: "#64748b", d: "M8.575 13.958H1.7a.63.63 0 0 1-.625-.625.63.63 0 0 1 .625-.625h6.875a.63.63 0 0 1 .625.625.63.63 0 0 1-.625.625m-3.433-5.9a.63.63 0 0 1-.6-.45.62.62 0 0 1 .425-.775l9.716-2.85c.334-.1.675.092.775.425a.62.62 0 0 1-.425.775l-9.716 2.85a.6.6 0 0 1-.176.025" }),
119
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { fill: "#64748b", d: "M9.308 6.833a.63.63 0 0 1-.625-.625V2.917a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v3.291a.63.63 0 0 1-.625.625" })
120
+ ] });
107
121
  }
108
122
  );
109
- Magicko3DotsMore.displayName = "Magicko3DotsMore";
123
+ Legal.displayName = "Legal";
110
124
 
111
- // dist/icons/MagickoArchive.tsx
125
+ // dist/icons/LegalModule.tsx
112
126
  var import_react6 = __toESM(require("react"));
113
127
  var import_jsx_runtime6 = require("react/jsx-runtime");
114
- var MagickoArchive = import_react6.default.forwardRef(
128
+ var LegalModule = import_react6.default.forwardRef(
129
+ ({ size, ...props }, ref) => {
130
+ return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "17", height: "16", fill: "none", viewBox: "0 0 17 16", children: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("g", { id: "Legal Module", fill: "#334155", children: [
131
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { id: "Vector", d: "M1.19 14.638v-.5q0-.173.034-.344a.55.55 0 0 1 .508-.453q.108-.013.218-.013h7.492q.142 0 .28.031a.55.55 0 0 1 .435.517c.018.223.014.448.016.67 0 .065.018.085.079.107q.195.067.378.164a.37.37 0 0 1 .183.241.94.94 0 0 1 0 .548.56.56 0 0 1-.523.386q-.102.01-.205.009H1.27q-.135 0-.267-.026a.6.6 0 0 1-.491-.709 1 1 0 0 1 .014-.091c.06-.31.223-.46.565-.52z" }),
132
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("g", { id: "Vector_2", children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m6.887 1.91 3.72 3.876-3.382 3.24-3.726-3.867zm7.46 13.095a2.8 2.8 0 0 1-1.05-.819Q11.545 12.057 9.8 9.92a5 5 0 0 1-.545-.914l-.124-.244a.22.22 0 0 1 .033-.267q.406-.396.82-.786a.2.2 0 0 1 .24-.042q.596.289 1.121.69.542.462 1.075.935l3.092 2.75c.474.412.804.966.942 1.579a1.34 1.34 0 0 1-.22 1.142 1.2 1.2 0 0 1-1.129.461 2.4 2.4 0 0 1-.76-.219M7.054.874c.06-.073.113-.15.18-.222.156-.158.317-.308.475-.463.276-.257.528-.253.79.02l.886.918L12.33 4.2q.079.082.143.175a.406.406 0 0 1-.022.538c-.15.168-.316.32-.476.48q-.095.096-.199.18a.46.46 0 0 1-.594-.009c-.21-.198-.41-.408-.61-.616L7.228 1.473a1.2 1.2 0 0 1-.163-.22.43.43 0 0 1-.011-.38M1.572 6.136q.076-.105.16-.203c.178-.177.355-.353.544-.524a.46.46 0 0 1 .547-.087.9.9 0 0 1 .255.205c.825.848 1.632 1.694 2.447 2.539L6.85 9.444q.07.075.13.16a.42.42 0 0 1-.02.59c-.145.168-.312.318-.472.473a2 2 0 0 1-.204.174.426.426 0 0 1-.582-.01 5 5 0 0 1-.396-.39 2025 2025 0 0 1-3.53-3.681 1.6 1.6 0 0 1-.189-.244.41.41 0 0 1-.015-.38" }) })
133
+ ] }) });
134
+ }
135
+ );
136
+ LegalModule.displayName = "LegalModule";
137
+
138
+ // dist/icons/Magicko3DotsMore.tsx
139
+ var import_react7 = __toESM(require("react"));
140
+ var import_jsx_runtime7 = require("react/jsx-runtime");
141
+ var Magicko3DotsMore = import_react7.default.forwardRef(
115
142
  ({ size, ...props }, ref) => {
116
- return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "18", height: "18", fill: "none", viewBox: "0 0 18 18", children: [
117
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { fill: "#1e293b", d: "M12.75 17.959h-7.5c-2.75 0-3.125-1.5-3.125-3.125V7.517a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v7.317c0 1.45.25 1.875 1.875 1.875h7.5c1.625 0 1.875-.425 1.875-1.875V7.517a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v7.317c0 1.625-.375 3.125-3.125 3.125" }),
118
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { fill: "#1e293b", d: "M14.833 7.958H3.167C1.15 7.958.042 6.85.042 4.833V3.167C.042 1.15 1.15.042 3.167.042h11.666c2.017 0 3.125 1.108 3.125 3.125v1.666c0 2.017-1.108 3.125-3.125 3.125M3.167 1.292c-1.317 0-1.875.558-1.875 1.875v1.666c0 1.317.558 1.875 1.875 1.875h11.666c1.317 0 1.875-.558 1.875-1.875V3.167c0-1.317-.558-1.875-1.875-1.875zm7.35 10H7.483a.63.63 0 0 1-.625-.625.63.63 0 0 1 .625-.625h3.034a.63.63 0 0 1 .625.625.63.63 0 0 1-.625.625" })
143
+ return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("path", { fill: "#1e293b", d: "M5 10a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0" }) });
144
+ }
145
+ );
146
+ Magicko3DotsMore.displayName = "Magicko3DotsMore";
147
+
148
+ // dist/icons/MagickoArchive.tsx
149
+ var import_react8 = __toESM(require("react"));
150
+ var import_jsx_runtime8 = require("react/jsx-runtime");
151
+ var MagickoArchive = import_react8.default.forwardRef(
152
+ ({ size, ...props }, ref) => {
153
+ return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "18", height: "18", fill: "none", viewBox: "0 0 18 18", children: [
154
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("path", { fill: "#1e293b", d: "M12.75 17.959h-7.5c-2.75 0-3.125-1.5-3.125-3.125V7.517a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v7.317c0 1.45.25 1.875 1.875 1.875h7.5c1.625 0 1.875-.425 1.875-1.875V7.517a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v7.317c0 1.625-.375 3.125-3.125 3.125" }),
155
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("path", { fill: "#1e293b", d: "M14.833 7.958H3.167C1.15 7.958.042 6.85.042 4.833V3.167C.042 1.15 1.15.042 3.167.042h11.666c2.017 0 3.125 1.108 3.125 3.125v1.666c0 2.017-1.108 3.125-3.125 3.125M3.167 1.292c-1.317 0-1.875.558-1.875 1.875v1.666c0 1.317.558 1.875 1.875 1.875h11.666c1.317 0 1.875-.558 1.875-1.875V3.167c0-1.317-.558-1.875-1.875-1.875zm7.35 10H7.483a.63.63 0 0 1-.625-.625.63.63 0 0 1 .625-.625h3.034a.63.63 0 0 1 .625.625.63.63 0 0 1-.625.625" })
119
156
  ] });
120
157
  }
121
158
  );
122
159
  MagickoArchive.displayName = "MagickoArchive";
123
160
 
124
161
  // dist/icons/MagickoChart.tsx
125
- var import_react7 = __toESM(require("react"));
126
- var import_jsx_runtime7 = require("react/jsx-runtime");
127
- var MagickoChart = import_react7.default.forwardRef(
162
+ var import_react9 = __toESM(require("react"));
163
+ var import_jsx_runtime9 = require("react/jsx-runtime");
164
+ var MagickoChart = import_react9.default.forwardRef(
128
165
  ({ size, ...props }, ref) => {
129
- return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("path", { fill: "#1e293b", d: "M3.333 18.958a2.29 2.29 0 0 1-2.291-2.291V8.333a2.29 2.29 0 0 1 2.291-2.291 2.29 2.29 0 0 1 2.292 2.291v8.334a2.29 2.29 0 0 1-2.292 2.291m0-11.666a1.04 1.04 0 0 0-1.041 1.041v8.334a1.042 1.042 0 0 0 2.083 0V8.333c0-.575-.467-1.041-1.042-1.041M10 18.958a2.29 2.29 0 0 1-2.292-2.291V3.333A2.29 2.29 0 0 1 10 1.042a2.29 2.29 0 0 1 2.292 2.291v13.334A2.29 2.29 0 0 1 10 18.958m0-16.666c-.575 0-1.042.466-1.042 1.041v13.334a1.042 1.042 0 0 0 2.084 0V3.333c0-.575-.467-1.041-1.042-1.041m6.667 16.666a2.29 2.29 0 0 1-2.292-2.291v-3.334a2.29 2.29 0 0 1 2.292-2.291 2.29 2.29 0 0 1 2.291 2.291v3.334a2.29 2.29 0 0 1-2.291 2.291m0-6.666c-.575 0-1.042.466-1.042 1.041v3.334a1.042 1.042 0 0 0 2.083 0v-3.334a1.04 1.04 0 0 0-1.041-1.041" }) });
166
+ return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { fill: "#1e293b", d: "M3.333 18.958a2.29 2.29 0 0 1-2.291-2.291V8.333a2.29 2.29 0 0 1 2.291-2.291 2.29 2.29 0 0 1 2.292 2.291v8.334a2.29 2.29 0 0 1-2.292 2.291m0-11.666a1.04 1.04 0 0 0-1.041 1.041v8.334a1.042 1.042 0 0 0 2.083 0V8.333c0-.575-.467-1.041-1.042-1.041M10 18.958a2.29 2.29 0 0 1-2.292-2.291V3.333A2.29 2.29 0 0 1 10 1.042a2.29 2.29 0 0 1 2.292 2.291v13.334A2.29 2.29 0 0 1 10 18.958m0-16.666c-.575 0-1.042.466-1.042 1.041v13.334a1.042 1.042 0 0 0 2.084 0V3.333c0-.575-.467-1.041-1.042-1.041m6.667 16.666a2.29 2.29 0 0 1-2.292-2.291v-3.334a2.29 2.29 0 0 1 2.292-2.291 2.29 2.29 0 0 1 2.291 2.291v3.334a2.29 2.29 0 0 1-2.291 2.291m0-6.666c-.575 0-1.042.466-1.042 1.041v3.334a1.042 1.042 0 0 0 2.083 0v-3.334a1.04 1.04 0 0 0-1.041-1.041" }) });
130
167
  }
131
168
  );
132
169
  MagickoChart.displayName = "MagickoChart";
170
+
171
+ // dist/icons/MagickoKey.tsx
172
+ var import_react10 = __toESM(require("react"));
173
+ var import_jsx_runtime10 = require("react/jsx-runtime");
174
+ var MagickoKey = import_react10.default.forwardRef(
175
+ ({ size, ...props }, ref) => {
176
+ return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", children: [
177
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", { fill: "#1e293b", d: "M5.15 18.958c-.083 0-.175-.008-.25-.016l-1.808-.25c-.867-.117-1.65-.892-1.784-1.775l-.25-1.825c-.083-.584.167-1.342.584-1.767L5.3 9.667a6.9 6.9 0 0 1 1.833-6.592c2.7-2.692 7.092-2.7 9.8 0a6.88 6.88 0 0 1 2.025 4.9 6.88 6.88 0 0 1-2.025 4.9c-1.75 1.733-4.241 2.417-6.591 1.817L6.675 18.35c-.35.367-.975.608-1.525.608M12.025 2.3c-1.458 0-2.908.55-4.017 1.658a5.67 5.67 0 0 0-1.416 5.709.62.62 0 0 1-.159.625l-3.916 3.916c-.142.142-.259.509-.234.7l.25 1.825c.05.317.392.675.709.717l1.816.25c.2.033.567-.083.709-.225L9.7 13.55a.62.62 0 0 1 .625-.15 5.65 5.65 0 0 0 5.7-1.408 5.65 5.65 0 0 0 1.658-4.017 5.64 5.64 0 0 0-1.658-4.017 5.6 5.6 0 0 0-4-1.658" }),
178
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", { fill: "#1e293b", d: "M7.658 17.117a.62.62 0 0 1-.441-.184L5.3 15.017a.63.63 0 0 1 0-.884.63.63 0 0 1 .883 0L8.1 16.05a.63.63 0 0 1 0 .883.62.62 0 0 1-.442.183m4.425-7.324a1.88 1.88 0 0 1-1.875-1.875c0-1.034.842-1.875 1.875-1.875 1.034 0 1.875.841 1.875 1.875a1.88 1.88 0 0 1-1.875 1.875m0-2.5a.63.63 0 0 0-.625.625.63.63 0 0 0 .625.625.63.63 0 0 0 .625-.625.63.63 0 0 0-.625-.625" })
179
+ ] });
180
+ }
181
+ );
182
+ MagickoKey.displayName = "MagickoKey";
183
+
184
+ // dist/icons/MagickoProfileCircle.tsx
185
+ var import_react11 = __toESM(require("react"));
186
+ var import_jsx_runtime11 = require("react/jsx-runtime");
187
+ var MagickoProfileCircle = import_react11.default.forwardRef(
188
+ ({ size, ...props }, ref) => {
189
+ return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", children: [
190
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { fill: "#1e293b", d: "M10.1 11.276h-.142c-1.891-.059-3.308-1.534-3.308-3.35a3.364 3.364 0 0 1 3.358-3.359 3.364 3.364 0 0 1 3.359 3.358 3.345 3.345 0 0 1-3.242 3.35zM10 5.809a2.11 2.11 0 0 0-2.108 2.108 2.1 2.1 0 0 0 2.025 2.108.7.7 0 0 1 .191 0 2.113 2.113 0 0 0 2-2.108A2.11 2.11 0 0 0 10 5.81m0 13.149a8.93 8.93 0 0 1-6.042-2.35.63.63 0 0 1-.2-.525c.109-.992.725-1.917 1.75-2.6 2.484-1.65 6.509-1.65 8.984 0 1.025.691 1.641 1.608 1.75 2.6.025.2-.05.391-.2.525A8.93 8.93 0 0 1 10 18.959m-4.933-3.042A7.67 7.67 0 0 0 10 17.709c1.808 0 3.55-.634 4.933-1.792-.15-.508-.55-1-1.141-1.4-2.05-1.367-5.525-1.367-7.592 0-.592.4-.983.892-1.133 1.4" }),
191
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { fill: "#1e293b", d: "M10 18.959c-4.942 0-8.958-4.017-8.958-8.959S5.058 1.042 10 1.042 18.958 5.058 18.958 10 14.942 18.96 10 18.96m0-16.667C5.75 2.292 2.292 5.75 2.292 10S5.75 17.71 10 17.71s7.708-3.46 7.708-7.71S14.25 2.292 10 2.292" })
192
+ ] });
193
+ }
194
+ );
195
+ MagickoProfileCircle.displayName = "MagickoProfileCircle";
196
+
197
+ // dist/icons/MagickoSidebarLeft.tsx
198
+ var import_react12 = __toESM(require("react"));
199
+ var import_jsx_runtime12 = require("react/jsx-runtime");
200
+ var MagickoSidebarLeft = import_react12.default.forwardRef(
201
+ ({ size, ...props }, ref) => {
202
+ return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", children: [
203
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { fill: "#1e293b", d: "M12.475 18.958h-5c-4.525 0-6.458-1.933-6.458-6.458v-5c0-4.525 1.933-6.458 6.458-6.458h5c4.525 0 6.458 1.933 6.458 6.458v5c0 4.525-1.925 6.458-6.458 6.458m-5-16.666c-3.842 0-5.208 1.366-5.208 5.208v5c0 3.842 1.366 5.208 5.208 5.208h5c3.842 0 5.208-1.366 5.208-5.208v-5c0-3.842-1.366-5.208-5.208-5.208z" }),
204
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { fill: "#1e293b", d: "M6.642 18.958a.63.63 0 0 1-.625-.625V1.667a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v16.666a.624.624 0 0 1-.625.625m5.833-6.198a.62.62 0 0 1-.442-.184L9.9 10.443a.63.63 0 0 1 0-.884l2.133-2.133a.63.63 0 0 1 .884 0 .63.63 0 0 1 0 .883l-1.684 1.692 1.692 1.692a.63.63 0 0 1 0 .883.62.62 0 0 1-.45.183" })
205
+ ] });
206
+ }
207
+ );
208
+ MagickoSidebarLeft.displayName = "MagickoSidebarLeft";
209
+
210
+ // dist/icons/MagickoSortDescending.tsx
211
+ var import_react13 = __toESM(require("react"));
212
+ var import_jsx_runtime13 = require("react/jsx-runtime");
213
+ var MagickoSortDescending = import_react13.default.forwardRef(
214
+ ({ size, ...props }, ref) => {
215
+ return /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", children: [
216
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { fill: "#1e293b", d: "M15.075 16.777c-.342 0-.625-.272-.625-.6V4.48c0-.328.283-.6.625-.6.341 0 .625.272.625.6v11.696c0 .328-.284.6-.625.6m-6.2-10.72h-7c-.342 0-.625-.272-.625-.6s.283-.6.625-.6h7c.342 0 .625.272.625.6s-.283.6-.625.6m0 4.384h-7c-.342 0-.625-.272-.625-.6s.283-.6.625-.6h7c.342 0 .625.272.625.6s-.283.6-.625.6m-3.617 4.384H1.875c-.342 0-.625-.272-.625-.6s.283-.6.625-.6h3.383c.342 0 .625.272.625.6s-.283.6-.625.6" }),
217
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { fill: "#1e293b", d: "M15.075 16.777a.63.63 0 0 1-.442-.177l-3.041-2.92a.587.587 0 0 1 0-.848.65.65 0 0 1 .883 0l2.6 2.496 2.608-2.496a.65.65 0 0 1 .884 0 .587.587 0 0 1 0 .848l-3.05 2.92a.67.67 0 0 1-.442.177" })
218
+ ] });
219
+ }
220
+ );
221
+ MagickoSortDescending.displayName = "MagickoSortDescending";
222
+
223
+ // dist/icons/MagickoSpeaker.tsx
224
+ var import_react14 = __toESM(require("react"));
225
+ var import_jsx_runtime14 = require("react/jsx-runtime");
226
+ var MagickoSpeaker = import_react14.default.forwardRef(
227
+ ({ size, ...props }, ref) => {
228
+ return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", children: [
229
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("path", { fill: "#1e293b", d: "M18.71 15.36c-.52 0-1.11-.12-1.73-.35-1.67-.6-3.58-2.01-5.24-3.87S8.9 7.22 8.48 5.49c-.37-1.48-.15-2.69.64-3.39.9-.8 2.35-.8 4.08.01 1.53.71 3.17 2 4.61 3.62 3.22 3.61 4.35 7.5 2.62 9.04-.45.39-1.03.59-1.72.59M10.85 3c-.31 0-.56.07-.72.22-.34.3-.4 1.02-.18 1.91.36 1.51 1.42 3.33 2.92 5.01s3.19 2.94 4.64 3.46c.88.33 1.6.34 1.93.04.8-.71.14-3.69-2.74-6.92-1.31-1.47-2.78-2.62-4.13-3.25-.67-.31-1.26-.47-1.72-.47" }),
230
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("path", { fill: "#1e293b", d: "M5.71 19.48c-.83 0-1.62-.35-2.19-.99-.79-.88-.98-2.1-.49-3.18l5.53-12.4c.17-.38.61-.55.99-.38s.55.61.38.99L4.4 15.92c-.24.54-.15 1.13.24 1.57s.97.6 1.53.42l12.96-4.1c.4-.13.82.09.94.49s-.09.82-.49.94l-12.96 4.1c-.31.09-.61.14-.91.14" }),
231
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("path", { fill: "#1e293b", d: "M10.41 22.5c-1.2 0-2.32-.77-2.7-1.98l-.63-1.99c-.12-.4.09-.82.49-.94.4-.13.82.09.94.49l.63 1.99c.11.34.34.61.66.78s.68.2 1.02.09l1.99-.63c.34-.11.61-.34.78-.66s.2-.68.09-1.02l-.63-1.99c-.12-.4.09-.82.49-.94.4-.13.82.09.94.49l.63 1.99c.23.72.16 1.49-.19 2.16s-.94 1.17-1.66 1.4l-1.99.63c-.29.09-.57.13-.86.13" })
232
+ ] });
233
+ }
234
+ );
235
+ MagickoSpeaker.displayName = "MagickoSpeaker";
236
+
237
+ // dist/icons/MagickoTelescope.tsx
238
+ var import_react15 = __toESM(require("react"));
239
+ var import_jsx_runtime15 = require("react/jsx-runtime");
240
+ var MagickoTelescope = import_react15.default.forwardRef(
241
+ ({ size, ...props }, ref) => {
242
+ return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", children: [
243
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", { fill: "#1e293b", d: "M12.525 9.6c-.2 0-.4-.1-.517-.275L9.342 5.34a.63.63 0 0 1 .175-.867l4.716-3.158c.367-.25.809-.333 1.242-.25s.808.334 1.058.7l1.517 2.259a1.655 1.655 0 0 1-.458 2.3l-4.709 3.158a.6.6 0 0 1-.358.117m-1.792-4.434L12.7 8.108 16.892 5.3A.4.4 0 0 0 17 4.733l-1.517-2.258a.4.4 0 0 0-.258-.175.4.4 0 0 0-.308.058z" }),
244
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", { fill: "#1e293b", d: "M8.284 11.867c-.2 0-.4-.1-.517-.276L5.633 8.409a.62.62 0 0 1 .176-.867l3.983-2.666a.62.62 0 0 1 .466-.092.6.6 0 0 1 .4.267l2.134 3.183a.62.62 0 0 1-.175.867l-3.984 2.667a.7.7 0 0 1-.35.1M7.017 8.233l1.433 2.142 2.942-1.967-1.434-2.15z" }),
245
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", { fill: "#1e293b", d: "M4.4 14.017c-.467 0-.933-.225-1.217-.65l-.941-1.4a1.44 1.44 0 0 1-.217-1.091c.075-.384.292-.709.617-.925l3.291-2.2a.62.62 0 0 1 .867.175l1.867 2.783a.62.62 0 0 1-.175.867l-3.292 2.2a1.47 1.47 0 0 1-.8.241m1.708-4.891-2.766 1.85a.213.213 0 0 0-.059.291l.942 1.4a.213.213 0 0 0 .292.059l2.766-1.85zm.192 9.833a.6.6 0 0 1-.258-.058.62.62 0 0 1-.309-.825l3.742-8.167a.622.622 0 1 1 1.133.517l-3.741 8.166a.63.63 0 0 1-.567.367" }),
246
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", { fill: "#1e293b", d: "M13.7 18.958a.61.61 0 0 1-.567-.367l-3.7-8.167a.626.626 0 0 1 .309-.825.63.63 0 0 1 .825.309l3.7 8.166a.626.626 0 0 1-.567.884" })
247
+ ] });
248
+ }
249
+ );
250
+ MagickoTelescope.displayName = "MagickoTelescope";
251
+
252
+ // dist/icons/Magicpen.tsx
253
+ var import_react16 = __toESM(require("react"));
254
+ var import_jsx_runtime16 = require("react/jsx-runtime");
255
+ var Magicpen = import_react16.default.forwardRef(
256
+ ({ size, ...props }, ref) => {
257
+ return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "#fff", viewBox: "0 0 24 24", children: [
258
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("path", { "fill-rule": "evenodd", d: "M3 19 19.002 2.998 22 5.996 19.537 8.46l-2.997-3-1.06 1.06 2.998 2.999-12.48 12.479z", "clip-rule": "evenodd" }),
259
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("path", { d: "M9.5 2.44 11 2l-.44 1.5L11 5l-1.5-.44L8 5l.44-1.5L8 2zm-4 6L7 8l-.44 1.5L7 11l-1.5-.44L4 11l.44-1.5L4 8zm15 5L22 13l-.44 1.5L22 16l-1.5-.44L19 16l.44-1.5L19 13z", opacity: ".4" })
260
+ ] });
261
+ }
262
+ );
263
+ Magicpen.displayName = "Magicpen";
133
264
  // Annotate the CommonJS export names for ESM import in node:
134
265
  0 && (module.exports = {
135
266
  Enter,
136
267
  Frame,
137
268
  Google,
138
269
  IconSize,
270
+ Legal,
271
+ LegalModule,
139
272
  Magicko3DotsMore,
140
273
  MagickoArchive,
141
- MagickoChart
274
+ MagickoChart,
275
+ MagickoKey,
276
+ MagickoProfileCircle,
277
+ MagickoSidebarLeft,
278
+ MagickoSortDescending,
279
+ MagickoSpeaker,
280
+ MagickoTelescope,
281
+ Magicpen
142
282
  });
143
283
  //# sourceMappingURL=index.js.map
package/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["index.ts","icons/Enter.tsx","icons/Frame.tsx","icons/Google.tsx","icons/IconSize.tsx","icons/Magicko3DotsMore.tsx","icons/MagickoArchive.tsx","icons/MagickoChart.tsx"],"sourcesContent":["// Auto-generated file - do not edit manually\n/**\n * @packageDocumentation\n * Magick Icons - SVG icon components for React\n * \n * @example\n * ```tsx\n * import { Enter } from 'magick-icons';\n * \n * function MyComponent() {\n * return <Enter size={24} className=\"text-blue-500\" />;\n * }\n * ```\n */\n\n/**\n * Enter icon component and its props type\n * @see {@link EnterProps} for available props\n */\nexport { Enter, type EnterProps } from './icons/Enter';\n\n/**\n * Frame icon component and its props type\n * @see {@link FrameProps} for available props\n */\nexport { Frame, type FrameProps } from './icons/Frame';\n\n/**\n * Google icon component and its props type\n * @see {@link GoogleProps} for available props\n */\nexport { Google, type GoogleProps } from './icons/Google';\n\n/**\n * IconSize icon component and its props type\n * @see {@link IconSizeProps} for available props\n */\nexport { IconSize, type IconSizeProps } from './icons/IconSize';\n\n/**\n * Magicko3DotsMore icon component and its props type\n * @see {@link Magicko3DotsMoreProps} for available props\n */\nexport { Magicko3DotsMore, type Magicko3DotsMoreProps } from './icons/Magicko3DotsMore';\n\n/**\n * MagickoArchive icon component and its props type\n * @see {@link MagickoArchiveProps} for available props\n */\nexport { MagickoArchive, type MagickoArchiveProps } from './icons/MagickoArchive';\n\n/**\n * MagickoChart icon component and its props type\n * @see {@link MagickoChartProps} for available props\n */\nexport { MagickoChart, type MagickoChartProps } from './icons/MagickoChart';\n","import React from 'react';\n\n/**\n * Props for the Enter icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface EnterProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Enter icon component\n * @example\n * ```tsx\n * import { Enter } from 'magick-icons';\n * \n * <Enter size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Enter = React.forwardRef<SVGSVGElement, EnterProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\"><path fill=\"#000\" d=\"M19.25 6v2A3.25 3.25 0 0 1 16 11.25H5.81l3.72-3.72.052-.056a.75.75 0 0 0-1.056-1.056l-.056.052-5 5a.75.75 0 0 0 0 1.06l5 5a.75.75 0 1 0 1.06-1.06l-3.72-3.72H16A4.75 4.75 0 0 0 20.75 8V6a.75.75 0 1 0-1.5 0\"/></svg>\n );\n }\n);\n\nEnter.displayName = 'Enter';\n","import React from 'react';\n\n/**\n * Props for the Frame icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface FrameProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Frame icon component\n * @example\n * ```tsx\n * import { Frame } from 'magick-icons';\n * \n * <Frame size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Frame = React.forwardRef<SVGSVGElement, FrameProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\"><g fill=\"#000\" clip-path=\"url(#clip0_7_897)\"><path d=\"M16.734 9.079a1.09 1.09 0 1 0-1.488-1.596l-3.192 2.976-2.976-3.194a1.09 1.09 0 0 0-1.595 1.488l2.977 3.192-3.194 2.976a1.09 1.09 0 1 0 1.488 1.595l3.192-2.974 2.976 3.191a1.091 1.091 0 1 0 1.595-1.487l-2.975-3.191z\"/><path fill-rule=\"evenodd\" d=\"M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12m12 9.818a9.819 9.819 0 1 1 0-19.637 9.819 9.819 0 0 1 0 19.637\" clip-rule=\"evenodd\"/></g><defs><clipPath id=\"clip0_7_897\"><path fill=\"#fff\" d=\"M0 0h24v24H0z\"/></clipPath></defs></svg>\n );\n }\n);\n\nFrame.displayName = 'Frame';\n","import React from 'react';\n\n/**\n * Props for the Google icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface GoogleProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Google icon component\n * @example\n * ```tsx\n * import { Google } from 'magick-icons';\n * \n * <Google size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Google = React.forwardRef<SVGSVGElement, GoogleProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"21\" height=\"20\" fill=\"none\" viewBox=\"0 0 21 20\"><path fill=\"#4285f4\" d=\"M19.251 10.194c0-.72-.06-1.244-.188-1.789H10.68v3.248h4.92c-.099.807-.635 2.022-1.825 2.839l-.017.108 2.65 2.013.184.018c1.687-1.527 2.66-3.773 2.66-6.437\"/><path fill=\"#34a853\" d=\"M10.68 18.75c2.41 0 4.434-.778 5.912-2.12l-2.817-2.138c-.754.515-1.766.875-3.096.875A5.365 5.365 0 0 1 5.6 11.73l-.104.01-2.756 2.09-.036.098c1.468 2.858 4.484 4.822 7.976 4.822\"/><path fill=\"#fbbc05\" d=\"M5.6 11.73A5.3 5.3 0 0 1 5.301 10c0-.603.109-1.186.287-1.73l-.005-.117-2.79-2.123-.092.042A8.6 8.6 0 0 0 1.75 10c0 1.41.347 2.742.952 3.928z\"/><path fill=\"#eb4335\" d=\"M10.68 4.633c1.676 0 2.807.71 3.452 1.303l2.52-2.411c-1.548-1.41-3.562-2.275-5.973-2.275-3.492 0-6.508 1.964-7.976 4.822L5.59 8.27a5.39 5.39 0 0 1 5.09-3.636\"/></svg>\n );\n }\n);\n\nGoogle.displayName = 'Google';\n","import React from 'react';\n\n/**\n * Props for the IconSize icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface IconSizeProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * IconSize icon component\n * @example\n * ```tsx\n * import { IconSize } from 'magick-icons';\n * \n * <IconSize size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const IconSize = React.forwardRef<SVGSVGElement, IconSizeProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"14\" height=\"15\" fill=\"none\" viewBox=\"0 0 14 15\"><path stroke=\"url(#paint0_linear_2807_23927)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M9.334 12.602v-1.167A2.333 2.333 0 0 0 7 9.102H3.5a2.333 2.333 0 0 0-2.333 2.333v1.167m11.667 0v-1.167a2.334 2.334 0 0 0-1.75-2.258m-1.75-7a2.333 2.333 0 0 1 0 4.521m-1.75-2.263a2.333 2.333 0 1 1-4.667 0 2.333 2.333 0 0 1 4.667 0\"/><defs><linearGradient id=\"paint0_linear_2807_23927\" x1=\"1.167\" x2=\"9.964\" y1=\"2.552\" y2=\"14.349\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#a5f3fc\"/><stop offset=\".435\" stop-color=\"#3b82f6\"/><stop offset=\"1\" stop-color=\"#38bdf8\"/></linearGradient></defs></svg>\n );\n }\n);\n\nIconSize.displayName = 'IconSize';\n","import React from 'react';\n\n/**\n * Props for the Magicko3DotsMore icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface Magicko3DotsMoreProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Magicko3DotsMore icon component\n * @example\n * ```tsx\n * import { Magicko3DotsMore } from 'magick-icons';\n * \n * <Magicko3DotsMore size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Magicko3DotsMore = React.forwardRef<SVGSVGElement, Magicko3DotsMoreProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" fill=\"none\" viewBox=\"0 0 20 20\"><path fill=\"#1e293b\" d=\"M5 10a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0\"/></svg>\n );\n }\n);\n\nMagicko3DotsMore.displayName = 'Magicko3DotsMore';\n","import React from 'react';\n\n/**\n * Props for the MagickoArchive icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface MagickoArchiveProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * MagickoArchive icon component\n * @example\n * ```tsx\n * import { MagickoArchive } from 'magick-icons';\n * \n * <MagickoArchive size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const MagickoArchive = React.forwardRef<SVGSVGElement, MagickoArchiveProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" fill=\"none\" viewBox=\"0 0 18 18\"><path fill=\"#1e293b\" d=\"M12.75 17.959h-7.5c-2.75 0-3.125-1.5-3.125-3.125V7.517a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v7.317c0 1.45.25 1.875 1.875 1.875h7.5c1.625 0 1.875-.425 1.875-1.875V7.517a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v7.317c0 1.625-.375 3.125-3.125 3.125\"/><path fill=\"#1e293b\" d=\"M14.833 7.958H3.167C1.15 7.958.042 6.85.042 4.833V3.167C.042 1.15 1.15.042 3.167.042h11.666c2.017 0 3.125 1.108 3.125 3.125v1.666c0 2.017-1.108 3.125-3.125 3.125M3.167 1.292c-1.317 0-1.875.558-1.875 1.875v1.666c0 1.317.558 1.875 1.875 1.875h11.666c1.317 0 1.875-.558 1.875-1.875V3.167c0-1.317-.558-1.875-1.875-1.875zm7.35 10H7.483a.63.63 0 0 1-.625-.625.63.63 0 0 1 .625-.625h3.034a.63.63 0 0 1 .625.625.63.63 0 0 1-.625.625\"/></svg>\n );\n }\n);\n\nMagickoArchive.displayName = 'MagickoArchive';\n","import React from 'react';\n\n/**\n * Props for the MagickoChart icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface MagickoChartProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * MagickoChart icon component\n * @example\n * ```tsx\n * import { MagickoChart } from 'magick-icons';\n * \n * <MagickoChart size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const MagickoChart = React.forwardRef<SVGSVGElement, MagickoChartProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" fill=\"none\" viewBox=\"0 0 20 20\"><path fill=\"#1e293b\" d=\"M3.333 18.958a2.29 2.29 0 0 1-2.291-2.291V8.333a2.29 2.29 0 0 1 2.291-2.291 2.29 2.29 0 0 1 2.292 2.291v8.334a2.29 2.29 0 0 1-2.292 2.291m0-11.666a1.04 1.04 0 0 0-1.041 1.041v8.334a1.042 1.042 0 0 0 2.083 0V8.333c0-.575-.467-1.041-1.042-1.041M10 18.958a2.29 2.29 0 0 1-2.292-2.291V3.333A2.29 2.29 0 0 1 10 1.042a2.29 2.29 0 0 1 2.292 2.291v13.334A2.29 2.29 0 0 1 10 18.958m0-16.666c-.575 0-1.042.466-1.042 1.041v13.334a1.042 1.042 0 0 0 2.084 0V3.333c0-.575-.467-1.041-1.042-1.041m6.667 16.666a2.29 2.29 0 0 1-2.292-2.291v-3.334a2.29 2.29 0 0 1 2.292-2.291 2.29 2.29 0 0 1 2.291 2.291v3.334a2.29 2.29 0 0 1-2.291 2.291m0-6.666c-.575 0-1.042.466-1.042 1.041v3.334a1.042 1.042 0 0 0 2.083 0v-3.334a1.04 1.04 0 0 0-1.041-1.041\"/></svg>\n );\n }\n);\n\nMagickoChart.displayName = 'MagickoChart';\n"],"mappings":"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","names":["React","import_react","import_jsx_runtime","React","import_react","import_jsx_runtime","React","import_react","import_jsx_runtime","React","import_react","import_jsx_runtime","React","import_react","import_jsx_runtime","React","import_react","import_jsx_runtime","React"]}
1
+ {"version":3,"sources":["index.ts","icons/Enter.tsx","icons/Frame.tsx","icons/Google.tsx","icons/IconSize.tsx","icons/Legal.tsx","icons/LegalModule.tsx","icons/Magicko3DotsMore.tsx","icons/MagickoArchive.tsx","icons/MagickoChart.tsx","icons/MagickoKey.tsx","icons/MagickoProfileCircle.tsx","icons/MagickoSidebarLeft.tsx","icons/MagickoSortDescending.tsx","icons/MagickoSpeaker.tsx","icons/MagickoTelescope.tsx","icons/Magicpen.tsx"],"sourcesContent":["// Auto-generated file - do not edit manually\n/**\n * @packageDocumentation\n * Magick Icons - SVG icon components for React\n * \n * @example\n * ```tsx\n * import { Enter } from 'magick-icons';\n * \n * function MyComponent() {\n * return <Enter size={24} className=\"text-blue-500\" />;\n * }\n * ```\n */\n\n/**\n * Enter icon component and its props type\n * @see {@link EnterProps} for available props\n */\nexport { Enter, type EnterProps } from './icons/Enter';\n\n/**\n * Frame icon component and its props type\n * @see {@link FrameProps} for available props\n */\nexport { Frame, type FrameProps } from './icons/Frame';\n\n/**\n * Google icon component and its props type\n * @see {@link GoogleProps} for available props\n */\nexport { Google, type GoogleProps } from './icons/Google';\n\n/**\n * IconSize icon component and its props type\n * @see {@link IconSizeProps} for available props\n */\nexport { IconSize, type IconSizeProps } from './icons/IconSize';\n\n/**\n * Legal icon component and its props type\n * @see {@link LegalProps} for available props\n */\nexport { Legal, type LegalProps } from './icons/Legal';\n\n/**\n * LegalModule icon component and its props type\n * @see {@link LegalModuleProps} for available props\n */\nexport { LegalModule, type LegalModuleProps } from './icons/LegalModule';\n\n/**\n * Magicko3DotsMore icon component and its props type\n * @see {@link Magicko3DotsMoreProps} for available props\n */\nexport { Magicko3DotsMore, type Magicko3DotsMoreProps } from './icons/Magicko3DotsMore';\n\n/**\n * MagickoArchive icon component and its props type\n * @see {@link MagickoArchiveProps} for available props\n */\nexport { MagickoArchive, type MagickoArchiveProps } from './icons/MagickoArchive';\n\n/**\n * MagickoChart icon component and its props type\n * @see {@link MagickoChartProps} for available props\n */\nexport { MagickoChart, type MagickoChartProps } from './icons/MagickoChart';\n\n/**\n * MagickoKey icon component and its props type\n * @see {@link MagickoKeyProps} for available props\n */\nexport { MagickoKey, type MagickoKeyProps } from './icons/MagickoKey';\n\n/**\n * MagickoProfileCircle icon component and its props type\n * @see {@link MagickoProfileCircleProps} for available props\n */\nexport { MagickoProfileCircle, type MagickoProfileCircleProps } from './icons/MagickoProfileCircle';\n\n/**\n * MagickoSidebarLeft icon component and its props type\n * @see {@link MagickoSidebarLeftProps} for available props\n */\nexport { MagickoSidebarLeft, type MagickoSidebarLeftProps } from './icons/MagickoSidebarLeft';\n\n/**\n * MagickoSortDescending icon component and its props type\n * @see {@link MagickoSortDescendingProps} for available props\n */\nexport { MagickoSortDescending, type MagickoSortDescendingProps } from './icons/MagickoSortDescending';\n\n/**\n * MagickoSpeaker icon component and its props type\n * @see {@link MagickoSpeakerProps} for available props\n */\nexport { MagickoSpeaker, type MagickoSpeakerProps } from './icons/MagickoSpeaker';\n\n/**\n * MagickoTelescope icon component and its props type\n * @see {@link MagickoTelescopeProps} for available props\n */\nexport { MagickoTelescope, type MagickoTelescopeProps } from './icons/MagickoTelescope';\n\n/**\n * Magicpen icon component and its props type\n * @see {@link MagicpenProps} for available props\n */\nexport { Magicpen, type MagicpenProps } from './icons/Magicpen';\n","import React from 'react';\n\n/**\n * Props for the Enter icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface EnterProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Enter icon component\n * @example\n * ```tsx\n * import { Enter } from 'magick-icons';\n * \n * <Enter size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Enter = React.forwardRef<SVGSVGElement, EnterProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\"><path fill=\"#000\" d=\"M19.25 6v2A3.25 3.25 0 0 1 16 11.25H5.81l3.72-3.72.052-.056a.75.75 0 0 0-1.056-1.056l-.056.052-5 5a.75.75 0 0 0 0 1.06l5 5a.75.75 0 1 0 1.06-1.06l-3.72-3.72H16A4.75 4.75 0 0 0 20.75 8V6a.75.75 0 1 0-1.5 0\"/></svg>\n );\n }\n);\n\nEnter.displayName = 'Enter';\n","import React from 'react';\n\n/**\n * Props for the Frame icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface FrameProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Frame icon component\n * @example\n * ```tsx\n * import { Frame } from 'magick-icons';\n * \n * <Frame size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Frame = React.forwardRef<SVGSVGElement, FrameProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\"><g fill=\"#000\" clip-path=\"url(#clip0_7_897)\"><path d=\"M16.734 9.079a1.09 1.09 0 1 0-1.488-1.596l-3.192 2.976-2.976-3.194a1.09 1.09 0 0 0-1.595 1.488l2.977 3.192-3.194 2.976a1.09 1.09 0 1 0 1.488 1.595l3.192-2.974 2.976 3.191a1.091 1.091 0 1 0 1.595-1.487l-2.975-3.191z\"/><path fill-rule=\"evenodd\" d=\"M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12m12 9.818a9.819 9.819 0 1 1 0-19.637 9.819 9.819 0 0 1 0 19.637\" clip-rule=\"evenodd\"/></g><defs><clipPath id=\"clip0_7_897\"><path fill=\"#fff\" d=\"M0 0h24v24H0z\"/></clipPath></defs></svg>\n );\n }\n);\n\nFrame.displayName = 'Frame';\n","import React from 'react';\n\n/**\n * Props for the Google icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface GoogleProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Google icon component\n * @example\n * ```tsx\n * import { Google } from 'magick-icons';\n * \n * <Google size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Google = React.forwardRef<SVGSVGElement, GoogleProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"21\" height=\"20\" fill=\"none\" viewBox=\"0 0 21 20\"><path fill=\"#4285f4\" d=\"M19.251 10.194c0-.72-.06-1.244-.188-1.789H10.68v3.248h4.92c-.099.807-.635 2.022-1.825 2.839l-.017.108 2.65 2.013.184.018c1.687-1.527 2.66-3.773 2.66-6.437\"/><path fill=\"#34a853\" d=\"M10.68 18.75c2.41 0 4.434-.778 5.912-2.12l-2.817-2.138c-.754.515-1.766.875-3.096.875A5.365 5.365 0 0 1 5.6 11.73l-.104.01-2.756 2.09-.036.098c1.468 2.858 4.484 4.822 7.976 4.822\"/><path fill=\"#fbbc05\" d=\"M5.6 11.73A5.3 5.3 0 0 1 5.301 10c0-.603.109-1.186.287-1.73l-.005-.117-2.79-2.123-.092.042A8.6 8.6 0 0 0 1.75 10c0 1.41.347 2.742.952 3.928z\"/><path fill=\"#eb4335\" d=\"M10.68 4.633c1.676 0 2.807.71 3.452 1.303l2.52-2.411c-1.548-1.41-3.562-2.275-5.973-2.275-3.492 0-6.508 1.964-7.976 4.822L5.59 8.27a5.39 5.39 0 0 1 5.09-3.636\"/></svg>\n );\n }\n);\n\nGoogle.displayName = 'Google';\n","import React from 'react';\n\n/**\n * Props for the IconSize icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface IconSizeProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * IconSize icon component\n * @example\n * ```tsx\n * import { IconSize } from 'magick-icons';\n * \n * <IconSize size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const IconSize = React.forwardRef<SVGSVGElement, IconSizeProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"14\" height=\"15\" fill=\"none\" viewBox=\"0 0 14 15\"><path stroke=\"url(#paint0_linear_2807_23927)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M9.334 12.602v-1.167A2.333 2.333 0 0 0 7 9.102H3.5a2.333 2.333 0 0 0-2.333 2.333v1.167m11.667 0v-1.167a2.334 2.334 0 0 0-1.75-2.258m-1.75-7a2.333 2.333 0 0 1 0 4.521m-1.75-2.263a2.333 2.333 0 1 1-4.667 0 2.333 2.333 0 0 1 4.667 0\"/><defs><linearGradient id=\"paint0_linear_2807_23927\" x1=\"1.167\" x2=\"9.964\" y1=\"2.552\" y2=\"14.349\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#a5f3fc\"/><stop offset=\".435\" stop-color=\"#3b82f6\"/><stop offset=\"1\" stop-color=\"#38bdf8\"/></linearGradient></defs></svg>\n );\n }\n);\n\nIconSize.displayName = 'IconSize';\n","import React from 'react';\n\n/**\n * Props for the Legal icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface LegalProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Legal icon component\n * @example\n * ```tsx\n * import { Legal } from 'magick-icons';\n * \n * <Legal size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Legal = React.forwardRef<SVGSVGElement, LegalProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" fill=\"none\" viewBox=\"0 0 20 20\"><path fill=\"#64748b\" d=\"M14.884 14.858c-2.242-.075-4-1.791-4.117-3.991-.025-.35.058-.7.25-1.009l3.3-5.591a.63.63 0 0 1 1.083 0s2.6 4.408 3.309 5.6c.183.3.274.65.25 1.008a4.194 4.194 0 0 1-4.067 3.983zm-.026-9.041L12.093 10.5a.47.47 0 0 0-.075.292 2.954 2.954 0 0 0 2.867 2.816c1.508-.05 2.741-1.258 2.825-2.808 0-.1-.017-.2-.067-.283-.5-.859-1.975-3.342-2.775-4.7z\"/><path fill=\"#64748b\" d=\"M18.3 11.108h-6.875a.63.63 0 0 1-.625-.625.63.63 0 0 1 .625-.625H18.3a.63.63 0 0 1 .625.625.63.63 0 0 1-.625.625M5.158 17.709c-2.241-.075-4-1.792-4.116-3.992A1.7 1.7 0 0 1 1.3 12.7l3.3-5.592a.63.63 0 0 1 1.083 0l3.309 5.6c.183.309.266.659.241 1.009A4.194 4.194 0 0 1 5.167 17.7zm-.016-9.042-2.767 4.692a.6.6 0 0 0-.083.291 2.95 2.95 0 0 0 2.866 2.809c1.509-.05 2.742-1.259 2.825-2.809 0-.108-.016-.2-.066-.292l-2.767-4.7z\"/><path fill=\"#64748b\" d=\"M8.575 13.958H1.7a.63.63 0 0 1-.625-.625.63.63 0 0 1 .625-.625h6.875a.63.63 0 0 1 .625.625.63.63 0 0 1-.625.625m-3.433-5.9a.63.63 0 0 1-.6-.45.62.62 0 0 1 .425-.775l9.716-2.85c.334-.1.675.092.775.425a.62.62 0 0 1-.425.775l-9.716 2.85a.6.6 0 0 1-.176.025\"/><path fill=\"#64748b\" d=\"M9.308 6.833a.63.63 0 0 1-.625-.625V2.917a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v3.291a.63.63 0 0 1-.625.625\"/></svg>\n );\n }\n);\n\nLegal.displayName = 'Legal';\n","import React from 'react';\n\n/**\n * Props for the LegalModule icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface LegalModuleProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * LegalModule icon component\n * @example\n * ```tsx\n * import { LegalModule } from 'magick-icons';\n * \n * <LegalModule size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const LegalModule = React.forwardRef<SVGSVGElement, LegalModuleProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"17\" height=\"16\" fill=\"none\" viewBox=\"0 0 17 16\"><g id=\"Legal Module\" fill=\"#334155\"><path id=\"Vector\" d=\"M1.19 14.638v-.5q0-.173.034-.344a.55.55 0 0 1 .508-.453q.108-.013.218-.013h7.492q.142 0 .28.031a.55.55 0 0 1 .435.517c.018.223.014.448.016.67 0 .065.018.085.079.107q.195.067.378.164a.37.37 0 0 1 .183.241.94.94 0 0 1 0 .548.56.56 0 0 1-.523.386q-.102.01-.205.009H1.27q-.135 0-.267-.026a.6.6 0 0 1-.491-.709 1 1 0 0 1 .014-.091c.06-.31.223-.46.565-.52z\"/><g id=\"Vector_2\"><path d=\"m6.887 1.91 3.72 3.876-3.382 3.24-3.726-3.867zm7.46 13.095a2.8 2.8 0 0 1-1.05-.819Q11.545 12.057 9.8 9.92a5 5 0 0 1-.545-.914l-.124-.244a.22.22 0 0 1 .033-.267q.406-.396.82-.786a.2.2 0 0 1 .24-.042q.596.289 1.121.69.542.462 1.075.935l3.092 2.75c.474.412.804.966.942 1.579a1.34 1.34 0 0 1-.22 1.142 1.2 1.2 0 0 1-1.129.461 2.4 2.4 0 0 1-.76-.219M7.054.874c.06-.073.113-.15.18-.222.156-.158.317-.308.475-.463.276-.257.528-.253.79.02l.886.918L12.33 4.2q.079.082.143.175a.406.406 0 0 1-.022.538c-.15.168-.316.32-.476.48q-.095.096-.199.18a.46.46 0 0 1-.594-.009c-.21-.198-.41-.408-.61-.616L7.228 1.473a1.2 1.2 0 0 1-.163-.22.43.43 0 0 1-.011-.38M1.572 6.136q.076-.105.16-.203c.178-.177.355-.353.544-.524a.46.46 0 0 1 .547-.087.9.9 0 0 1 .255.205c.825.848 1.632 1.694 2.447 2.539L6.85 9.444q.07.075.13.16a.42.42 0 0 1-.02.59c-.145.168-.312.318-.472.473a2 2 0 0 1-.204.174.426.426 0 0 1-.582-.01 5 5 0 0 1-.396-.39 2025 2025 0 0 1-3.53-3.681 1.6 1.6 0 0 1-.189-.244.41.41 0 0 1-.015-.38\"/></g></g></svg>\n );\n }\n);\n\nLegalModule.displayName = 'LegalModule';\n","import React from 'react';\n\n/**\n * Props for the Magicko3DotsMore icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface Magicko3DotsMoreProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Magicko3DotsMore icon component\n * @example\n * ```tsx\n * import { Magicko3DotsMore } from 'magick-icons';\n * \n * <Magicko3DotsMore size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Magicko3DotsMore = React.forwardRef<SVGSVGElement, Magicko3DotsMoreProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" fill=\"none\" viewBox=\"0 0 20 20\"><path fill=\"#1e293b\" d=\"M5 10a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0\"/></svg>\n );\n }\n);\n\nMagicko3DotsMore.displayName = 'Magicko3DotsMore';\n","import React from 'react';\n\n/**\n * Props for the MagickoArchive icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface MagickoArchiveProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * MagickoArchive icon component\n * @example\n * ```tsx\n * import { MagickoArchive } from 'magick-icons';\n * \n * <MagickoArchive size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const MagickoArchive = React.forwardRef<SVGSVGElement, MagickoArchiveProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" fill=\"none\" viewBox=\"0 0 18 18\"><path fill=\"#1e293b\" d=\"M12.75 17.959h-7.5c-2.75 0-3.125-1.5-3.125-3.125V7.517a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v7.317c0 1.45.25 1.875 1.875 1.875h7.5c1.625 0 1.875-.425 1.875-1.875V7.517a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v7.317c0 1.625-.375 3.125-3.125 3.125\"/><path fill=\"#1e293b\" d=\"M14.833 7.958H3.167C1.15 7.958.042 6.85.042 4.833V3.167C.042 1.15 1.15.042 3.167.042h11.666c2.017 0 3.125 1.108 3.125 3.125v1.666c0 2.017-1.108 3.125-3.125 3.125M3.167 1.292c-1.317 0-1.875.558-1.875 1.875v1.666c0 1.317.558 1.875 1.875 1.875h11.666c1.317 0 1.875-.558 1.875-1.875V3.167c0-1.317-.558-1.875-1.875-1.875zm7.35 10H7.483a.63.63 0 0 1-.625-.625.63.63 0 0 1 .625-.625h3.034a.63.63 0 0 1 .625.625.63.63 0 0 1-.625.625\"/></svg>\n );\n }\n);\n\nMagickoArchive.displayName = 'MagickoArchive';\n","import React from 'react';\n\n/**\n * Props for the MagickoChart icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface MagickoChartProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * MagickoChart icon component\n * @example\n * ```tsx\n * import { MagickoChart } from 'magick-icons';\n * \n * <MagickoChart size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const MagickoChart = React.forwardRef<SVGSVGElement, MagickoChartProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" fill=\"none\" viewBox=\"0 0 20 20\"><path fill=\"#1e293b\" d=\"M3.333 18.958a2.29 2.29 0 0 1-2.291-2.291V8.333a2.29 2.29 0 0 1 2.291-2.291 2.29 2.29 0 0 1 2.292 2.291v8.334a2.29 2.29 0 0 1-2.292 2.291m0-11.666a1.04 1.04 0 0 0-1.041 1.041v8.334a1.042 1.042 0 0 0 2.083 0V8.333c0-.575-.467-1.041-1.042-1.041M10 18.958a2.29 2.29 0 0 1-2.292-2.291V3.333A2.29 2.29 0 0 1 10 1.042a2.29 2.29 0 0 1 2.292 2.291v13.334A2.29 2.29 0 0 1 10 18.958m0-16.666c-.575 0-1.042.466-1.042 1.041v13.334a1.042 1.042 0 0 0 2.084 0V3.333c0-.575-.467-1.041-1.042-1.041m6.667 16.666a2.29 2.29 0 0 1-2.292-2.291v-3.334a2.29 2.29 0 0 1 2.292-2.291 2.29 2.29 0 0 1 2.291 2.291v3.334a2.29 2.29 0 0 1-2.291 2.291m0-6.666c-.575 0-1.042.466-1.042 1.041v3.334a1.042 1.042 0 0 0 2.083 0v-3.334a1.04 1.04 0 0 0-1.041-1.041\"/></svg>\n );\n }\n);\n\nMagickoChart.displayName = 'MagickoChart';\n","import React from 'react';\n\n/**\n * Props for the MagickoKey icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface MagickoKeyProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * MagickoKey icon component\n * @example\n * ```tsx\n * import { MagickoKey } from 'magick-icons';\n * \n * <MagickoKey size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const MagickoKey = React.forwardRef<SVGSVGElement, MagickoKeyProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" fill=\"none\" viewBox=\"0 0 20 20\"><path fill=\"#1e293b\" d=\"M5.15 18.958c-.083 0-.175-.008-.25-.016l-1.808-.25c-.867-.117-1.65-.892-1.784-1.775l-.25-1.825c-.083-.584.167-1.342.584-1.767L5.3 9.667a6.9 6.9 0 0 1 1.833-6.592c2.7-2.692 7.092-2.7 9.8 0a6.88 6.88 0 0 1 2.025 4.9 6.88 6.88 0 0 1-2.025 4.9c-1.75 1.733-4.241 2.417-6.591 1.817L6.675 18.35c-.35.367-.975.608-1.525.608M12.025 2.3c-1.458 0-2.908.55-4.017 1.658a5.67 5.67 0 0 0-1.416 5.709.62.62 0 0 1-.159.625l-3.916 3.916c-.142.142-.259.509-.234.7l.25 1.825c.05.317.392.675.709.717l1.816.25c.2.033.567-.083.709-.225L9.7 13.55a.62.62 0 0 1 .625-.15 5.65 5.65 0 0 0 5.7-1.408 5.65 5.65 0 0 0 1.658-4.017 5.64 5.64 0 0 0-1.658-4.017 5.6 5.6 0 0 0-4-1.658\"/><path fill=\"#1e293b\" d=\"M7.658 17.117a.62.62 0 0 1-.441-.184L5.3 15.017a.63.63 0 0 1 0-.884.63.63 0 0 1 .883 0L8.1 16.05a.63.63 0 0 1 0 .883.62.62 0 0 1-.442.183m4.425-7.324a1.88 1.88 0 0 1-1.875-1.875c0-1.034.842-1.875 1.875-1.875 1.034 0 1.875.841 1.875 1.875a1.88 1.88 0 0 1-1.875 1.875m0-2.5a.63.63 0 0 0-.625.625.63.63 0 0 0 .625.625.63.63 0 0 0 .625-.625.63.63 0 0 0-.625-.625\"/></svg>\n );\n }\n);\n\nMagickoKey.displayName = 'MagickoKey';\n","import React from 'react';\n\n/**\n * Props for the MagickoProfileCircle icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface MagickoProfileCircleProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * MagickoProfileCircle icon component\n * @example\n * ```tsx\n * import { MagickoProfileCircle } from 'magick-icons';\n * \n * <MagickoProfileCircle size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const MagickoProfileCircle = React.forwardRef<SVGSVGElement, MagickoProfileCircleProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" fill=\"none\" viewBox=\"0 0 20 20\"><path fill=\"#1e293b\" d=\"M10.1 11.276h-.142c-1.891-.059-3.308-1.534-3.308-3.35a3.364 3.364 0 0 1 3.358-3.359 3.364 3.364 0 0 1 3.359 3.358 3.345 3.345 0 0 1-3.242 3.35zM10 5.809a2.11 2.11 0 0 0-2.108 2.108 2.1 2.1 0 0 0 2.025 2.108.7.7 0 0 1 .191 0 2.113 2.113 0 0 0 2-2.108A2.11 2.11 0 0 0 10 5.81m0 13.149a8.93 8.93 0 0 1-6.042-2.35.63.63 0 0 1-.2-.525c.109-.992.725-1.917 1.75-2.6 2.484-1.65 6.509-1.65 8.984 0 1.025.691 1.641 1.608 1.75 2.6.025.2-.05.391-.2.525A8.93 8.93 0 0 1 10 18.959m-4.933-3.042A7.67 7.67 0 0 0 10 17.709c1.808 0 3.55-.634 4.933-1.792-.15-.508-.55-1-1.141-1.4-2.05-1.367-5.525-1.367-7.592 0-.592.4-.983.892-1.133 1.4\"/><path fill=\"#1e293b\" d=\"M10 18.959c-4.942 0-8.958-4.017-8.958-8.959S5.058 1.042 10 1.042 18.958 5.058 18.958 10 14.942 18.96 10 18.96m0-16.667C5.75 2.292 2.292 5.75 2.292 10S5.75 17.71 10 17.71s7.708-3.46 7.708-7.71S14.25 2.292 10 2.292\"/></svg>\n );\n }\n);\n\nMagickoProfileCircle.displayName = 'MagickoProfileCircle';\n","import React from 'react';\n\n/**\n * Props for the MagickoSidebarLeft icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface MagickoSidebarLeftProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * MagickoSidebarLeft icon component\n * @example\n * ```tsx\n * import { MagickoSidebarLeft } from 'magick-icons';\n * \n * <MagickoSidebarLeft size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const MagickoSidebarLeft = React.forwardRef<SVGSVGElement, MagickoSidebarLeftProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" fill=\"none\" viewBox=\"0 0 20 20\"><path fill=\"#1e293b\" d=\"M12.475 18.958h-5c-4.525 0-6.458-1.933-6.458-6.458v-5c0-4.525 1.933-6.458 6.458-6.458h5c4.525 0 6.458 1.933 6.458 6.458v5c0 4.525-1.925 6.458-6.458 6.458m-5-16.666c-3.842 0-5.208 1.366-5.208 5.208v5c0 3.842 1.366 5.208 5.208 5.208h5c3.842 0 5.208-1.366 5.208-5.208v-5c0-3.842-1.366-5.208-5.208-5.208z\"/><path fill=\"#1e293b\" d=\"M6.642 18.958a.63.63 0 0 1-.625-.625V1.667a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v16.666a.624.624 0 0 1-.625.625m5.833-6.198a.62.62 0 0 1-.442-.184L9.9 10.443a.63.63 0 0 1 0-.884l2.133-2.133a.63.63 0 0 1 .884 0 .63.63 0 0 1 0 .883l-1.684 1.692 1.692 1.692a.63.63 0 0 1 0 .883.62.62 0 0 1-.45.183\"/></svg>\n );\n }\n);\n\nMagickoSidebarLeft.displayName = 'MagickoSidebarLeft';\n","import React from 'react';\n\n/**\n * Props for the MagickoSortDescending icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface MagickoSortDescendingProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * MagickoSortDescending icon component\n * @example\n * ```tsx\n * import { MagickoSortDescending } from 'magick-icons';\n * \n * <MagickoSortDescending size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const MagickoSortDescending = React.forwardRef<SVGSVGElement, MagickoSortDescendingProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" fill=\"none\" viewBox=\"0 0 20 20\"><path fill=\"#1e293b\" d=\"M15.075 16.777c-.342 0-.625-.272-.625-.6V4.48c0-.328.283-.6.625-.6.341 0 .625.272.625.6v11.696c0 .328-.284.6-.625.6m-6.2-10.72h-7c-.342 0-.625-.272-.625-.6s.283-.6.625-.6h7c.342 0 .625.272.625.6s-.283.6-.625.6m0 4.384h-7c-.342 0-.625-.272-.625-.6s.283-.6.625-.6h7c.342 0 .625.272.625.6s-.283.6-.625.6m-3.617 4.384H1.875c-.342 0-.625-.272-.625-.6s.283-.6.625-.6h3.383c.342 0 .625.272.625.6s-.283.6-.625.6\"/><path fill=\"#1e293b\" d=\"M15.075 16.777a.63.63 0 0 1-.442-.177l-3.041-2.92a.587.587 0 0 1 0-.848.65.65 0 0 1 .883 0l2.6 2.496 2.608-2.496a.65.65 0 0 1 .884 0 .587.587 0 0 1 0 .848l-3.05 2.92a.67.67 0 0 1-.442.177\"/></svg>\n );\n }\n);\n\nMagickoSortDescending.displayName = 'MagickoSortDescending';\n","import React from 'react';\n\n/**\n * Props for the MagickoSpeaker icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface MagickoSpeakerProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * MagickoSpeaker icon component\n * @example\n * ```tsx\n * import { MagickoSpeaker } from 'magick-icons';\n * \n * <MagickoSpeaker size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const MagickoSpeaker = React.forwardRef<SVGSVGElement, MagickoSpeakerProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\"><path fill=\"#1e293b\" d=\"M18.71 15.36c-.52 0-1.11-.12-1.73-.35-1.67-.6-3.58-2.01-5.24-3.87S8.9 7.22 8.48 5.49c-.37-1.48-.15-2.69.64-3.39.9-.8 2.35-.8 4.08.01 1.53.71 3.17 2 4.61 3.62 3.22 3.61 4.35 7.5 2.62 9.04-.45.39-1.03.59-1.72.59M10.85 3c-.31 0-.56.07-.72.22-.34.3-.4 1.02-.18 1.91.36 1.51 1.42 3.33 2.92 5.01s3.19 2.94 4.64 3.46c.88.33 1.6.34 1.93.04.8-.71.14-3.69-2.74-6.92-1.31-1.47-2.78-2.62-4.13-3.25-.67-.31-1.26-.47-1.72-.47\"/><path fill=\"#1e293b\" d=\"M5.71 19.48c-.83 0-1.62-.35-2.19-.99-.79-.88-.98-2.1-.49-3.18l5.53-12.4c.17-.38.61-.55.99-.38s.55.61.38.99L4.4 15.92c-.24.54-.15 1.13.24 1.57s.97.6 1.53.42l12.96-4.1c.4-.13.82.09.94.49s-.09.82-.49.94l-12.96 4.1c-.31.09-.61.14-.91.14\"/><path fill=\"#1e293b\" d=\"M10.41 22.5c-1.2 0-2.32-.77-2.7-1.98l-.63-1.99c-.12-.4.09-.82.49-.94.4-.13.82.09.94.49l.63 1.99c.11.34.34.61.66.78s.68.2 1.02.09l1.99-.63c.34-.11.61-.34.78-.66s.2-.68.09-1.02l-.63-1.99c-.12-.4.09-.82.49-.94.4-.13.82.09.94.49l.63 1.99c.23.72.16 1.49-.19 2.16s-.94 1.17-1.66 1.4l-1.99.63c-.29.09-.57.13-.86.13\"/></svg>\n );\n }\n);\n\nMagickoSpeaker.displayName = 'MagickoSpeaker';\n","import React from 'react';\n\n/**\n * Props for the MagickoTelescope icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface MagickoTelescopeProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * MagickoTelescope icon component\n * @example\n * ```tsx\n * import { MagickoTelescope } from 'magick-icons';\n * \n * <MagickoTelescope size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const MagickoTelescope = React.forwardRef<SVGSVGElement, MagickoTelescopeProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" fill=\"none\" viewBox=\"0 0 20 20\"><path fill=\"#1e293b\" d=\"M12.525 9.6c-.2 0-.4-.1-.517-.275L9.342 5.34a.63.63 0 0 1 .175-.867l4.716-3.158c.367-.25.809-.333 1.242-.25s.808.334 1.058.7l1.517 2.259a1.655 1.655 0 0 1-.458 2.3l-4.709 3.158a.6.6 0 0 1-.358.117m-1.792-4.434L12.7 8.108 16.892 5.3A.4.4 0 0 0 17 4.733l-1.517-2.258a.4.4 0 0 0-.258-.175.4.4 0 0 0-.308.058z\"/><path fill=\"#1e293b\" d=\"M8.284 11.867c-.2 0-.4-.1-.517-.276L5.633 8.409a.62.62 0 0 1 .176-.867l3.983-2.666a.62.62 0 0 1 .466-.092.6.6 0 0 1 .4.267l2.134 3.183a.62.62 0 0 1-.175.867l-3.984 2.667a.7.7 0 0 1-.35.1M7.017 8.233l1.433 2.142 2.942-1.967-1.434-2.15z\"/><path fill=\"#1e293b\" d=\"M4.4 14.017c-.467 0-.933-.225-1.217-.65l-.941-1.4a1.44 1.44 0 0 1-.217-1.091c.075-.384.292-.709.617-.925l3.291-2.2a.62.62 0 0 1 .867.175l1.867 2.783a.62.62 0 0 1-.175.867l-3.292 2.2a1.47 1.47 0 0 1-.8.241m1.708-4.891-2.766 1.85a.213.213 0 0 0-.059.291l.942 1.4a.213.213 0 0 0 .292.059l2.766-1.85zm.192 9.833a.6.6 0 0 1-.258-.058.62.62 0 0 1-.309-.825l3.742-8.167a.622.622 0 1 1 1.133.517l-3.741 8.166a.63.63 0 0 1-.567.367\"/><path fill=\"#1e293b\" d=\"M13.7 18.958a.61.61 0 0 1-.567-.367l-3.7-8.167a.626.626 0 0 1 .309-.825.63.63 0 0 1 .825.309l3.7 8.166a.626.626 0 0 1-.567.884\"/></svg>\n );\n }\n);\n\nMagickoTelescope.displayName = 'MagickoTelescope';\n","import React from 'react';\n\n/**\n * Props for the Magicpen icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface MagicpenProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Magicpen icon component\n * @example\n * ```tsx\n * import { Magicpen } from 'magick-icons';\n * \n * <Magicpen size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Magicpen = React.forwardRef<SVGSVGElement, MagicpenProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"#fff\" viewBox=\"0 0 24 24\"><path fill-rule=\"evenodd\" d=\"M3 19 19.002 2.998 22 5.996 19.537 8.46l-2.997-3-1.06 1.06 2.998 2.999-12.48 12.479z\" clip-rule=\"evenodd\"/><path d=\"M9.5 2.44 11 2l-.44 1.5L11 5l-1.5-.44L8 5l.44-1.5L8 2zm-4 6L7 8l-.44 1.5L7 11l-1.5-.44L4 11l.44-1.5L4 8zm15 5L22 13l-.44 1.5L22 16l-1.5-.44L19 16l.44-1.5L19 13z\" opacity=\".4\"/></svg>\n );\n }\n);\n\nMagicpen.displayName = 'Magicpen';\n"],"mappings":"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","names":["React","import_react","import_jsx_runtime","React","import_react","import_jsx_runtime","React","import_react","import_jsx_runtime","React","import_react","import_jsx_runtime","React","import_react","import_jsx_runtime","React","import_react","import_jsx_runtime","React","import_react","import_jsx_runtime","React","import_react","import_jsx_runtime","React","import_react","import_jsx_runtime","React","import_react","import_jsx_runtime","React","import_react","import_jsx_runtime","React","import_react","import_jsx_runtime","React","import_react","import_jsx_runtime","React","import_react","import_jsx_runtime","React","import_react","import_jsx_runtime","React"]}
package/index.mjs CHANGED
@@ -56,45 +56,176 @@ var IconSize = React4.forwardRef(
56
56
  );
57
57
  IconSize.displayName = "IconSize";
58
58
 
59
- // dist/icons/Magicko3DotsMore.tsx
59
+ // dist/icons/Legal.tsx
60
60
  import React5 from "react";
61
- import { jsx as jsx5 } from "react/jsx-runtime";
62
- var Magicko3DotsMore = React5.forwardRef(
61
+ import { jsx as jsx5, jsxs as jsxs4 } from "react/jsx-runtime";
62
+ var Legal = React5.forwardRef(
63
+ ({ size, ...props }, ref) => {
64
+ return /* @__PURE__ */ jsxs4("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", children: [
65
+ /* @__PURE__ */ jsx5("path", { fill: "#64748b", d: "M14.884 14.858c-2.242-.075-4-1.791-4.117-3.991-.025-.35.058-.7.25-1.009l3.3-5.591a.63.63 0 0 1 1.083 0s2.6 4.408 3.309 5.6c.183.3.274.65.25 1.008a4.194 4.194 0 0 1-4.067 3.983zm-.026-9.041L12.093 10.5a.47.47 0 0 0-.075.292 2.954 2.954 0 0 0 2.867 2.816c1.508-.05 2.741-1.258 2.825-2.808 0-.1-.017-.2-.067-.283-.5-.859-1.975-3.342-2.775-4.7z" }),
66
+ /* @__PURE__ */ jsx5("path", { fill: "#64748b", d: "M18.3 11.108h-6.875a.63.63 0 0 1-.625-.625.63.63 0 0 1 .625-.625H18.3a.63.63 0 0 1 .625.625.63.63 0 0 1-.625.625M5.158 17.709c-2.241-.075-4-1.792-4.116-3.992A1.7 1.7 0 0 1 1.3 12.7l3.3-5.592a.63.63 0 0 1 1.083 0l3.309 5.6c.183.309.266.659.241 1.009A4.194 4.194 0 0 1 5.167 17.7zm-.016-9.042-2.767 4.692a.6.6 0 0 0-.083.291 2.95 2.95 0 0 0 2.866 2.809c1.509-.05 2.742-1.259 2.825-2.809 0-.108-.016-.2-.066-.292l-2.767-4.7z" }),
67
+ /* @__PURE__ */ jsx5("path", { fill: "#64748b", d: "M8.575 13.958H1.7a.63.63 0 0 1-.625-.625.63.63 0 0 1 .625-.625h6.875a.63.63 0 0 1 .625.625.63.63 0 0 1-.625.625m-3.433-5.9a.63.63 0 0 1-.6-.45.62.62 0 0 1 .425-.775l9.716-2.85c.334-.1.675.092.775.425a.62.62 0 0 1-.425.775l-9.716 2.85a.6.6 0 0 1-.176.025" }),
68
+ /* @__PURE__ */ jsx5("path", { fill: "#64748b", d: "M9.308 6.833a.63.63 0 0 1-.625-.625V2.917a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v3.291a.63.63 0 0 1-.625.625" })
69
+ ] });
70
+ }
71
+ );
72
+ Legal.displayName = "Legal";
73
+
74
+ // dist/icons/LegalModule.tsx
75
+ import React6 from "react";
76
+ import { jsx as jsx6, jsxs as jsxs5 } from "react/jsx-runtime";
77
+ var LegalModule = React6.forwardRef(
78
+ ({ size, ...props }, ref) => {
79
+ return /* @__PURE__ */ jsx6("svg", { xmlns: "http://www.w3.org/2000/svg", width: "17", height: "16", fill: "none", viewBox: "0 0 17 16", children: /* @__PURE__ */ jsxs5("g", { id: "Legal Module", fill: "#334155", children: [
80
+ /* @__PURE__ */ jsx6("path", { id: "Vector", d: "M1.19 14.638v-.5q0-.173.034-.344a.55.55 0 0 1 .508-.453q.108-.013.218-.013h7.492q.142 0 .28.031a.55.55 0 0 1 .435.517c.018.223.014.448.016.67 0 .065.018.085.079.107q.195.067.378.164a.37.37 0 0 1 .183.241.94.94 0 0 1 0 .548.56.56 0 0 1-.523.386q-.102.01-.205.009H1.27q-.135 0-.267-.026a.6.6 0 0 1-.491-.709 1 1 0 0 1 .014-.091c.06-.31.223-.46.565-.52z" }),
81
+ /* @__PURE__ */ jsx6("g", { id: "Vector_2", children: /* @__PURE__ */ jsx6("path", { d: "m6.887 1.91 3.72 3.876-3.382 3.24-3.726-3.867zm7.46 13.095a2.8 2.8 0 0 1-1.05-.819Q11.545 12.057 9.8 9.92a5 5 0 0 1-.545-.914l-.124-.244a.22.22 0 0 1 .033-.267q.406-.396.82-.786a.2.2 0 0 1 .24-.042q.596.289 1.121.69.542.462 1.075.935l3.092 2.75c.474.412.804.966.942 1.579a1.34 1.34 0 0 1-.22 1.142 1.2 1.2 0 0 1-1.129.461 2.4 2.4 0 0 1-.76-.219M7.054.874c.06-.073.113-.15.18-.222.156-.158.317-.308.475-.463.276-.257.528-.253.79.02l.886.918L12.33 4.2q.079.082.143.175a.406.406 0 0 1-.022.538c-.15.168-.316.32-.476.48q-.095.096-.199.18a.46.46 0 0 1-.594-.009c-.21-.198-.41-.408-.61-.616L7.228 1.473a1.2 1.2 0 0 1-.163-.22.43.43 0 0 1-.011-.38M1.572 6.136q.076-.105.16-.203c.178-.177.355-.353.544-.524a.46.46 0 0 1 .547-.087.9.9 0 0 1 .255.205c.825.848 1.632 1.694 2.447 2.539L6.85 9.444q.07.075.13.16a.42.42 0 0 1-.02.59c-.145.168-.312.318-.472.473a2 2 0 0 1-.204.174.426.426 0 0 1-.582-.01 5 5 0 0 1-.396-.39 2025 2025 0 0 1-3.53-3.681 1.6 1.6 0 0 1-.189-.244.41.41 0 0 1-.015-.38" }) })
82
+ ] }) });
83
+ }
84
+ );
85
+ LegalModule.displayName = "LegalModule";
86
+
87
+ // dist/icons/Magicko3DotsMore.tsx
88
+ import React7 from "react";
89
+ import { jsx as jsx7 } from "react/jsx-runtime";
90
+ var Magicko3DotsMore = React7.forwardRef(
63
91
  ({ size, ...props }, ref) => {
64
- return /* @__PURE__ */ jsx5("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", children: /* @__PURE__ */ jsx5("path", { fill: "#1e293b", d: "M5 10a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0" }) });
92
+ return /* @__PURE__ */ jsx7("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", children: /* @__PURE__ */ jsx7("path", { fill: "#1e293b", d: "M5 10a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0" }) });
65
93
  }
66
94
  );
67
95
  Magicko3DotsMore.displayName = "Magicko3DotsMore";
68
96
 
69
97
  // dist/icons/MagickoArchive.tsx
70
- import React6 from "react";
71
- import { jsx as jsx6, jsxs as jsxs4 } from "react/jsx-runtime";
72
- var MagickoArchive = React6.forwardRef(
98
+ import React8 from "react";
99
+ import { jsx as jsx8, jsxs as jsxs6 } from "react/jsx-runtime";
100
+ var MagickoArchive = React8.forwardRef(
73
101
  ({ size, ...props }, ref) => {
74
- return /* @__PURE__ */ jsxs4("svg", { xmlns: "http://www.w3.org/2000/svg", width: "18", height: "18", fill: "none", viewBox: "0 0 18 18", children: [
75
- /* @__PURE__ */ jsx6("path", { fill: "#1e293b", d: "M12.75 17.959h-7.5c-2.75 0-3.125-1.5-3.125-3.125V7.517a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v7.317c0 1.45.25 1.875 1.875 1.875h7.5c1.625 0 1.875-.425 1.875-1.875V7.517a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v7.317c0 1.625-.375 3.125-3.125 3.125" }),
76
- /* @__PURE__ */ jsx6("path", { fill: "#1e293b", d: "M14.833 7.958H3.167C1.15 7.958.042 6.85.042 4.833V3.167C.042 1.15 1.15.042 3.167.042h11.666c2.017 0 3.125 1.108 3.125 3.125v1.666c0 2.017-1.108 3.125-3.125 3.125M3.167 1.292c-1.317 0-1.875.558-1.875 1.875v1.666c0 1.317.558 1.875 1.875 1.875h11.666c1.317 0 1.875-.558 1.875-1.875V3.167c0-1.317-.558-1.875-1.875-1.875zm7.35 10H7.483a.63.63 0 0 1-.625-.625.63.63 0 0 1 .625-.625h3.034a.63.63 0 0 1 .625.625.63.63 0 0 1-.625.625" })
102
+ return /* @__PURE__ */ jsxs6("svg", { xmlns: "http://www.w3.org/2000/svg", width: "18", height: "18", fill: "none", viewBox: "0 0 18 18", children: [
103
+ /* @__PURE__ */ jsx8("path", { fill: "#1e293b", d: "M12.75 17.959h-7.5c-2.75 0-3.125-1.5-3.125-3.125V7.517a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v7.317c0 1.45.25 1.875 1.875 1.875h7.5c1.625 0 1.875-.425 1.875-1.875V7.517a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v7.317c0 1.625-.375 3.125-3.125 3.125" }),
104
+ /* @__PURE__ */ jsx8("path", { fill: "#1e293b", d: "M14.833 7.958H3.167C1.15 7.958.042 6.85.042 4.833V3.167C.042 1.15 1.15.042 3.167.042h11.666c2.017 0 3.125 1.108 3.125 3.125v1.666c0 2.017-1.108 3.125-3.125 3.125M3.167 1.292c-1.317 0-1.875.558-1.875 1.875v1.666c0 1.317.558 1.875 1.875 1.875h11.666c1.317 0 1.875-.558 1.875-1.875V3.167c0-1.317-.558-1.875-1.875-1.875zm7.35 10H7.483a.63.63 0 0 1-.625-.625.63.63 0 0 1 .625-.625h3.034a.63.63 0 0 1 .625.625.63.63 0 0 1-.625.625" })
77
105
  ] });
78
106
  }
79
107
  );
80
108
  MagickoArchive.displayName = "MagickoArchive";
81
109
 
82
110
  // dist/icons/MagickoChart.tsx
83
- import React7 from "react";
84
- import { jsx as jsx7 } from "react/jsx-runtime";
85
- var MagickoChart = React7.forwardRef(
111
+ import React9 from "react";
112
+ import { jsx as jsx9 } from "react/jsx-runtime";
113
+ var MagickoChart = React9.forwardRef(
86
114
  ({ size, ...props }, ref) => {
87
- return /* @__PURE__ */ jsx7("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", children: /* @__PURE__ */ jsx7("path", { fill: "#1e293b", d: "M3.333 18.958a2.29 2.29 0 0 1-2.291-2.291V8.333a2.29 2.29 0 0 1 2.291-2.291 2.29 2.29 0 0 1 2.292 2.291v8.334a2.29 2.29 0 0 1-2.292 2.291m0-11.666a1.04 1.04 0 0 0-1.041 1.041v8.334a1.042 1.042 0 0 0 2.083 0V8.333c0-.575-.467-1.041-1.042-1.041M10 18.958a2.29 2.29 0 0 1-2.292-2.291V3.333A2.29 2.29 0 0 1 10 1.042a2.29 2.29 0 0 1 2.292 2.291v13.334A2.29 2.29 0 0 1 10 18.958m0-16.666c-.575 0-1.042.466-1.042 1.041v13.334a1.042 1.042 0 0 0 2.084 0V3.333c0-.575-.467-1.041-1.042-1.041m6.667 16.666a2.29 2.29 0 0 1-2.292-2.291v-3.334a2.29 2.29 0 0 1 2.292-2.291 2.29 2.29 0 0 1 2.291 2.291v3.334a2.29 2.29 0 0 1-2.291 2.291m0-6.666c-.575 0-1.042.466-1.042 1.041v3.334a1.042 1.042 0 0 0 2.083 0v-3.334a1.04 1.04 0 0 0-1.041-1.041" }) });
115
+ return /* @__PURE__ */ jsx9("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", children: /* @__PURE__ */ jsx9("path", { fill: "#1e293b", d: "M3.333 18.958a2.29 2.29 0 0 1-2.291-2.291V8.333a2.29 2.29 0 0 1 2.291-2.291 2.29 2.29 0 0 1 2.292 2.291v8.334a2.29 2.29 0 0 1-2.292 2.291m0-11.666a1.04 1.04 0 0 0-1.041 1.041v8.334a1.042 1.042 0 0 0 2.083 0V8.333c0-.575-.467-1.041-1.042-1.041M10 18.958a2.29 2.29 0 0 1-2.292-2.291V3.333A2.29 2.29 0 0 1 10 1.042a2.29 2.29 0 0 1 2.292 2.291v13.334A2.29 2.29 0 0 1 10 18.958m0-16.666c-.575 0-1.042.466-1.042 1.041v13.334a1.042 1.042 0 0 0 2.084 0V3.333c0-.575-.467-1.041-1.042-1.041m6.667 16.666a2.29 2.29 0 0 1-2.292-2.291v-3.334a2.29 2.29 0 0 1 2.292-2.291 2.29 2.29 0 0 1 2.291 2.291v3.334a2.29 2.29 0 0 1-2.291 2.291m0-6.666c-.575 0-1.042.466-1.042 1.041v3.334a1.042 1.042 0 0 0 2.083 0v-3.334a1.04 1.04 0 0 0-1.041-1.041" }) });
88
116
  }
89
117
  );
90
118
  MagickoChart.displayName = "MagickoChart";
119
+
120
+ // dist/icons/MagickoKey.tsx
121
+ import React10 from "react";
122
+ import { jsx as jsx10, jsxs as jsxs7 } from "react/jsx-runtime";
123
+ var MagickoKey = React10.forwardRef(
124
+ ({ size, ...props }, ref) => {
125
+ return /* @__PURE__ */ jsxs7("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", children: [
126
+ /* @__PURE__ */ jsx10("path", { fill: "#1e293b", d: "M5.15 18.958c-.083 0-.175-.008-.25-.016l-1.808-.25c-.867-.117-1.65-.892-1.784-1.775l-.25-1.825c-.083-.584.167-1.342.584-1.767L5.3 9.667a6.9 6.9 0 0 1 1.833-6.592c2.7-2.692 7.092-2.7 9.8 0a6.88 6.88 0 0 1 2.025 4.9 6.88 6.88 0 0 1-2.025 4.9c-1.75 1.733-4.241 2.417-6.591 1.817L6.675 18.35c-.35.367-.975.608-1.525.608M12.025 2.3c-1.458 0-2.908.55-4.017 1.658a5.67 5.67 0 0 0-1.416 5.709.62.62 0 0 1-.159.625l-3.916 3.916c-.142.142-.259.509-.234.7l.25 1.825c.05.317.392.675.709.717l1.816.25c.2.033.567-.083.709-.225L9.7 13.55a.62.62 0 0 1 .625-.15 5.65 5.65 0 0 0 5.7-1.408 5.65 5.65 0 0 0 1.658-4.017 5.64 5.64 0 0 0-1.658-4.017 5.6 5.6 0 0 0-4-1.658" }),
127
+ /* @__PURE__ */ jsx10("path", { fill: "#1e293b", d: "M7.658 17.117a.62.62 0 0 1-.441-.184L5.3 15.017a.63.63 0 0 1 0-.884.63.63 0 0 1 .883 0L8.1 16.05a.63.63 0 0 1 0 .883.62.62 0 0 1-.442.183m4.425-7.324a1.88 1.88 0 0 1-1.875-1.875c0-1.034.842-1.875 1.875-1.875 1.034 0 1.875.841 1.875 1.875a1.88 1.88 0 0 1-1.875 1.875m0-2.5a.63.63 0 0 0-.625.625.63.63 0 0 0 .625.625.63.63 0 0 0 .625-.625.63.63 0 0 0-.625-.625" })
128
+ ] });
129
+ }
130
+ );
131
+ MagickoKey.displayName = "MagickoKey";
132
+
133
+ // dist/icons/MagickoProfileCircle.tsx
134
+ import React11 from "react";
135
+ import { jsx as jsx11, jsxs as jsxs8 } from "react/jsx-runtime";
136
+ var MagickoProfileCircle = React11.forwardRef(
137
+ ({ size, ...props }, ref) => {
138
+ return /* @__PURE__ */ jsxs8("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", children: [
139
+ /* @__PURE__ */ jsx11("path", { fill: "#1e293b", d: "M10.1 11.276h-.142c-1.891-.059-3.308-1.534-3.308-3.35a3.364 3.364 0 0 1 3.358-3.359 3.364 3.364 0 0 1 3.359 3.358 3.345 3.345 0 0 1-3.242 3.35zM10 5.809a2.11 2.11 0 0 0-2.108 2.108 2.1 2.1 0 0 0 2.025 2.108.7.7 0 0 1 .191 0 2.113 2.113 0 0 0 2-2.108A2.11 2.11 0 0 0 10 5.81m0 13.149a8.93 8.93 0 0 1-6.042-2.35.63.63 0 0 1-.2-.525c.109-.992.725-1.917 1.75-2.6 2.484-1.65 6.509-1.65 8.984 0 1.025.691 1.641 1.608 1.75 2.6.025.2-.05.391-.2.525A8.93 8.93 0 0 1 10 18.959m-4.933-3.042A7.67 7.67 0 0 0 10 17.709c1.808 0 3.55-.634 4.933-1.792-.15-.508-.55-1-1.141-1.4-2.05-1.367-5.525-1.367-7.592 0-.592.4-.983.892-1.133 1.4" }),
140
+ /* @__PURE__ */ jsx11("path", { fill: "#1e293b", d: "M10 18.959c-4.942 0-8.958-4.017-8.958-8.959S5.058 1.042 10 1.042 18.958 5.058 18.958 10 14.942 18.96 10 18.96m0-16.667C5.75 2.292 2.292 5.75 2.292 10S5.75 17.71 10 17.71s7.708-3.46 7.708-7.71S14.25 2.292 10 2.292" })
141
+ ] });
142
+ }
143
+ );
144
+ MagickoProfileCircle.displayName = "MagickoProfileCircle";
145
+
146
+ // dist/icons/MagickoSidebarLeft.tsx
147
+ import React12 from "react";
148
+ import { jsx as jsx12, jsxs as jsxs9 } from "react/jsx-runtime";
149
+ var MagickoSidebarLeft = React12.forwardRef(
150
+ ({ size, ...props }, ref) => {
151
+ return /* @__PURE__ */ jsxs9("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", children: [
152
+ /* @__PURE__ */ jsx12("path", { fill: "#1e293b", d: "M12.475 18.958h-5c-4.525 0-6.458-1.933-6.458-6.458v-5c0-4.525 1.933-6.458 6.458-6.458h5c4.525 0 6.458 1.933 6.458 6.458v5c0 4.525-1.925 6.458-6.458 6.458m-5-16.666c-3.842 0-5.208 1.366-5.208 5.208v5c0 3.842 1.366 5.208 5.208 5.208h5c3.842 0 5.208-1.366 5.208-5.208v-5c0-3.842-1.366-5.208-5.208-5.208z" }),
153
+ /* @__PURE__ */ jsx12("path", { fill: "#1e293b", d: "M6.642 18.958a.63.63 0 0 1-.625-.625V1.667a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v16.666a.624.624 0 0 1-.625.625m5.833-6.198a.62.62 0 0 1-.442-.184L9.9 10.443a.63.63 0 0 1 0-.884l2.133-2.133a.63.63 0 0 1 .884 0 .63.63 0 0 1 0 .883l-1.684 1.692 1.692 1.692a.63.63 0 0 1 0 .883.62.62 0 0 1-.45.183" })
154
+ ] });
155
+ }
156
+ );
157
+ MagickoSidebarLeft.displayName = "MagickoSidebarLeft";
158
+
159
+ // dist/icons/MagickoSortDescending.tsx
160
+ import React13 from "react";
161
+ import { jsx as jsx13, jsxs as jsxs10 } from "react/jsx-runtime";
162
+ var MagickoSortDescending = React13.forwardRef(
163
+ ({ size, ...props }, ref) => {
164
+ return /* @__PURE__ */ jsxs10("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", children: [
165
+ /* @__PURE__ */ jsx13("path", { fill: "#1e293b", d: "M15.075 16.777c-.342 0-.625-.272-.625-.6V4.48c0-.328.283-.6.625-.6.341 0 .625.272.625.6v11.696c0 .328-.284.6-.625.6m-6.2-10.72h-7c-.342 0-.625-.272-.625-.6s.283-.6.625-.6h7c.342 0 .625.272.625.6s-.283.6-.625.6m0 4.384h-7c-.342 0-.625-.272-.625-.6s.283-.6.625-.6h7c.342 0 .625.272.625.6s-.283.6-.625.6m-3.617 4.384H1.875c-.342 0-.625-.272-.625-.6s.283-.6.625-.6h3.383c.342 0 .625.272.625.6s-.283.6-.625.6" }),
166
+ /* @__PURE__ */ jsx13("path", { fill: "#1e293b", d: "M15.075 16.777a.63.63 0 0 1-.442-.177l-3.041-2.92a.587.587 0 0 1 0-.848.65.65 0 0 1 .883 0l2.6 2.496 2.608-2.496a.65.65 0 0 1 .884 0 .587.587 0 0 1 0 .848l-3.05 2.92a.67.67 0 0 1-.442.177" })
167
+ ] });
168
+ }
169
+ );
170
+ MagickoSortDescending.displayName = "MagickoSortDescending";
171
+
172
+ // dist/icons/MagickoSpeaker.tsx
173
+ import React14 from "react";
174
+ import { jsx as jsx14, jsxs as jsxs11 } from "react/jsx-runtime";
175
+ var MagickoSpeaker = React14.forwardRef(
176
+ ({ size, ...props }, ref) => {
177
+ return /* @__PURE__ */ jsxs11("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", children: [
178
+ /* @__PURE__ */ jsx14("path", { fill: "#1e293b", d: "M18.71 15.36c-.52 0-1.11-.12-1.73-.35-1.67-.6-3.58-2.01-5.24-3.87S8.9 7.22 8.48 5.49c-.37-1.48-.15-2.69.64-3.39.9-.8 2.35-.8 4.08.01 1.53.71 3.17 2 4.61 3.62 3.22 3.61 4.35 7.5 2.62 9.04-.45.39-1.03.59-1.72.59M10.85 3c-.31 0-.56.07-.72.22-.34.3-.4 1.02-.18 1.91.36 1.51 1.42 3.33 2.92 5.01s3.19 2.94 4.64 3.46c.88.33 1.6.34 1.93.04.8-.71.14-3.69-2.74-6.92-1.31-1.47-2.78-2.62-4.13-3.25-.67-.31-1.26-.47-1.72-.47" }),
179
+ /* @__PURE__ */ jsx14("path", { fill: "#1e293b", d: "M5.71 19.48c-.83 0-1.62-.35-2.19-.99-.79-.88-.98-2.1-.49-3.18l5.53-12.4c.17-.38.61-.55.99-.38s.55.61.38.99L4.4 15.92c-.24.54-.15 1.13.24 1.57s.97.6 1.53.42l12.96-4.1c.4-.13.82.09.94.49s-.09.82-.49.94l-12.96 4.1c-.31.09-.61.14-.91.14" }),
180
+ /* @__PURE__ */ jsx14("path", { fill: "#1e293b", d: "M10.41 22.5c-1.2 0-2.32-.77-2.7-1.98l-.63-1.99c-.12-.4.09-.82.49-.94.4-.13.82.09.94.49l.63 1.99c.11.34.34.61.66.78s.68.2 1.02.09l1.99-.63c.34-.11.61-.34.78-.66s.2-.68.09-1.02l-.63-1.99c-.12-.4.09-.82.49-.94.4-.13.82.09.94.49l.63 1.99c.23.72.16 1.49-.19 2.16s-.94 1.17-1.66 1.4l-1.99.63c-.29.09-.57.13-.86.13" })
181
+ ] });
182
+ }
183
+ );
184
+ MagickoSpeaker.displayName = "MagickoSpeaker";
185
+
186
+ // dist/icons/MagickoTelescope.tsx
187
+ import React15 from "react";
188
+ import { jsx as jsx15, jsxs as jsxs12 } from "react/jsx-runtime";
189
+ var MagickoTelescope = React15.forwardRef(
190
+ ({ size, ...props }, ref) => {
191
+ return /* @__PURE__ */ jsxs12("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", children: [
192
+ /* @__PURE__ */ jsx15("path", { fill: "#1e293b", d: "M12.525 9.6c-.2 0-.4-.1-.517-.275L9.342 5.34a.63.63 0 0 1 .175-.867l4.716-3.158c.367-.25.809-.333 1.242-.25s.808.334 1.058.7l1.517 2.259a1.655 1.655 0 0 1-.458 2.3l-4.709 3.158a.6.6 0 0 1-.358.117m-1.792-4.434L12.7 8.108 16.892 5.3A.4.4 0 0 0 17 4.733l-1.517-2.258a.4.4 0 0 0-.258-.175.4.4 0 0 0-.308.058z" }),
193
+ /* @__PURE__ */ jsx15("path", { fill: "#1e293b", d: "M8.284 11.867c-.2 0-.4-.1-.517-.276L5.633 8.409a.62.62 0 0 1 .176-.867l3.983-2.666a.62.62 0 0 1 .466-.092.6.6 0 0 1 .4.267l2.134 3.183a.62.62 0 0 1-.175.867l-3.984 2.667a.7.7 0 0 1-.35.1M7.017 8.233l1.433 2.142 2.942-1.967-1.434-2.15z" }),
194
+ /* @__PURE__ */ jsx15("path", { fill: "#1e293b", d: "M4.4 14.017c-.467 0-.933-.225-1.217-.65l-.941-1.4a1.44 1.44 0 0 1-.217-1.091c.075-.384.292-.709.617-.925l3.291-2.2a.62.62 0 0 1 .867.175l1.867 2.783a.62.62 0 0 1-.175.867l-3.292 2.2a1.47 1.47 0 0 1-.8.241m1.708-4.891-2.766 1.85a.213.213 0 0 0-.059.291l.942 1.4a.213.213 0 0 0 .292.059l2.766-1.85zm.192 9.833a.6.6 0 0 1-.258-.058.62.62 0 0 1-.309-.825l3.742-8.167a.622.622 0 1 1 1.133.517l-3.741 8.166a.63.63 0 0 1-.567.367" }),
195
+ /* @__PURE__ */ jsx15("path", { fill: "#1e293b", d: "M13.7 18.958a.61.61 0 0 1-.567-.367l-3.7-8.167a.626.626 0 0 1 .309-.825.63.63 0 0 1 .825.309l3.7 8.166a.626.626 0 0 1-.567.884" })
196
+ ] });
197
+ }
198
+ );
199
+ MagickoTelescope.displayName = "MagickoTelescope";
200
+
201
+ // dist/icons/Magicpen.tsx
202
+ import React16 from "react";
203
+ import { jsx as jsx16, jsxs as jsxs13 } from "react/jsx-runtime";
204
+ var Magicpen = React16.forwardRef(
205
+ ({ size, ...props }, ref) => {
206
+ return /* @__PURE__ */ jsxs13("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "#fff", viewBox: "0 0 24 24", children: [
207
+ /* @__PURE__ */ jsx16("path", { "fill-rule": "evenodd", d: "M3 19 19.002 2.998 22 5.996 19.537 8.46l-2.997-3-1.06 1.06 2.998 2.999-12.48 12.479z", "clip-rule": "evenodd" }),
208
+ /* @__PURE__ */ jsx16("path", { d: "M9.5 2.44 11 2l-.44 1.5L11 5l-1.5-.44L8 5l.44-1.5L8 2zm-4 6L7 8l-.44 1.5L7 11l-1.5-.44L4 11l.44-1.5L4 8zm15 5L22 13l-.44 1.5L22 16l-1.5-.44L19 16l.44-1.5L19 13z", opacity: ".4" })
209
+ ] });
210
+ }
211
+ );
212
+ Magicpen.displayName = "Magicpen";
91
213
  export {
92
214
  Enter,
93
215
  Frame,
94
216
  Google,
95
217
  IconSize,
218
+ Legal,
219
+ LegalModule,
96
220
  Magicko3DotsMore,
97
221
  MagickoArchive,
98
- MagickoChart
222
+ MagickoChart,
223
+ MagickoKey,
224
+ MagickoProfileCircle,
225
+ MagickoSidebarLeft,
226
+ MagickoSortDescending,
227
+ MagickoSpeaker,
228
+ MagickoTelescope,
229
+ Magicpen
99
230
  };
100
231
  //# sourceMappingURL=index.mjs.map
package/index.mjs.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["icons/Enter.tsx","icons/Frame.tsx","icons/Google.tsx","icons/IconSize.tsx","icons/Magicko3DotsMore.tsx","icons/MagickoArchive.tsx","icons/MagickoChart.tsx"],"sourcesContent":["import React from 'react';\n\n/**\n * Props for the Enter icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface EnterProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Enter icon component\n * @example\n * ```tsx\n * import { Enter } from 'magick-icons';\n * \n * <Enter size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Enter = React.forwardRef<SVGSVGElement, EnterProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\"><path fill=\"#000\" d=\"M19.25 6v2A3.25 3.25 0 0 1 16 11.25H5.81l3.72-3.72.052-.056a.75.75 0 0 0-1.056-1.056l-.056.052-5 5a.75.75 0 0 0 0 1.06l5 5a.75.75 0 1 0 1.06-1.06l-3.72-3.72H16A4.75 4.75 0 0 0 20.75 8V6a.75.75 0 1 0-1.5 0\"/></svg>\n );\n }\n);\n\nEnter.displayName = 'Enter';\n","import React from 'react';\n\n/**\n * Props for the Frame icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface FrameProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Frame icon component\n * @example\n * ```tsx\n * import { Frame } from 'magick-icons';\n * \n * <Frame size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Frame = React.forwardRef<SVGSVGElement, FrameProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\"><g fill=\"#000\" clip-path=\"url(#clip0_7_897)\"><path d=\"M16.734 9.079a1.09 1.09 0 1 0-1.488-1.596l-3.192 2.976-2.976-3.194a1.09 1.09 0 0 0-1.595 1.488l2.977 3.192-3.194 2.976a1.09 1.09 0 1 0 1.488 1.595l3.192-2.974 2.976 3.191a1.091 1.091 0 1 0 1.595-1.487l-2.975-3.191z\"/><path fill-rule=\"evenodd\" d=\"M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12m12 9.818a9.819 9.819 0 1 1 0-19.637 9.819 9.819 0 0 1 0 19.637\" clip-rule=\"evenodd\"/></g><defs><clipPath id=\"clip0_7_897\"><path fill=\"#fff\" d=\"M0 0h24v24H0z\"/></clipPath></defs></svg>\n );\n }\n);\n\nFrame.displayName = 'Frame';\n","import React from 'react';\n\n/**\n * Props for the Google icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface GoogleProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Google icon component\n * @example\n * ```tsx\n * import { Google } from 'magick-icons';\n * \n * <Google size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Google = React.forwardRef<SVGSVGElement, GoogleProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"21\" height=\"20\" fill=\"none\" viewBox=\"0 0 21 20\"><path fill=\"#4285f4\" d=\"M19.251 10.194c0-.72-.06-1.244-.188-1.789H10.68v3.248h4.92c-.099.807-.635 2.022-1.825 2.839l-.017.108 2.65 2.013.184.018c1.687-1.527 2.66-3.773 2.66-6.437\"/><path fill=\"#34a853\" d=\"M10.68 18.75c2.41 0 4.434-.778 5.912-2.12l-2.817-2.138c-.754.515-1.766.875-3.096.875A5.365 5.365 0 0 1 5.6 11.73l-.104.01-2.756 2.09-.036.098c1.468 2.858 4.484 4.822 7.976 4.822\"/><path fill=\"#fbbc05\" d=\"M5.6 11.73A5.3 5.3 0 0 1 5.301 10c0-.603.109-1.186.287-1.73l-.005-.117-2.79-2.123-.092.042A8.6 8.6 0 0 0 1.75 10c0 1.41.347 2.742.952 3.928z\"/><path fill=\"#eb4335\" d=\"M10.68 4.633c1.676 0 2.807.71 3.452 1.303l2.52-2.411c-1.548-1.41-3.562-2.275-5.973-2.275-3.492 0-6.508 1.964-7.976 4.822L5.59 8.27a5.39 5.39 0 0 1 5.09-3.636\"/></svg>\n );\n }\n);\n\nGoogle.displayName = 'Google';\n","import React from 'react';\n\n/**\n * Props for the IconSize icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface IconSizeProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * IconSize icon component\n * @example\n * ```tsx\n * import { IconSize } from 'magick-icons';\n * \n * <IconSize size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const IconSize = React.forwardRef<SVGSVGElement, IconSizeProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"14\" height=\"15\" fill=\"none\" viewBox=\"0 0 14 15\"><path stroke=\"url(#paint0_linear_2807_23927)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M9.334 12.602v-1.167A2.333 2.333 0 0 0 7 9.102H3.5a2.333 2.333 0 0 0-2.333 2.333v1.167m11.667 0v-1.167a2.334 2.334 0 0 0-1.75-2.258m-1.75-7a2.333 2.333 0 0 1 0 4.521m-1.75-2.263a2.333 2.333 0 1 1-4.667 0 2.333 2.333 0 0 1 4.667 0\"/><defs><linearGradient id=\"paint0_linear_2807_23927\" x1=\"1.167\" x2=\"9.964\" y1=\"2.552\" y2=\"14.349\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#a5f3fc\"/><stop offset=\".435\" stop-color=\"#3b82f6\"/><stop offset=\"1\" stop-color=\"#38bdf8\"/></linearGradient></defs></svg>\n );\n }\n);\n\nIconSize.displayName = 'IconSize';\n","import React from 'react';\n\n/**\n * Props for the Magicko3DotsMore icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface Magicko3DotsMoreProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Magicko3DotsMore icon component\n * @example\n * ```tsx\n * import { Magicko3DotsMore } from 'magick-icons';\n * \n * <Magicko3DotsMore size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Magicko3DotsMore = React.forwardRef<SVGSVGElement, Magicko3DotsMoreProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" fill=\"none\" viewBox=\"0 0 20 20\"><path fill=\"#1e293b\" d=\"M5 10a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0\"/></svg>\n );\n }\n);\n\nMagicko3DotsMore.displayName = 'Magicko3DotsMore';\n","import React from 'react';\n\n/**\n * Props for the MagickoArchive icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface MagickoArchiveProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * MagickoArchive icon component\n * @example\n * ```tsx\n * import { MagickoArchive } from 'magick-icons';\n * \n * <MagickoArchive size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const MagickoArchive = React.forwardRef<SVGSVGElement, MagickoArchiveProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" fill=\"none\" viewBox=\"0 0 18 18\"><path fill=\"#1e293b\" d=\"M12.75 17.959h-7.5c-2.75 0-3.125-1.5-3.125-3.125V7.517a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v7.317c0 1.45.25 1.875 1.875 1.875h7.5c1.625 0 1.875-.425 1.875-1.875V7.517a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v7.317c0 1.625-.375 3.125-3.125 3.125\"/><path fill=\"#1e293b\" d=\"M14.833 7.958H3.167C1.15 7.958.042 6.85.042 4.833V3.167C.042 1.15 1.15.042 3.167.042h11.666c2.017 0 3.125 1.108 3.125 3.125v1.666c0 2.017-1.108 3.125-3.125 3.125M3.167 1.292c-1.317 0-1.875.558-1.875 1.875v1.666c0 1.317.558 1.875 1.875 1.875h11.666c1.317 0 1.875-.558 1.875-1.875V3.167c0-1.317-.558-1.875-1.875-1.875zm7.35 10H7.483a.63.63 0 0 1-.625-.625.63.63 0 0 1 .625-.625h3.034a.63.63 0 0 1 .625.625.63.63 0 0 1-.625.625\"/></svg>\n );\n }\n);\n\nMagickoArchive.displayName = 'MagickoArchive';\n","import React from 'react';\n\n/**\n * Props for the MagickoChart icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface MagickoChartProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * MagickoChart icon component\n * @example\n * ```tsx\n * import { MagickoChart } from 'magick-icons';\n * \n * <MagickoChart size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const MagickoChart = React.forwardRef<SVGSVGElement, MagickoChartProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" fill=\"none\" viewBox=\"0 0 20 20\"><path fill=\"#1e293b\" d=\"M3.333 18.958a2.29 2.29 0 0 1-2.291-2.291V8.333a2.29 2.29 0 0 1 2.291-2.291 2.29 2.29 0 0 1 2.292 2.291v8.334a2.29 2.29 0 0 1-2.292 2.291m0-11.666a1.04 1.04 0 0 0-1.041 1.041v8.334a1.042 1.042 0 0 0 2.083 0V8.333c0-.575-.467-1.041-1.042-1.041M10 18.958a2.29 2.29 0 0 1-2.292-2.291V3.333A2.29 2.29 0 0 1 10 1.042a2.29 2.29 0 0 1 2.292 2.291v13.334A2.29 2.29 0 0 1 10 18.958m0-16.666c-.575 0-1.042.466-1.042 1.041v13.334a1.042 1.042 0 0 0 2.084 0V3.333c0-.575-.467-1.041-1.042-1.041m6.667 16.666a2.29 2.29 0 0 1-2.292-2.291v-3.334a2.29 2.29 0 0 1 2.292-2.291 2.29 2.29 0 0 1 2.291 2.291v3.334a2.29 2.29 0 0 1-2.291 2.291m0-6.666c-.575 0-1.042.466-1.042 1.041v3.334a1.042 1.042 0 0 0 2.083 0v-3.334a1.04 1.04 0 0 0-1.041-1.041\"/></svg>\n );\n }\n);\n\nMagickoChart.displayName = 'MagickoChart';\n"],"mappings":"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","names":["React","jsx","React","jsx","jsxs","React","jsx","jsxs","React","jsx","React","jsx","jsxs","React","jsx"]}
1
+ {"version":3,"sources":["icons/Enter.tsx","icons/Frame.tsx","icons/Google.tsx","icons/IconSize.tsx","icons/Legal.tsx","icons/LegalModule.tsx","icons/Magicko3DotsMore.tsx","icons/MagickoArchive.tsx","icons/MagickoChart.tsx","icons/MagickoKey.tsx","icons/MagickoProfileCircle.tsx","icons/MagickoSidebarLeft.tsx","icons/MagickoSortDescending.tsx","icons/MagickoSpeaker.tsx","icons/MagickoTelescope.tsx","icons/Magicpen.tsx"],"sourcesContent":["import React from 'react';\n\n/**\n * Props for the Enter icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface EnterProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Enter icon component\n * @example\n * ```tsx\n * import { Enter } from 'magick-icons';\n * \n * <Enter size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Enter = React.forwardRef<SVGSVGElement, EnterProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\"><path fill=\"#000\" d=\"M19.25 6v2A3.25 3.25 0 0 1 16 11.25H5.81l3.72-3.72.052-.056a.75.75 0 0 0-1.056-1.056l-.056.052-5 5a.75.75 0 0 0 0 1.06l5 5a.75.75 0 1 0 1.06-1.06l-3.72-3.72H16A4.75 4.75 0 0 0 20.75 8V6a.75.75 0 1 0-1.5 0\"/></svg>\n );\n }\n);\n\nEnter.displayName = 'Enter';\n","import React from 'react';\n\n/**\n * Props for the Frame icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface FrameProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Frame icon component\n * @example\n * ```tsx\n * import { Frame } from 'magick-icons';\n * \n * <Frame size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Frame = React.forwardRef<SVGSVGElement, FrameProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\"><g fill=\"#000\" clip-path=\"url(#clip0_7_897)\"><path d=\"M16.734 9.079a1.09 1.09 0 1 0-1.488-1.596l-3.192 2.976-2.976-3.194a1.09 1.09 0 0 0-1.595 1.488l2.977 3.192-3.194 2.976a1.09 1.09 0 1 0 1.488 1.595l3.192-2.974 2.976 3.191a1.091 1.091 0 1 0 1.595-1.487l-2.975-3.191z\"/><path fill-rule=\"evenodd\" d=\"M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12m12 9.818a9.819 9.819 0 1 1 0-19.637 9.819 9.819 0 0 1 0 19.637\" clip-rule=\"evenodd\"/></g><defs><clipPath id=\"clip0_7_897\"><path fill=\"#fff\" d=\"M0 0h24v24H0z\"/></clipPath></defs></svg>\n );\n }\n);\n\nFrame.displayName = 'Frame';\n","import React from 'react';\n\n/**\n * Props for the Google icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface GoogleProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Google icon component\n * @example\n * ```tsx\n * import { Google } from 'magick-icons';\n * \n * <Google size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Google = React.forwardRef<SVGSVGElement, GoogleProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"21\" height=\"20\" fill=\"none\" viewBox=\"0 0 21 20\"><path fill=\"#4285f4\" d=\"M19.251 10.194c0-.72-.06-1.244-.188-1.789H10.68v3.248h4.92c-.099.807-.635 2.022-1.825 2.839l-.017.108 2.65 2.013.184.018c1.687-1.527 2.66-3.773 2.66-6.437\"/><path fill=\"#34a853\" d=\"M10.68 18.75c2.41 0 4.434-.778 5.912-2.12l-2.817-2.138c-.754.515-1.766.875-3.096.875A5.365 5.365 0 0 1 5.6 11.73l-.104.01-2.756 2.09-.036.098c1.468 2.858 4.484 4.822 7.976 4.822\"/><path fill=\"#fbbc05\" d=\"M5.6 11.73A5.3 5.3 0 0 1 5.301 10c0-.603.109-1.186.287-1.73l-.005-.117-2.79-2.123-.092.042A8.6 8.6 0 0 0 1.75 10c0 1.41.347 2.742.952 3.928z\"/><path fill=\"#eb4335\" d=\"M10.68 4.633c1.676 0 2.807.71 3.452 1.303l2.52-2.411c-1.548-1.41-3.562-2.275-5.973-2.275-3.492 0-6.508 1.964-7.976 4.822L5.59 8.27a5.39 5.39 0 0 1 5.09-3.636\"/></svg>\n );\n }\n);\n\nGoogle.displayName = 'Google';\n","import React from 'react';\n\n/**\n * Props for the IconSize icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface IconSizeProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * IconSize icon component\n * @example\n * ```tsx\n * import { IconSize } from 'magick-icons';\n * \n * <IconSize size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const IconSize = React.forwardRef<SVGSVGElement, IconSizeProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"14\" height=\"15\" fill=\"none\" viewBox=\"0 0 14 15\"><path stroke=\"url(#paint0_linear_2807_23927)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M9.334 12.602v-1.167A2.333 2.333 0 0 0 7 9.102H3.5a2.333 2.333 0 0 0-2.333 2.333v1.167m11.667 0v-1.167a2.334 2.334 0 0 0-1.75-2.258m-1.75-7a2.333 2.333 0 0 1 0 4.521m-1.75-2.263a2.333 2.333 0 1 1-4.667 0 2.333 2.333 0 0 1 4.667 0\"/><defs><linearGradient id=\"paint0_linear_2807_23927\" x1=\"1.167\" x2=\"9.964\" y1=\"2.552\" y2=\"14.349\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#a5f3fc\"/><stop offset=\".435\" stop-color=\"#3b82f6\"/><stop offset=\"1\" stop-color=\"#38bdf8\"/></linearGradient></defs></svg>\n );\n }\n);\n\nIconSize.displayName = 'IconSize';\n","import React from 'react';\n\n/**\n * Props for the Legal icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface LegalProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Legal icon component\n * @example\n * ```tsx\n * import { Legal } from 'magick-icons';\n * \n * <Legal size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Legal = React.forwardRef<SVGSVGElement, LegalProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" fill=\"none\" viewBox=\"0 0 20 20\"><path fill=\"#64748b\" d=\"M14.884 14.858c-2.242-.075-4-1.791-4.117-3.991-.025-.35.058-.7.25-1.009l3.3-5.591a.63.63 0 0 1 1.083 0s2.6 4.408 3.309 5.6c.183.3.274.65.25 1.008a4.194 4.194 0 0 1-4.067 3.983zm-.026-9.041L12.093 10.5a.47.47 0 0 0-.075.292 2.954 2.954 0 0 0 2.867 2.816c1.508-.05 2.741-1.258 2.825-2.808 0-.1-.017-.2-.067-.283-.5-.859-1.975-3.342-2.775-4.7z\"/><path fill=\"#64748b\" d=\"M18.3 11.108h-6.875a.63.63 0 0 1-.625-.625.63.63 0 0 1 .625-.625H18.3a.63.63 0 0 1 .625.625.63.63 0 0 1-.625.625M5.158 17.709c-2.241-.075-4-1.792-4.116-3.992A1.7 1.7 0 0 1 1.3 12.7l3.3-5.592a.63.63 0 0 1 1.083 0l3.309 5.6c.183.309.266.659.241 1.009A4.194 4.194 0 0 1 5.167 17.7zm-.016-9.042-2.767 4.692a.6.6 0 0 0-.083.291 2.95 2.95 0 0 0 2.866 2.809c1.509-.05 2.742-1.259 2.825-2.809 0-.108-.016-.2-.066-.292l-2.767-4.7z\"/><path fill=\"#64748b\" d=\"M8.575 13.958H1.7a.63.63 0 0 1-.625-.625.63.63 0 0 1 .625-.625h6.875a.63.63 0 0 1 .625.625.63.63 0 0 1-.625.625m-3.433-5.9a.63.63 0 0 1-.6-.45.62.62 0 0 1 .425-.775l9.716-2.85c.334-.1.675.092.775.425a.62.62 0 0 1-.425.775l-9.716 2.85a.6.6 0 0 1-.176.025\"/><path fill=\"#64748b\" d=\"M9.308 6.833a.63.63 0 0 1-.625-.625V2.917a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v3.291a.63.63 0 0 1-.625.625\"/></svg>\n );\n }\n);\n\nLegal.displayName = 'Legal';\n","import React from 'react';\n\n/**\n * Props for the LegalModule icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface LegalModuleProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * LegalModule icon component\n * @example\n * ```tsx\n * import { LegalModule } from 'magick-icons';\n * \n * <LegalModule size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const LegalModule = React.forwardRef<SVGSVGElement, LegalModuleProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"17\" height=\"16\" fill=\"none\" viewBox=\"0 0 17 16\"><g id=\"Legal Module\" fill=\"#334155\"><path id=\"Vector\" d=\"M1.19 14.638v-.5q0-.173.034-.344a.55.55 0 0 1 .508-.453q.108-.013.218-.013h7.492q.142 0 .28.031a.55.55 0 0 1 .435.517c.018.223.014.448.016.67 0 .065.018.085.079.107q.195.067.378.164a.37.37 0 0 1 .183.241.94.94 0 0 1 0 .548.56.56 0 0 1-.523.386q-.102.01-.205.009H1.27q-.135 0-.267-.026a.6.6 0 0 1-.491-.709 1 1 0 0 1 .014-.091c.06-.31.223-.46.565-.52z\"/><g id=\"Vector_2\"><path d=\"m6.887 1.91 3.72 3.876-3.382 3.24-3.726-3.867zm7.46 13.095a2.8 2.8 0 0 1-1.05-.819Q11.545 12.057 9.8 9.92a5 5 0 0 1-.545-.914l-.124-.244a.22.22 0 0 1 .033-.267q.406-.396.82-.786a.2.2 0 0 1 .24-.042q.596.289 1.121.69.542.462 1.075.935l3.092 2.75c.474.412.804.966.942 1.579a1.34 1.34 0 0 1-.22 1.142 1.2 1.2 0 0 1-1.129.461 2.4 2.4 0 0 1-.76-.219M7.054.874c.06-.073.113-.15.18-.222.156-.158.317-.308.475-.463.276-.257.528-.253.79.02l.886.918L12.33 4.2q.079.082.143.175a.406.406 0 0 1-.022.538c-.15.168-.316.32-.476.48q-.095.096-.199.18a.46.46 0 0 1-.594-.009c-.21-.198-.41-.408-.61-.616L7.228 1.473a1.2 1.2 0 0 1-.163-.22.43.43 0 0 1-.011-.38M1.572 6.136q.076-.105.16-.203c.178-.177.355-.353.544-.524a.46.46 0 0 1 .547-.087.9.9 0 0 1 .255.205c.825.848 1.632 1.694 2.447 2.539L6.85 9.444q.07.075.13.16a.42.42 0 0 1-.02.59c-.145.168-.312.318-.472.473a2 2 0 0 1-.204.174.426.426 0 0 1-.582-.01 5 5 0 0 1-.396-.39 2025 2025 0 0 1-3.53-3.681 1.6 1.6 0 0 1-.189-.244.41.41 0 0 1-.015-.38\"/></g></g></svg>\n );\n }\n);\n\nLegalModule.displayName = 'LegalModule';\n","import React from 'react';\n\n/**\n * Props for the Magicko3DotsMore icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface Magicko3DotsMoreProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Magicko3DotsMore icon component\n * @example\n * ```tsx\n * import { Magicko3DotsMore } from 'magick-icons';\n * \n * <Magicko3DotsMore size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Magicko3DotsMore = React.forwardRef<SVGSVGElement, Magicko3DotsMoreProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" fill=\"none\" viewBox=\"0 0 20 20\"><path fill=\"#1e293b\" d=\"M5 10a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0\"/></svg>\n );\n }\n);\n\nMagicko3DotsMore.displayName = 'Magicko3DotsMore';\n","import React from 'react';\n\n/**\n * Props for the MagickoArchive icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface MagickoArchiveProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * MagickoArchive icon component\n * @example\n * ```tsx\n * import { MagickoArchive } from 'magick-icons';\n * \n * <MagickoArchive size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const MagickoArchive = React.forwardRef<SVGSVGElement, MagickoArchiveProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" fill=\"none\" viewBox=\"0 0 18 18\"><path fill=\"#1e293b\" d=\"M12.75 17.959h-7.5c-2.75 0-3.125-1.5-3.125-3.125V7.517a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v7.317c0 1.45.25 1.875 1.875 1.875h7.5c1.625 0 1.875-.425 1.875-1.875V7.517a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v7.317c0 1.625-.375 3.125-3.125 3.125\"/><path fill=\"#1e293b\" d=\"M14.833 7.958H3.167C1.15 7.958.042 6.85.042 4.833V3.167C.042 1.15 1.15.042 3.167.042h11.666c2.017 0 3.125 1.108 3.125 3.125v1.666c0 2.017-1.108 3.125-3.125 3.125M3.167 1.292c-1.317 0-1.875.558-1.875 1.875v1.666c0 1.317.558 1.875 1.875 1.875h11.666c1.317 0 1.875-.558 1.875-1.875V3.167c0-1.317-.558-1.875-1.875-1.875zm7.35 10H7.483a.63.63 0 0 1-.625-.625.63.63 0 0 1 .625-.625h3.034a.63.63 0 0 1 .625.625.63.63 0 0 1-.625.625\"/></svg>\n );\n }\n);\n\nMagickoArchive.displayName = 'MagickoArchive';\n","import React from 'react';\n\n/**\n * Props for the MagickoChart icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface MagickoChartProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * MagickoChart icon component\n * @example\n * ```tsx\n * import { MagickoChart } from 'magick-icons';\n * \n * <MagickoChart size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const MagickoChart = React.forwardRef<SVGSVGElement, MagickoChartProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" fill=\"none\" viewBox=\"0 0 20 20\"><path fill=\"#1e293b\" d=\"M3.333 18.958a2.29 2.29 0 0 1-2.291-2.291V8.333a2.29 2.29 0 0 1 2.291-2.291 2.29 2.29 0 0 1 2.292 2.291v8.334a2.29 2.29 0 0 1-2.292 2.291m0-11.666a1.04 1.04 0 0 0-1.041 1.041v8.334a1.042 1.042 0 0 0 2.083 0V8.333c0-.575-.467-1.041-1.042-1.041M10 18.958a2.29 2.29 0 0 1-2.292-2.291V3.333A2.29 2.29 0 0 1 10 1.042a2.29 2.29 0 0 1 2.292 2.291v13.334A2.29 2.29 0 0 1 10 18.958m0-16.666c-.575 0-1.042.466-1.042 1.041v13.334a1.042 1.042 0 0 0 2.084 0V3.333c0-.575-.467-1.041-1.042-1.041m6.667 16.666a2.29 2.29 0 0 1-2.292-2.291v-3.334a2.29 2.29 0 0 1 2.292-2.291 2.29 2.29 0 0 1 2.291 2.291v3.334a2.29 2.29 0 0 1-2.291 2.291m0-6.666c-.575 0-1.042.466-1.042 1.041v3.334a1.042 1.042 0 0 0 2.083 0v-3.334a1.04 1.04 0 0 0-1.041-1.041\"/></svg>\n );\n }\n);\n\nMagickoChart.displayName = 'MagickoChart';\n","import React from 'react';\n\n/**\n * Props for the MagickoKey icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface MagickoKeyProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * MagickoKey icon component\n * @example\n * ```tsx\n * import { MagickoKey } from 'magick-icons';\n * \n * <MagickoKey size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const MagickoKey = React.forwardRef<SVGSVGElement, MagickoKeyProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" fill=\"none\" viewBox=\"0 0 20 20\"><path fill=\"#1e293b\" d=\"M5.15 18.958c-.083 0-.175-.008-.25-.016l-1.808-.25c-.867-.117-1.65-.892-1.784-1.775l-.25-1.825c-.083-.584.167-1.342.584-1.767L5.3 9.667a6.9 6.9 0 0 1 1.833-6.592c2.7-2.692 7.092-2.7 9.8 0a6.88 6.88 0 0 1 2.025 4.9 6.88 6.88 0 0 1-2.025 4.9c-1.75 1.733-4.241 2.417-6.591 1.817L6.675 18.35c-.35.367-.975.608-1.525.608M12.025 2.3c-1.458 0-2.908.55-4.017 1.658a5.67 5.67 0 0 0-1.416 5.709.62.62 0 0 1-.159.625l-3.916 3.916c-.142.142-.259.509-.234.7l.25 1.825c.05.317.392.675.709.717l1.816.25c.2.033.567-.083.709-.225L9.7 13.55a.62.62 0 0 1 .625-.15 5.65 5.65 0 0 0 5.7-1.408 5.65 5.65 0 0 0 1.658-4.017 5.64 5.64 0 0 0-1.658-4.017 5.6 5.6 0 0 0-4-1.658\"/><path fill=\"#1e293b\" d=\"M7.658 17.117a.62.62 0 0 1-.441-.184L5.3 15.017a.63.63 0 0 1 0-.884.63.63 0 0 1 .883 0L8.1 16.05a.63.63 0 0 1 0 .883.62.62 0 0 1-.442.183m4.425-7.324a1.88 1.88 0 0 1-1.875-1.875c0-1.034.842-1.875 1.875-1.875 1.034 0 1.875.841 1.875 1.875a1.88 1.88 0 0 1-1.875 1.875m0-2.5a.63.63 0 0 0-.625.625.63.63 0 0 0 .625.625.63.63 0 0 0 .625-.625.63.63 0 0 0-.625-.625\"/></svg>\n );\n }\n);\n\nMagickoKey.displayName = 'MagickoKey';\n","import React from 'react';\n\n/**\n * Props for the MagickoProfileCircle icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface MagickoProfileCircleProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * MagickoProfileCircle icon component\n * @example\n * ```tsx\n * import { MagickoProfileCircle } from 'magick-icons';\n * \n * <MagickoProfileCircle size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const MagickoProfileCircle = React.forwardRef<SVGSVGElement, MagickoProfileCircleProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" fill=\"none\" viewBox=\"0 0 20 20\"><path fill=\"#1e293b\" d=\"M10.1 11.276h-.142c-1.891-.059-3.308-1.534-3.308-3.35a3.364 3.364 0 0 1 3.358-3.359 3.364 3.364 0 0 1 3.359 3.358 3.345 3.345 0 0 1-3.242 3.35zM10 5.809a2.11 2.11 0 0 0-2.108 2.108 2.1 2.1 0 0 0 2.025 2.108.7.7 0 0 1 .191 0 2.113 2.113 0 0 0 2-2.108A2.11 2.11 0 0 0 10 5.81m0 13.149a8.93 8.93 0 0 1-6.042-2.35.63.63 0 0 1-.2-.525c.109-.992.725-1.917 1.75-2.6 2.484-1.65 6.509-1.65 8.984 0 1.025.691 1.641 1.608 1.75 2.6.025.2-.05.391-.2.525A8.93 8.93 0 0 1 10 18.959m-4.933-3.042A7.67 7.67 0 0 0 10 17.709c1.808 0 3.55-.634 4.933-1.792-.15-.508-.55-1-1.141-1.4-2.05-1.367-5.525-1.367-7.592 0-.592.4-.983.892-1.133 1.4\"/><path fill=\"#1e293b\" d=\"M10 18.959c-4.942 0-8.958-4.017-8.958-8.959S5.058 1.042 10 1.042 18.958 5.058 18.958 10 14.942 18.96 10 18.96m0-16.667C5.75 2.292 2.292 5.75 2.292 10S5.75 17.71 10 17.71s7.708-3.46 7.708-7.71S14.25 2.292 10 2.292\"/></svg>\n );\n }\n);\n\nMagickoProfileCircle.displayName = 'MagickoProfileCircle';\n","import React from 'react';\n\n/**\n * Props for the MagickoSidebarLeft icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface MagickoSidebarLeftProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * MagickoSidebarLeft icon component\n * @example\n * ```tsx\n * import { MagickoSidebarLeft } from 'magick-icons';\n * \n * <MagickoSidebarLeft size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const MagickoSidebarLeft = React.forwardRef<SVGSVGElement, MagickoSidebarLeftProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" fill=\"none\" viewBox=\"0 0 20 20\"><path fill=\"#1e293b\" d=\"M12.475 18.958h-5c-4.525 0-6.458-1.933-6.458-6.458v-5c0-4.525 1.933-6.458 6.458-6.458h5c4.525 0 6.458 1.933 6.458 6.458v5c0 4.525-1.925 6.458-6.458 6.458m-5-16.666c-3.842 0-5.208 1.366-5.208 5.208v5c0 3.842 1.366 5.208 5.208 5.208h5c3.842 0 5.208-1.366 5.208-5.208v-5c0-3.842-1.366-5.208-5.208-5.208z\"/><path fill=\"#1e293b\" d=\"M6.642 18.958a.63.63 0 0 1-.625-.625V1.667a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v16.666a.624.624 0 0 1-.625.625m5.833-6.198a.62.62 0 0 1-.442-.184L9.9 10.443a.63.63 0 0 1 0-.884l2.133-2.133a.63.63 0 0 1 .884 0 .63.63 0 0 1 0 .883l-1.684 1.692 1.692 1.692a.63.63 0 0 1 0 .883.62.62 0 0 1-.45.183\"/></svg>\n );\n }\n);\n\nMagickoSidebarLeft.displayName = 'MagickoSidebarLeft';\n","import React from 'react';\n\n/**\n * Props for the MagickoSortDescending icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface MagickoSortDescendingProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * MagickoSortDescending icon component\n * @example\n * ```tsx\n * import { MagickoSortDescending } from 'magick-icons';\n * \n * <MagickoSortDescending size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const MagickoSortDescending = React.forwardRef<SVGSVGElement, MagickoSortDescendingProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" fill=\"none\" viewBox=\"0 0 20 20\"><path fill=\"#1e293b\" d=\"M15.075 16.777c-.342 0-.625-.272-.625-.6V4.48c0-.328.283-.6.625-.6.341 0 .625.272.625.6v11.696c0 .328-.284.6-.625.6m-6.2-10.72h-7c-.342 0-.625-.272-.625-.6s.283-.6.625-.6h7c.342 0 .625.272.625.6s-.283.6-.625.6m0 4.384h-7c-.342 0-.625-.272-.625-.6s.283-.6.625-.6h7c.342 0 .625.272.625.6s-.283.6-.625.6m-3.617 4.384H1.875c-.342 0-.625-.272-.625-.6s.283-.6.625-.6h3.383c.342 0 .625.272.625.6s-.283.6-.625.6\"/><path fill=\"#1e293b\" d=\"M15.075 16.777a.63.63 0 0 1-.442-.177l-3.041-2.92a.587.587 0 0 1 0-.848.65.65 0 0 1 .883 0l2.6 2.496 2.608-2.496a.65.65 0 0 1 .884 0 .587.587 0 0 1 0 .848l-3.05 2.92a.67.67 0 0 1-.442.177\"/></svg>\n );\n }\n);\n\nMagickoSortDescending.displayName = 'MagickoSortDescending';\n","import React from 'react';\n\n/**\n * Props for the MagickoSpeaker icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface MagickoSpeakerProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * MagickoSpeaker icon component\n * @example\n * ```tsx\n * import { MagickoSpeaker } from 'magick-icons';\n * \n * <MagickoSpeaker size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const MagickoSpeaker = React.forwardRef<SVGSVGElement, MagickoSpeakerProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\"><path fill=\"#1e293b\" d=\"M18.71 15.36c-.52 0-1.11-.12-1.73-.35-1.67-.6-3.58-2.01-5.24-3.87S8.9 7.22 8.48 5.49c-.37-1.48-.15-2.69.64-3.39.9-.8 2.35-.8 4.08.01 1.53.71 3.17 2 4.61 3.62 3.22 3.61 4.35 7.5 2.62 9.04-.45.39-1.03.59-1.72.59M10.85 3c-.31 0-.56.07-.72.22-.34.3-.4 1.02-.18 1.91.36 1.51 1.42 3.33 2.92 5.01s3.19 2.94 4.64 3.46c.88.33 1.6.34 1.93.04.8-.71.14-3.69-2.74-6.92-1.31-1.47-2.78-2.62-4.13-3.25-.67-.31-1.26-.47-1.72-.47\"/><path fill=\"#1e293b\" d=\"M5.71 19.48c-.83 0-1.62-.35-2.19-.99-.79-.88-.98-2.1-.49-3.18l5.53-12.4c.17-.38.61-.55.99-.38s.55.61.38.99L4.4 15.92c-.24.54-.15 1.13.24 1.57s.97.6 1.53.42l12.96-4.1c.4-.13.82.09.94.49s-.09.82-.49.94l-12.96 4.1c-.31.09-.61.14-.91.14\"/><path fill=\"#1e293b\" d=\"M10.41 22.5c-1.2 0-2.32-.77-2.7-1.98l-.63-1.99c-.12-.4.09-.82.49-.94.4-.13.82.09.94.49l.63 1.99c.11.34.34.61.66.78s.68.2 1.02.09l1.99-.63c.34-.11.61-.34.78-.66s.2-.68.09-1.02l-.63-1.99c-.12-.4.09-.82.49-.94.4-.13.82.09.94.49l.63 1.99c.23.72.16 1.49-.19 2.16s-.94 1.17-1.66 1.4l-1.99.63c-.29.09-.57.13-.86.13\"/></svg>\n );\n }\n);\n\nMagickoSpeaker.displayName = 'MagickoSpeaker';\n","import React from 'react';\n\n/**\n * Props for the MagickoTelescope icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface MagickoTelescopeProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * MagickoTelescope icon component\n * @example\n * ```tsx\n * import { MagickoTelescope } from 'magick-icons';\n * \n * <MagickoTelescope size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const MagickoTelescope = React.forwardRef<SVGSVGElement, MagickoTelescopeProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" fill=\"none\" viewBox=\"0 0 20 20\"><path fill=\"#1e293b\" d=\"M12.525 9.6c-.2 0-.4-.1-.517-.275L9.342 5.34a.63.63 0 0 1 .175-.867l4.716-3.158c.367-.25.809-.333 1.242-.25s.808.334 1.058.7l1.517 2.259a1.655 1.655 0 0 1-.458 2.3l-4.709 3.158a.6.6 0 0 1-.358.117m-1.792-4.434L12.7 8.108 16.892 5.3A.4.4 0 0 0 17 4.733l-1.517-2.258a.4.4 0 0 0-.258-.175.4.4 0 0 0-.308.058z\"/><path fill=\"#1e293b\" d=\"M8.284 11.867c-.2 0-.4-.1-.517-.276L5.633 8.409a.62.62 0 0 1 .176-.867l3.983-2.666a.62.62 0 0 1 .466-.092.6.6 0 0 1 .4.267l2.134 3.183a.62.62 0 0 1-.175.867l-3.984 2.667a.7.7 0 0 1-.35.1M7.017 8.233l1.433 2.142 2.942-1.967-1.434-2.15z\"/><path fill=\"#1e293b\" d=\"M4.4 14.017c-.467 0-.933-.225-1.217-.65l-.941-1.4a1.44 1.44 0 0 1-.217-1.091c.075-.384.292-.709.617-.925l3.291-2.2a.62.62 0 0 1 .867.175l1.867 2.783a.62.62 0 0 1-.175.867l-3.292 2.2a1.47 1.47 0 0 1-.8.241m1.708-4.891-2.766 1.85a.213.213 0 0 0-.059.291l.942 1.4a.213.213 0 0 0 .292.059l2.766-1.85zm.192 9.833a.6.6 0 0 1-.258-.058.62.62 0 0 1-.309-.825l3.742-8.167a.622.622 0 1 1 1.133.517l-3.741 8.166a.63.63 0 0 1-.567.367\"/><path fill=\"#1e293b\" d=\"M13.7 18.958a.61.61 0 0 1-.567-.367l-3.7-8.167a.626.626 0 0 1 .309-.825.63.63 0 0 1 .825.309l3.7 8.166a.626.626 0 0 1-.567.884\"/></svg>\n );\n }\n);\n\nMagickoTelescope.displayName = 'MagickoTelescope';\n","import React from 'react';\n\n/**\n * Props for the Magicpen icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface MagicpenProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Magicpen icon component\n * @example\n * ```tsx\n * import { Magicpen } from 'magick-icons';\n * \n * <Magicpen size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Magicpen = React.forwardRef<SVGSVGElement, MagicpenProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"#fff\" viewBox=\"0 0 24 24\"><path fill-rule=\"evenodd\" d=\"M3 19 19.002 2.998 22 5.996 19.537 8.46l-2.997-3-1.06 1.06 2.998 2.999-12.48 12.479z\" clip-rule=\"evenodd\"/><path d=\"M9.5 2.44 11 2l-.44 1.5L11 5l-1.5-.44L8 5l.44-1.5L8 2zm-4 6L7 8l-.44 1.5L7 11l-1.5-.44L4 11l.44-1.5L4 8zm15 5L22 13l-.44 1.5L22 16l-1.5-.44L19 16l.44-1.5L19 13z\" opacity=\".4\"/></svg>\n );\n }\n);\n\nMagicpen.displayName = 'Magicpen';\n"],"mappings":"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","names":["React","jsx","React","jsx","jsxs","React","jsx","jsxs","React","jsx","jsxs","React","jsx","jsxs","React","jsx","React","jsx","jsxs","React","jsx","React","jsx","jsxs","React","jsx","jsxs","React","jsx","jsxs","React","jsx","jsxs","React","jsx","jsxs","React","jsx","jsxs","React","jsx","jsxs"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "magick-icons",
3
- "version": "0.1.47",
3
+ "version": "0.1.48",
4
4
  "description": "Icon library for company projects",
5
5
  "main": "index.js",
6
6
  "module": "index.mjs",