magick-icons 0.1.36 → 0.1.37
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/icons/Enter.tsx +30 -0
- package/index.js +14 -2
- package/index.js.map +1 -1
- package/index.mjs +12 -1
- package/index.mjs.map +1 -1
- package/index.ts +6 -0
- package/package.json +1 -1
- package/types.ts +3 -1
package/icons/Enter.tsx
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Props for the Enter icon component
|
|
5
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
6
|
+
*/
|
|
7
|
+
export interface EnterProps extends React.SVGProps<SVGSVGElement> {
|
|
8
|
+
size?: number | string;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* Enter icon component
|
|
13
|
+
* @example
|
|
14
|
+
* ```tsx
|
|
15
|
+
* import { Enter } from 'magick-icons';
|
|
16
|
+
*
|
|
17
|
+
* <Enter size={24} className="text-blue-500" />
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
export const Enter = React.forwardRef<SVGSVGElement, EnterProps>(
|
|
21
|
+
({ size, ...props }, ref) => {
|
|
22
|
+
return (
|
|
23
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
24
|
+
<path d="M19.2499 6V8C19.2499 8.86195 18.9073 9.68836 18.2978 10.2979C17.6883 10.9073 16.8619 11.25 15.9999 11.25H5.81049L9.53022 7.53027L9.58197 7.47363C9.82228 7.17905 9.80482 6.74433 9.53022 6.46973C9.25561 6.19512 8.82089 6.17766 8.52631 6.41797L8.46967 6.46973L3.46967 11.4697C3.17678 11.7626 3.17678 12.2374 3.46967 12.5303L8.46967 17.5303C8.76256 17.8232 9.23732 17.8232 9.53022 17.5303C9.82311 17.2374 9.82311 16.7626 9.53022 16.4697L5.81049 12.75H15.9999C17.2597 12.75 18.4675 12.2492 19.3583 11.3584C20.2491 10.4676 20.7499 9.25978 20.7499 8V6C20.7499 5.58579 20.4142 5.25 19.9999 5.25C19.5857 5.25 19.2499 5.58579 19.2499 6Z" fill="black"/>
|
|
25
|
+
</svg>
|
|
26
|
+
);
|
|
27
|
+
}
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
Enter.displayName = 'Enter';
|
package/index.js
CHANGED
|
@@ -30,7 +30,8 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
30
30
|
// dist/index.ts
|
|
31
31
|
var index_exports = {};
|
|
32
32
|
__export(index_exports, {
|
|
33
|
-
Apple: () => Apple
|
|
33
|
+
Apple: () => Apple,
|
|
34
|
+
Enter: () => Enter
|
|
34
35
|
});
|
|
35
36
|
module.exports = __toCommonJS(index_exports);
|
|
36
37
|
|
|
@@ -46,8 +47,19 @@ var Apple = import_react.default.forwardRef(
|
|
|
46
47
|
}
|
|
47
48
|
);
|
|
48
49
|
Apple.displayName = "Apple";
|
|
50
|
+
|
|
51
|
+
// dist/icons/Enter.tsx
|
|
52
|
+
var import_react2 = __toESM(require("react"));
|
|
53
|
+
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
54
|
+
var Enter = import_react2.default.forwardRef(
|
|
55
|
+
({ size, ...props }, ref) => {
|
|
56
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M19.2499 6V8C19.2499 8.86195 18.9073 9.68836 18.2978 10.2979C17.6883 10.9073 16.8619 11.25 15.9999 11.25H5.81049L9.53022 7.53027L9.58197 7.47363C9.82228 7.17905 9.80482 6.74433 9.53022 6.46973C9.25561 6.19512 8.82089 6.17766 8.52631 6.41797L8.46967 6.46973L3.46967 11.4697C3.17678 11.7626 3.17678 12.2374 3.46967 12.5303L8.46967 17.5303C8.76256 17.8232 9.23732 17.8232 9.53022 17.5303C9.82311 17.2374 9.82311 16.7626 9.53022 16.4697L5.81049 12.75H15.9999C17.2597 12.75 18.4675 12.2492 19.3583 11.3584C20.2491 10.4676 20.7499 9.25978 20.7499 8V6C20.7499 5.58579 20.4142 5.25 19.9999 5.25C19.5857 5.25 19.2499 5.58579 19.2499 6Z", fill: "black" }) });
|
|
57
|
+
}
|
|
58
|
+
);
|
|
59
|
+
Enter.displayName = "Enter";
|
|
49
60
|
// Annotate the CommonJS export names for ESM import in node:
|
|
50
61
|
0 && (module.exports = {
|
|
51
|
-
Apple
|
|
62
|
+
Apple,
|
|
63
|
+
Enter
|
|
52
64
|
});
|
|
53
65
|
//# sourceMappingURL=index.js.map
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts","icons/Apple.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 { Apple } from 'magick-icons';\n * \n * function MyComponent() {\n * return <Apple size={24} className=\"text-blue-500\" />;\n * }\n * ```\n */\n\n/**\n * Apple icon component and its props type\n * @see {@link AppleProps} for available props\n */\nexport { Apple, type AppleProps } from './icons/Apple';\n","import React from 'react';\n\n/**\n * Props for the Apple icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface AppleProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Apple icon component\n * @example\n * ```tsx\n * import { Apple } from 'magick-icons';\n * \n * <Apple size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Apple = React.forwardRef<SVGSVGElement, AppleProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path d=\"M18.75 10C18.75 14.83 14.8344 18.75 10 18.75C5.16562 18.75 1.25 14.83 1.25 10C1.25 5.16562 5.16562 1.25 10 1.25C14.8344 1.25 18.75 5.16562 18.75 10Z\" fill=\"#283544\"/>\n<path d=\"M14.1013 7.78587C14.0536 7.81372 12.9169 8.40155 12.9169 9.70491C12.9705 11.1913 14.3513 11.7126 14.375 11.7126C14.3513 11.7404 14.1665 12.4227 13.6192 13.1378C13.1848 13.7539 12.7026 14.375 11.9705 14.375C11.2741 14.375 11.0241 13.9644 10.2205 13.9644C9.35752 13.9644 9.11334 14.375 8.45262 14.375C7.72048 14.375 7.20262 13.7206 6.74455 13.1103C6.14944 12.3116 5.64361 11.0582 5.62575 9.85467C5.61372 9.21692 5.74493 8.59002 6.07801 8.05754C6.54812 7.31416 7.3874 6.80952 8.30394 6.79288C9.0062 6.77082 9.6312 7.24217 10.0598 7.24217C10.4705 7.24217 11.2383 6.79288 12.1071 6.79288C12.4821 6.79325 13.4821 6.89851 14.1013 7.78587ZM10.0004 6.66555C9.87538 6.08315 10.2205 5.50074 10.5419 5.12923C10.9526 4.67995 11.6013 4.375 12.1607 4.375C12.1964 4.9574 11.9701 5.5286 11.5656 5.9446C11.2026 6.39388 10.5776 6.73211 10.0004 6.66555Z\" fill=\"white\"/>\n</svg>\n );\n }\n);\n\nApple.displayName = 'Apple';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA,mBAAkB;AAsBZ;AAHC,IAAM,QAAQ,aAAAA,QAAM;AAAA,EACzB,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,6CAAC,SAAI,OAAM,MAAK,QAAO,MAAK,SAAQ,aAAY,MAAK,QAAO,OAAM,8BACxE;AAAA,kDAAC,UAAK,GAAE,wJAAuJ,MAAK,WAAS;AAAA,MAC7K,4CAAC,UAAK,GAAE,q0BAAo0B,MAAK,SAAO;AAAA,OACx1B;AAAA,EAEE;AACF;AAEA,MAAM,cAAc;","names":["React"]}
|
|
1
|
+
{"version":3,"sources":["index.ts","icons/Apple.tsx","icons/Enter.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 { Apple } from 'magick-icons';\n * \n * function MyComponent() {\n * return <Apple size={24} className=\"text-blue-500\" />;\n * }\n * ```\n */\n\n/**\n * Apple icon component and its props type\n * @see {@link AppleProps} for available props\n */\nexport { Apple, type AppleProps } from './icons/Apple';\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","import React from 'react';\n\n/**\n * Props for the Apple icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface AppleProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Apple icon component\n * @example\n * ```tsx\n * import { Apple } from 'magick-icons';\n * \n * <Apple size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Apple = React.forwardRef<SVGSVGElement, AppleProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path d=\"M18.75 10C18.75 14.83 14.8344 18.75 10 18.75C5.16562 18.75 1.25 14.83 1.25 10C1.25 5.16562 5.16562 1.25 10 1.25C14.8344 1.25 18.75 5.16562 18.75 10Z\" fill=\"#283544\"/>\n<path d=\"M14.1013 7.78587C14.0536 7.81372 12.9169 8.40155 12.9169 9.70491C12.9705 11.1913 14.3513 11.7126 14.375 11.7126C14.3513 11.7404 14.1665 12.4227 13.6192 13.1378C13.1848 13.7539 12.7026 14.375 11.9705 14.375C11.2741 14.375 11.0241 13.9644 10.2205 13.9644C9.35752 13.9644 9.11334 14.375 8.45262 14.375C7.72048 14.375 7.20262 13.7206 6.74455 13.1103C6.14944 12.3116 5.64361 11.0582 5.62575 9.85467C5.61372 9.21692 5.74493 8.59002 6.07801 8.05754C6.54812 7.31416 7.3874 6.80952 8.30394 6.79288C9.0062 6.77082 9.6312 7.24217 10.0598 7.24217C10.4705 7.24217 11.2383 6.79288 12.1071 6.79288C12.4821 6.79325 13.4821 6.89851 14.1013 7.78587ZM10.0004 6.66555C9.87538 6.08315 10.2205 5.50074 10.5419 5.12923C10.9526 4.67995 11.6013 4.375 12.1607 4.375C12.1964 4.9574 11.9701 5.5286 11.5656 5.9446C11.2026 6.39388 10.5776 6.73211 10.0004 6.66555Z\" fill=\"white\"/>\n</svg>\n );\n }\n);\n\nApple.displayName = 'Apple';\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 width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path d=\"M19.2499 6V8C19.2499 8.86195 18.9073 9.68836 18.2978 10.2979C17.6883 10.9073 16.8619 11.25 15.9999 11.25H5.81049L9.53022 7.53027L9.58197 7.47363C9.82228 7.17905 9.80482 6.74433 9.53022 6.46973C9.25561 6.19512 8.82089 6.17766 8.52631 6.41797L8.46967 6.46973L3.46967 11.4697C3.17678 11.7626 3.17678 12.2374 3.46967 12.5303L8.46967 17.5303C8.76256 17.8232 9.23732 17.8232 9.53022 17.5303C9.82311 17.2374 9.82311 16.7626 9.53022 16.4697L5.81049 12.75H15.9999C17.2597 12.75 18.4675 12.2492 19.3583 11.3584C20.2491 10.4676 20.7499 9.25978 20.7499 8V6C20.7499 5.58579 20.4142 5.25 19.9999 5.25C19.5857 5.25 19.2499 5.58579 19.2499 6Z\" fill=\"black\"/>\n</svg>\n );\n }\n);\n\nEnter.displayName = 'Enter';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA,mBAAkB;AAsBZ;AAHC,IAAM,QAAQ,aAAAA,QAAM;AAAA,EACzB,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,6CAAC,SAAI,OAAM,MAAK,QAAO,MAAK,SAAQ,aAAY,MAAK,QAAO,OAAM,8BACxE;AAAA,kDAAC,UAAK,GAAE,wJAAuJ,MAAK,WAAS;AAAA,MAC7K,4CAAC,UAAK,GAAE,q0BAAo0B,MAAK,SAAO;AAAA,OACx1B;AAAA,EAEE;AACF;AAEA,MAAM,cAAc;;;AC9BpB,IAAAC,gBAAkB;AAuBlB,IAAAC,sBAAA;AAJO,IAAM,QAAQ,cAAAC,QAAM;AAAA,EACzB,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,6CAAC,SAAI,OAAM,MAAK,QAAO,MAAK,SAAQ,aAAY,MAAK,QAAO,OAAM,8BACxE,uDAAC,UAAK,GAAE,snBAAqnB,MAAK,SAAO,GACzoB;AAAA,EAEE;AACF;AAEA,MAAM,cAAc;","names":["React","import_react","import_jsx_runtime","React"]}
|
package/index.mjs
CHANGED
|
@@ -10,7 +10,18 @@ var Apple = React.forwardRef(
|
|
|
10
10
|
}
|
|
11
11
|
);
|
|
12
12
|
Apple.displayName = "Apple";
|
|
13
|
+
|
|
14
|
+
// dist/icons/Enter.tsx
|
|
15
|
+
import React2 from "react";
|
|
16
|
+
import { jsx as jsx2 } from "react/jsx-runtime";
|
|
17
|
+
var Enter = React2.forwardRef(
|
|
18
|
+
({ size, ...props }, ref) => {
|
|
19
|
+
return /* @__PURE__ */ jsx2("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx2("path", { d: "M19.2499 6V8C19.2499 8.86195 18.9073 9.68836 18.2978 10.2979C17.6883 10.9073 16.8619 11.25 15.9999 11.25H5.81049L9.53022 7.53027L9.58197 7.47363C9.82228 7.17905 9.80482 6.74433 9.53022 6.46973C9.25561 6.19512 8.82089 6.17766 8.52631 6.41797L8.46967 6.46973L3.46967 11.4697C3.17678 11.7626 3.17678 12.2374 3.46967 12.5303L8.46967 17.5303C8.76256 17.8232 9.23732 17.8232 9.53022 17.5303C9.82311 17.2374 9.82311 16.7626 9.53022 16.4697L5.81049 12.75H15.9999C17.2597 12.75 18.4675 12.2492 19.3583 11.3584C20.2491 10.4676 20.7499 9.25978 20.7499 8V6C20.7499 5.58579 20.4142 5.25 19.9999 5.25C19.5857 5.25 19.2499 5.58579 19.2499 6Z", fill: "black" }) });
|
|
20
|
+
}
|
|
21
|
+
);
|
|
22
|
+
Enter.displayName = "Enter";
|
|
13
23
|
export {
|
|
14
|
-
Apple
|
|
24
|
+
Apple,
|
|
25
|
+
Enter
|
|
15
26
|
};
|
|
16
27
|
//# sourceMappingURL=index.mjs.map
|
package/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["icons/Apple.tsx"],"sourcesContent":["import React from 'react';\n\n/**\n * Props for the Apple icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface AppleProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Apple icon component\n * @example\n * ```tsx\n * import { Apple } from 'magick-icons';\n * \n * <Apple size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Apple = React.forwardRef<SVGSVGElement, AppleProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path d=\"M18.75 10C18.75 14.83 14.8344 18.75 10 18.75C5.16562 18.75 1.25 14.83 1.25 10C1.25 5.16562 5.16562 1.25 10 1.25C14.8344 1.25 18.75 5.16562 18.75 10Z\" fill=\"#283544\"/>\n<path d=\"M14.1013 7.78587C14.0536 7.81372 12.9169 8.40155 12.9169 9.70491C12.9705 11.1913 14.3513 11.7126 14.375 11.7126C14.3513 11.7404 14.1665 12.4227 13.6192 13.1378C13.1848 13.7539 12.7026 14.375 11.9705 14.375C11.2741 14.375 11.0241 13.9644 10.2205 13.9644C9.35752 13.9644 9.11334 14.375 8.45262 14.375C7.72048 14.375 7.20262 13.7206 6.74455 13.1103C6.14944 12.3116 5.64361 11.0582 5.62575 9.85467C5.61372 9.21692 5.74493 8.59002 6.07801 8.05754C6.54812 7.31416 7.3874 6.80952 8.30394 6.79288C9.0062 6.77082 9.6312 7.24217 10.0598 7.24217C10.4705 7.24217 11.2383 6.79288 12.1071 6.79288C12.4821 6.79325 13.4821 6.89851 14.1013 7.78587ZM10.0004 6.66555C9.87538 6.08315 10.2205 5.50074 10.5419 5.12923C10.9526 4.67995 11.6013 4.375 12.1607 4.375C12.1964 4.9574 11.9701 5.5286 11.5656 5.9446C11.2026 6.39388 10.5776 6.73211 10.0004 6.66555Z\" fill=\"white\"/>\n</svg>\n );\n }\n);\n\nApple.displayName = 'Apple';\n"],"mappings":";AAAA,OAAO,WAAW;AAsBZ,SACN,KADM;AAHC,IAAM,QAAQ,MAAM;AAAA,EACzB,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,qBAAC,SAAI,OAAM,MAAK,QAAO,MAAK,SAAQ,aAAY,MAAK,QAAO,OAAM,8BACxE;AAAA,0BAAC,UAAK,GAAE,wJAAuJ,MAAK,WAAS;AAAA,MAC7K,oBAAC,UAAK,GAAE,q0BAAo0B,MAAK,SAAO;AAAA,OACx1B;AAAA,EAEE;AACF;AAEA,MAAM,cAAc;","names":[]}
|
|
1
|
+
{"version":3,"sources":["icons/Apple.tsx","icons/Enter.tsx"],"sourcesContent":["import React from 'react';\n\n/**\n * Props for the Apple icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface AppleProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Apple icon component\n * @example\n * ```tsx\n * import { Apple } from 'magick-icons';\n * \n * <Apple size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Apple = React.forwardRef<SVGSVGElement, AppleProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path d=\"M18.75 10C18.75 14.83 14.8344 18.75 10 18.75C5.16562 18.75 1.25 14.83 1.25 10C1.25 5.16562 5.16562 1.25 10 1.25C14.8344 1.25 18.75 5.16562 18.75 10Z\" fill=\"#283544\"/>\n<path d=\"M14.1013 7.78587C14.0536 7.81372 12.9169 8.40155 12.9169 9.70491C12.9705 11.1913 14.3513 11.7126 14.375 11.7126C14.3513 11.7404 14.1665 12.4227 13.6192 13.1378C13.1848 13.7539 12.7026 14.375 11.9705 14.375C11.2741 14.375 11.0241 13.9644 10.2205 13.9644C9.35752 13.9644 9.11334 14.375 8.45262 14.375C7.72048 14.375 7.20262 13.7206 6.74455 13.1103C6.14944 12.3116 5.64361 11.0582 5.62575 9.85467C5.61372 9.21692 5.74493 8.59002 6.07801 8.05754C6.54812 7.31416 7.3874 6.80952 8.30394 6.79288C9.0062 6.77082 9.6312 7.24217 10.0598 7.24217C10.4705 7.24217 11.2383 6.79288 12.1071 6.79288C12.4821 6.79325 13.4821 6.89851 14.1013 7.78587ZM10.0004 6.66555C9.87538 6.08315 10.2205 5.50074 10.5419 5.12923C10.9526 4.67995 11.6013 4.375 12.1607 4.375C12.1964 4.9574 11.9701 5.5286 11.5656 5.9446C11.2026 6.39388 10.5776 6.73211 10.0004 6.66555Z\" fill=\"white\"/>\n</svg>\n );\n }\n);\n\nApple.displayName = 'Apple';\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 width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path d=\"M19.2499 6V8C19.2499 8.86195 18.9073 9.68836 18.2978 10.2979C17.6883 10.9073 16.8619 11.25 15.9999 11.25H5.81049L9.53022 7.53027L9.58197 7.47363C9.82228 7.17905 9.80482 6.74433 9.53022 6.46973C9.25561 6.19512 8.82089 6.17766 8.52631 6.41797L8.46967 6.46973L3.46967 11.4697C3.17678 11.7626 3.17678 12.2374 3.46967 12.5303L8.46967 17.5303C8.76256 17.8232 9.23732 17.8232 9.53022 17.5303C9.82311 17.2374 9.82311 16.7626 9.53022 16.4697L5.81049 12.75H15.9999C17.2597 12.75 18.4675 12.2492 19.3583 11.3584C20.2491 10.4676 20.7499 9.25978 20.7499 8V6C20.7499 5.58579 20.4142 5.25 19.9999 5.25C19.5857 5.25 19.2499 5.58579 19.2499 6Z\" fill=\"black\"/>\n</svg>\n );\n }\n);\n\nEnter.displayName = 'Enter';\n"],"mappings":";AAAA,OAAO,WAAW;AAsBZ,SACN,KADM;AAHC,IAAM,QAAQ,MAAM;AAAA,EACzB,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,qBAAC,SAAI,OAAM,MAAK,QAAO,MAAK,SAAQ,aAAY,MAAK,QAAO,OAAM,8BACxE;AAAA,0BAAC,UAAK,GAAE,wJAAuJ,MAAK,WAAS;AAAA,MAC7K,oBAAC,UAAK,GAAE,q0BAAo0B,MAAK,SAAO;AAAA,OACx1B;AAAA,EAEE;AACF;AAEA,MAAM,cAAc;;;AC9BpB,OAAOA,YAAW;AAuBlB,gBAAAC,YAAA;AAJO,IAAM,QAAQD,OAAM;AAAA,EACzB,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,gBAAAC,KAAC,SAAI,OAAM,MAAK,QAAO,MAAK,SAAQ,aAAY,MAAK,QAAO,OAAM,8BACxE,0BAAAA,KAAC,UAAK,GAAE,snBAAqnB,MAAK,SAAO,GACzoB;AAAA,EAEE;AACF;AAEA,MAAM,cAAc;","names":["React","jsx"]}
|
package/index.ts
CHANGED
|
@@ -18,3 +18,9 @@
|
|
|
18
18
|
* @see {@link AppleProps} for available props
|
|
19
19
|
*/
|
|
20
20
|
export { Apple, type AppleProps } from './icons/Apple';
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Enter icon component and its props type
|
|
24
|
+
* @see {@link EnterProps} for available props
|
|
25
|
+
*/
|
|
26
|
+
export { Enter, type EnterProps } from './icons/Enter';
|
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
// Auto-generated file - do not edit manually
|
|
2
2
|
import type * as React from 'react';
|
|
3
3
|
import type { AppleProps } from './icons/Apple';
|
|
4
|
+
import type { EnterProps } from './icons/Enter';
|
|
4
5
|
|
|
5
6
|
export interface IconComponents {
|
|
6
7
|
Apple: React.ComponentType<AppleProps>;
|
|
8
|
+
Enter: React.ComponentType<EnterProps>;
|
|
7
9
|
}
|
|
8
10
|
|
|
9
|
-
export type IconName = 'Apple';
|
|
11
|
+
export type IconName = 'Apple' | 'Enter';
|