magick-icons 0.1.36 → 0.1.38

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.
@@ -0,0 +1,35 @@
1
+ import React from 'react';
2
+
3
+ /**
4
+ * Props for the GDrive icon component
5
+ * @property {number | string} [size] - Size of the icon (default: 24)
6
+ */
7
+ export interface GDriveProps extends React.SVGProps<SVGSVGElement> {
8
+ size?: number | string;
9
+ }
10
+
11
+ /**
12
+ * GDrive icon component
13
+ * @example
14
+ * ```tsx
15
+ * import { GDrive } from 'magick-icons';
16
+ *
17
+ * <GDrive size={24} className="text-blue-500" />
18
+ * ```
19
+ */
20
+ export const GDrive = React.forwardRef<SVGSVGElement, GDriveProps>(
21
+ ({ size, ...props }, ref) => {
22
+ return (
23
+ <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
24
+ <path d="M7.00119 4.7818L4.83814 0.964479C4.90996 0.891356 4.99259 0.843394 5.07522 0.811157C4.43734 1.02109 4.14466 1.73738 4.14466 1.73738L0.193096 8.7092C0.137494 8.92779 0.122048 9.12514 0.128998 9.2989H4.44198L7.00119 4.7818Z" fill="#34A853"/>
25
+ <path d="M7.00098 4.7818L9.56019 9.2989H13.8732C13.8801 9.12514 13.8647 8.92779 13.8091 8.7092L9.8575 1.73738C9.8575 1.73738 9.56405 1.02109 8.92695 0.811157C9.00881 0.843394 9.09221 0.891356 9.16403 0.964479L7.00098 4.7818Z" fill="#FBBC05"/>
26
+ <path d="M7.00143 4.78202L9.16449 0.964694C9.09267 0.891571 9.00927 0.843609 8.92741 0.811372C8.83319 0.780707 8.73203 0.760265 8.62237 0.754761H8.50808H5.49479H5.38049C5.27161 0.759478 5.16967 0.779921 5.07546 0.811372C4.9936 0.843609 4.9102 0.891571 4.83838 0.964694L7.00143 4.78202Z" fill="#188038"/>
27
+ <path d="M4.44264 9.29895L2.3043 13.073C2.3043 13.073 2.23325 13.0384 2.13672 12.9669C2.44021 13.2004 2.73521 13.2499 2.73521 13.2499H11.1334C11.5967 13.2499 11.6932 13.073 11.6932 13.073C11.6948 13.0722 11.6955 13.0715 11.6971 13.0707L9.5603 9.29895H4.44264Z" fill="#4285F4"/>
28
+ <path d="M4.44286 9.29895H0.129883C0.151506 9.8116 0.373912 10.1112 0.373912 10.1112L0.536083 10.3926C0.547667 10.4092 0.554617 10.4186 0.554617 10.4186L0.907532 11.0382L1.69985 12.4173C1.72302 12.4731 1.75005 12.5242 1.77862 12.573C1.78943 12.5895 1.79947 12.6076 1.81106 12.6233C1.81414 12.628 1.81723 12.6327 1.82032 12.6374C1.9184 12.7758 2.02806 12.8828 2.13772 12.9669C2.23425 13.0392 2.30529 13.073 2.30529 13.073L4.44286 9.29895Z" fill="#1967D2"/>
29
+ <path d="M9.56055 9.29895H13.8735C13.8519 9.8116 13.6295 10.1112 13.6295 10.1112L13.4673 10.3926C13.4557 10.4092 13.4488 10.4186 13.4488 10.4186L13.0959 11.0382L12.3036 12.4173C12.2804 12.4731 12.2534 12.5242 12.2248 12.573C12.214 12.5895 12.2039 12.6076 12.1923 12.6233C12.1893 12.628 12.1862 12.6327 12.1831 12.6374C12.085 12.7758 11.9753 12.8828 11.8657 12.9669C11.7692 13.0392 11.6981 13.073 11.6981 13.073L9.56055 9.29895Z" fill="#EA4335"/>
30
+ </svg>
31
+ );
32
+ }
33
+ );
34
+
35
+ GDrive.displayName = 'GDrive';
package/index.d.mts CHANGED
@@ -1,111 +1,21 @@
1
1
  import React from 'react';
2
2
 
3
3
  /**
4
- * Props for the Apple icon component
4
+ * Props for the GDrive icon component
5
5
  * @property {number | string} [size] - Size of the icon (default: 24)
6
6
  */
7
- interface AppleProps extends React.SVGProps<SVGSVGElement> {
7
+ interface GDriveProps extends React.SVGProps<SVGSVGElement> {
8
8
  size?: number | string;
9
9
  }
10
10
  /**
11
- * Apple icon component
11
+ * GDrive icon component
12
12
  * @example
13
13
  * ```tsx
14
- * import { Apple } from 'magick-icons';
14
+ * import { GDrive } from 'magick-icons';
15
15
  *
16
- * <Apple size={24} className="text-blue-500" />
16
+ * <GDrive size={24} className="text-blue-500" />
17
17
  * ```
18
18
  */
19
- declare const Apple: React.ForwardRefExoticComponent<Omit<AppleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
19
+ declare const GDrive: React.ForwardRefExoticComponent<Omit<GDriveProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
20
20
 
21
- /**
22
- * Props for the BrandInstagram icon component
23
- * @property {number | string} [size] - Size of the icon (default: 24)
24
- */
25
- interface BrandInstagramProps extends React.SVGProps<SVGSVGElement> {
26
- size?: number | string;
27
- }
28
- /**
29
- * BrandInstagram icon component
30
- * @example
31
- * ```tsx
32
- * import { BrandInstagram } from 'magick-icons';
33
- *
34
- * <BrandInstagram size={24} className="text-blue-500" />
35
- * ```
36
- */
37
- declare const BrandInstagram: React.ForwardRefExoticComponent<Omit<BrandInstagramProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
38
-
39
- /**
40
- * Props for the Image6 icon component
41
- * @property {number | string} [size] - Size of the icon (default: 24)
42
- */
43
- interface Image6Props extends React.SVGProps<SVGSVGElement> {
44
- size?: number | string;
45
- }
46
- /**
47
- * Image6 icon component
48
- * @example
49
- * ```tsx
50
- * import { Image6 } from 'magick-icons';
51
- *
52
- * <Image6 size={24} className="text-blue-500" />
53
- * ```
54
- */
55
- declare const Image6: React.ForwardRefExoticComponent<Omit<Image6Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
56
-
57
- /**
58
- * Props for the IxWebcam1 icon component
59
- * @property {number | string} [size] - Size of the icon (default: 24)
60
- */
61
- interface IxWebcam1Props extends React.SVGProps<SVGSVGElement> {
62
- size?: number | string;
63
- }
64
- /**
65
- * IxWebcam1 icon component
66
- * @example
67
- * ```tsx
68
- * import { IxWebcam1 } from 'magick-icons';
69
- *
70
- * <IxWebcam1 size={24} className="text-blue-500" />
71
- * ```
72
- */
73
- declare const IxWebcam1: React.ForwardRefExoticComponent<Omit<IxWebcam1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
74
-
75
- /**
76
- * Props for the Magicko3DotsMore icon component
77
- * @property {number | string} [size] - Size of the icon (default: 24)
78
- */
79
- interface Magicko3DotsMoreProps extends React.SVGProps<SVGSVGElement> {
80
- size?: number | string;
81
- }
82
- /**
83
- * Magicko3DotsMore icon component
84
- * @example
85
- * ```tsx
86
- * import { Magicko3DotsMore } from 'magick-icons';
87
- *
88
- * <Magicko3DotsMore size={24} className="text-blue-500" />
89
- * ```
90
- */
91
- declare const Magicko3DotsMore: React.ForwardRefExoticComponent<Omit<Magicko3DotsMoreProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
92
-
93
- /**
94
- * Props for the Sparkles icon component
95
- * @property {number | string} [size] - Size of the icon (default: 24)
96
- */
97
- interface SparklesProps extends React.SVGProps<SVGSVGElement> {
98
- size?: number | string;
99
- }
100
- /**
101
- * Sparkles icon component
102
- * @example
103
- * ```tsx
104
- * import { Sparkles } from 'magick-icons';
105
- *
106
- * <Sparkles size={24} className="text-blue-500" />
107
- * ```
108
- */
109
- declare const Sparkles: React.ForwardRefExoticComponent<Omit<SparklesProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
110
-
111
- export { Apple, type AppleProps, BrandInstagram, type BrandInstagramProps, Image6, type Image6Props, IxWebcam1, type IxWebcam1Props, Magicko3DotsMore, type Magicko3DotsMoreProps, Sparkles, type SparklesProps };
21
+ export { GDrive, type GDriveProps };
package/index.d.ts CHANGED
@@ -1,111 +1,21 @@
1
1
  import React from 'react';
2
2
 
3
3
  /**
4
- * Props for the Apple icon component
4
+ * Props for the GDrive icon component
5
5
  * @property {number | string} [size] - Size of the icon (default: 24)
6
6
  */
7
- interface AppleProps extends React.SVGProps<SVGSVGElement> {
7
+ interface GDriveProps extends React.SVGProps<SVGSVGElement> {
8
8
  size?: number | string;
9
9
  }
10
10
  /**
11
- * Apple icon component
11
+ * GDrive icon component
12
12
  * @example
13
13
  * ```tsx
14
- * import { Apple } from 'magick-icons';
14
+ * import { GDrive } from 'magick-icons';
15
15
  *
16
- * <Apple size={24} className="text-blue-500" />
16
+ * <GDrive size={24} className="text-blue-500" />
17
17
  * ```
18
18
  */
19
- declare const Apple: React.ForwardRefExoticComponent<Omit<AppleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
19
+ declare const GDrive: React.ForwardRefExoticComponent<Omit<GDriveProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
20
20
 
21
- /**
22
- * Props for the BrandInstagram icon component
23
- * @property {number | string} [size] - Size of the icon (default: 24)
24
- */
25
- interface BrandInstagramProps extends React.SVGProps<SVGSVGElement> {
26
- size?: number | string;
27
- }
28
- /**
29
- * BrandInstagram icon component
30
- * @example
31
- * ```tsx
32
- * import { BrandInstagram } from 'magick-icons';
33
- *
34
- * <BrandInstagram size={24} className="text-blue-500" />
35
- * ```
36
- */
37
- declare const BrandInstagram: React.ForwardRefExoticComponent<Omit<BrandInstagramProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
38
-
39
- /**
40
- * Props for the Image6 icon component
41
- * @property {number | string} [size] - Size of the icon (default: 24)
42
- */
43
- interface Image6Props extends React.SVGProps<SVGSVGElement> {
44
- size?: number | string;
45
- }
46
- /**
47
- * Image6 icon component
48
- * @example
49
- * ```tsx
50
- * import { Image6 } from 'magick-icons';
51
- *
52
- * <Image6 size={24} className="text-blue-500" />
53
- * ```
54
- */
55
- declare const Image6: React.ForwardRefExoticComponent<Omit<Image6Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
56
-
57
- /**
58
- * Props for the IxWebcam1 icon component
59
- * @property {number | string} [size] - Size of the icon (default: 24)
60
- */
61
- interface IxWebcam1Props extends React.SVGProps<SVGSVGElement> {
62
- size?: number | string;
63
- }
64
- /**
65
- * IxWebcam1 icon component
66
- * @example
67
- * ```tsx
68
- * import { IxWebcam1 } from 'magick-icons';
69
- *
70
- * <IxWebcam1 size={24} className="text-blue-500" />
71
- * ```
72
- */
73
- declare const IxWebcam1: React.ForwardRefExoticComponent<Omit<IxWebcam1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
74
-
75
- /**
76
- * Props for the Magicko3DotsMore icon component
77
- * @property {number | string} [size] - Size of the icon (default: 24)
78
- */
79
- interface Magicko3DotsMoreProps extends React.SVGProps<SVGSVGElement> {
80
- size?: number | string;
81
- }
82
- /**
83
- * Magicko3DotsMore icon component
84
- * @example
85
- * ```tsx
86
- * import { Magicko3DotsMore } from 'magick-icons';
87
- *
88
- * <Magicko3DotsMore size={24} className="text-blue-500" />
89
- * ```
90
- */
91
- declare const Magicko3DotsMore: React.ForwardRefExoticComponent<Omit<Magicko3DotsMoreProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
92
-
93
- /**
94
- * Props for the Sparkles icon component
95
- * @property {number | string} [size] - Size of the icon (default: 24)
96
- */
97
- interface SparklesProps extends React.SVGProps<SVGSVGElement> {
98
- size?: number | string;
99
- }
100
- /**
101
- * Sparkles icon component
102
- * @example
103
- * ```tsx
104
- * import { Sparkles } from 'magick-icons';
105
- *
106
- * <Sparkles size={24} className="text-blue-500" />
107
- * ```
108
- */
109
- declare const Sparkles: React.ForwardRefExoticComponent<Omit<SparklesProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
110
-
111
- export { Apple, type AppleProps, BrandInstagram, type BrandInstagramProps, Image6, type Image6Props, IxWebcam1, type IxWebcam1Props, Magicko3DotsMore, type Magicko3DotsMoreProps, Sparkles, type SparklesProps };
21
+ export { GDrive, type GDriveProps };
package/index.js CHANGED
@@ -30,24 +30,28 @@ 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
+ GDrive: () => GDrive
34
34
  });
35
35
  module.exports = __toCommonJS(index_exports);
36
36
 
37
- // dist/icons/Apple.tsx
37
+ // dist/icons/GDrive.tsx
38
38
  var import_react = __toESM(require("react"));
39
39
  var import_jsx_runtime = require("react/jsx-runtime");
40
- var Apple = import_react.default.forwardRef(
40
+ var GDrive = import_react.default.forwardRef(
41
41
  ({ size, ...props }, ref) => {
42
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
43
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("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" }),
44
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("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" })
42
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("svg", { width: "14", height: "14", viewBox: "0 0 14 14", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
43
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M7.00119 4.7818L4.83814 0.964479C4.90996 0.891356 4.99259 0.843394 5.07522 0.811157C4.43734 1.02109 4.14466 1.73738 4.14466 1.73738L0.193096 8.7092C0.137494 8.92779 0.122048 9.12514 0.128998 9.2989H4.44198L7.00119 4.7818Z", fill: "#34A853" }),
44
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M7.00098 4.7818L9.56019 9.2989H13.8732C13.8801 9.12514 13.8647 8.92779 13.8091 8.7092L9.8575 1.73738C9.8575 1.73738 9.56405 1.02109 8.92695 0.811157C9.00881 0.843394 9.09221 0.891356 9.16403 0.964479L7.00098 4.7818Z", fill: "#FBBC05" }),
45
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M7.00143 4.78202L9.16449 0.964694C9.09267 0.891571 9.00927 0.843609 8.92741 0.811372C8.83319 0.780707 8.73203 0.760265 8.62237 0.754761H8.50808H5.49479H5.38049C5.27161 0.759478 5.16967 0.779921 5.07546 0.811372C4.9936 0.843609 4.9102 0.891571 4.83838 0.964694L7.00143 4.78202Z", fill: "#188038" }),
46
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4.44264 9.29895L2.3043 13.073C2.3043 13.073 2.23325 13.0384 2.13672 12.9669C2.44021 13.2004 2.73521 13.2499 2.73521 13.2499H11.1334C11.5967 13.2499 11.6932 13.073 11.6932 13.073C11.6948 13.0722 11.6955 13.0715 11.6971 13.0707L9.5603 9.29895H4.44264Z", fill: "#4285F4" }),
47
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4.44286 9.29895H0.129883C0.151506 9.8116 0.373912 10.1112 0.373912 10.1112L0.536083 10.3926C0.547667 10.4092 0.554617 10.4186 0.554617 10.4186L0.907532 11.0382L1.69985 12.4173C1.72302 12.4731 1.75005 12.5242 1.77862 12.573C1.78943 12.5895 1.79947 12.6076 1.81106 12.6233C1.81414 12.628 1.81723 12.6327 1.82032 12.6374C1.9184 12.7758 2.02806 12.8828 2.13772 12.9669C2.23425 13.0392 2.30529 13.073 2.30529 13.073L4.44286 9.29895Z", fill: "#1967D2" }),
48
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M9.56055 9.29895H13.8735C13.8519 9.8116 13.6295 10.1112 13.6295 10.1112L13.4673 10.3926C13.4557 10.4092 13.4488 10.4186 13.4488 10.4186L13.0959 11.0382L12.3036 12.4173C12.2804 12.4731 12.2534 12.5242 12.2248 12.573C12.214 12.5895 12.2039 12.6076 12.1923 12.6233C12.1893 12.628 12.1862 12.6327 12.1831 12.6374C12.085 12.7758 11.9753 12.8828 11.8657 12.9669C11.7692 13.0392 11.6981 13.073 11.6981 13.073L9.56055 9.29895Z", fill: "#EA4335" })
45
49
  ] });
46
50
  }
47
51
  );
48
- Apple.displayName = "Apple";
52
+ GDrive.displayName = "GDrive";
49
53
  // Annotate the CommonJS export names for ESM import in node:
50
54
  0 && (module.exports = {
51
- Apple
55
+ GDrive
52
56
  });
53
57
  //# 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/GDrive.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 { GDrive } from 'magick-icons';\n * \n * function MyComponent() {\n * return <GDrive size={24} className=\"text-blue-500\" />;\n * }\n * ```\n */\n\n/**\n * GDrive icon component and its props type\n * @see {@link GDriveProps} for available props\n */\nexport { GDrive, type GDriveProps } from './icons/GDrive';\n","import React from 'react';\n\n/**\n * Props for the GDrive icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface GDriveProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * GDrive icon component\n * @example\n * ```tsx\n * import { GDrive } from 'magick-icons';\n * \n * <GDrive size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const GDrive = React.forwardRef<SVGSVGElement, GDriveProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path d=\"M7.00119 4.7818L4.83814 0.964479C4.90996 0.891356 4.99259 0.843394 5.07522 0.811157C4.43734 1.02109 4.14466 1.73738 4.14466 1.73738L0.193096 8.7092C0.137494 8.92779 0.122048 9.12514 0.128998 9.2989H4.44198L7.00119 4.7818Z\" fill=\"#34A853\"/>\n<path d=\"M7.00098 4.7818L9.56019 9.2989H13.8732C13.8801 9.12514 13.8647 8.92779 13.8091 8.7092L9.8575 1.73738C9.8575 1.73738 9.56405 1.02109 8.92695 0.811157C9.00881 0.843394 9.09221 0.891356 9.16403 0.964479L7.00098 4.7818Z\" fill=\"#FBBC05\"/>\n<path d=\"M7.00143 4.78202L9.16449 0.964694C9.09267 0.891571 9.00927 0.843609 8.92741 0.811372C8.83319 0.780707 8.73203 0.760265 8.62237 0.754761H8.50808H5.49479H5.38049C5.27161 0.759478 5.16967 0.779921 5.07546 0.811372C4.9936 0.843609 4.9102 0.891571 4.83838 0.964694L7.00143 4.78202Z\" fill=\"#188038\"/>\n<path d=\"M4.44264 9.29895L2.3043 13.073C2.3043 13.073 2.23325 13.0384 2.13672 12.9669C2.44021 13.2004 2.73521 13.2499 2.73521 13.2499H11.1334C11.5967 13.2499 11.6932 13.073 11.6932 13.073C11.6948 13.0722 11.6955 13.0715 11.6971 13.0707L9.5603 9.29895H4.44264Z\" fill=\"#4285F4\"/>\n<path d=\"M4.44286 9.29895H0.129883C0.151506 9.8116 0.373912 10.1112 0.373912 10.1112L0.536083 10.3926C0.547667 10.4092 0.554617 10.4186 0.554617 10.4186L0.907532 11.0382L1.69985 12.4173C1.72302 12.4731 1.75005 12.5242 1.77862 12.573C1.78943 12.5895 1.79947 12.6076 1.81106 12.6233C1.81414 12.628 1.81723 12.6327 1.82032 12.6374C1.9184 12.7758 2.02806 12.8828 2.13772 12.9669C2.23425 13.0392 2.30529 13.073 2.30529 13.073L4.44286 9.29895Z\" fill=\"#1967D2\"/>\n<path d=\"M9.56055 9.29895H13.8735C13.8519 9.8116 13.6295 10.1112 13.6295 10.1112L13.4673 10.3926C13.4557 10.4092 13.4488 10.4186 13.4488 10.4186L13.0959 11.0382L12.3036 12.4173C12.2804 12.4731 12.2534 12.5242 12.2248 12.573C12.214 12.5895 12.2039 12.6076 12.1923 12.6233C12.1893 12.628 12.1862 12.6327 12.1831 12.6374C12.085 12.7758 11.9753 12.8828 11.8657 12.9669C11.7692 13.0392 11.6981 13.073 11.6981 13.073L9.56055 9.29895Z\" fill=\"#EA4335\"/>\n</svg>\n );\n }\n);\n\nGDrive.displayName = 'GDrive';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA,mBAAkB;AAsBZ;AAHC,IAAM,SAAS,aAAAA,QAAM;AAAA,EAC1B,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,iOAAgO,MAAK,WAAS;AAAA,MACtP,4CAAC,UAAK,GAAE,2NAA0N,MAAK,WAAS;AAAA,MAChP,4CAAC,UAAK,GAAE,wRAAuR,MAAK,WAAS;AAAA,MAC7S,4CAAC,UAAK,GAAE,8PAA6P,MAAK,WAAS;AAAA,MACnR,4CAAC,UAAK,GAAE,gbAA+a,MAAK,WAAS;AAAA,MACrc,4CAAC,UAAK,GAAE,saAAqa,MAAK,WAAS;AAAA,OAC3b;AAAA,EAEE;AACF;AAEA,OAAO,cAAc;","names":["React"]}
package/index.mjs CHANGED
@@ -1,16 +1,20 @@
1
- // dist/icons/Apple.tsx
1
+ // dist/icons/GDrive.tsx
2
2
  import React from "react";
3
3
  import { jsx, jsxs } from "react/jsx-runtime";
4
- var Apple = React.forwardRef(
4
+ var GDrive = React.forwardRef(
5
5
  ({ size, ...props }, ref) => {
6
- return /* @__PURE__ */ jsxs("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
7
- /* @__PURE__ */ jsx("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" }),
8
- /* @__PURE__ */ jsx("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" })
6
+ return /* @__PURE__ */ jsxs("svg", { width: "14", height: "14", viewBox: "0 0 14 14", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
7
+ /* @__PURE__ */ jsx("path", { d: "M7.00119 4.7818L4.83814 0.964479C4.90996 0.891356 4.99259 0.843394 5.07522 0.811157C4.43734 1.02109 4.14466 1.73738 4.14466 1.73738L0.193096 8.7092C0.137494 8.92779 0.122048 9.12514 0.128998 9.2989H4.44198L7.00119 4.7818Z", fill: "#34A853" }),
8
+ /* @__PURE__ */ jsx("path", { d: "M7.00098 4.7818L9.56019 9.2989H13.8732C13.8801 9.12514 13.8647 8.92779 13.8091 8.7092L9.8575 1.73738C9.8575 1.73738 9.56405 1.02109 8.92695 0.811157C9.00881 0.843394 9.09221 0.891356 9.16403 0.964479L7.00098 4.7818Z", fill: "#FBBC05" }),
9
+ /* @__PURE__ */ jsx("path", { d: "M7.00143 4.78202L9.16449 0.964694C9.09267 0.891571 9.00927 0.843609 8.92741 0.811372C8.83319 0.780707 8.73203 0.760265 8.62237 0.754761H8.50808H5.49479H5.38049C5.27161 0.759478 5.16967 0.779921 5.07546 0.811372C4.9936 0.843609 4.9102 0.891571 4.83838 0.964694L7.00143 4.78202Z", fill: "#188038" }),
10
+ /* @__PURE__ */ jsx("path", { d: "M4.44264 9.29895L2.3043 13.073C2.3043 13.073 2.23325 13.0384 2.13672 12.9669C2.44021 13.2004 2.73521 13.2499 2.73521 13.2499H11.1334C11.5967 13.2499 11.6932 13.073 11.6932 13.073C11.6948 13.0722 11.6955 13.0715 11.6971 13.0707L9.5603 9.29895H4.44264Z", fill: "#4285F4" }),
11
+ /* @__PURE__ */ jsx("path", { d: "M4.44286 9.29895H0.129883C0.151506 9.8116 0.373912 10.1112 0.373912 10.1112L0.536083 10.3926C0.547667 10.4092 0.554617 10.4186 0.554617 10.4186L0.907532 11.0382L1.69985 12.4173C1.72302 12.4731 1.75005 12.5242 1.77862 12.573C1.78943 12.5895 1.79947 12.6076 1.81106 12.6233C1.81414 12.628 1.81723 12.6327 1.82032 12.6374C1.9184 12.7758 2.02806 12.8828 2.13772 12.9669C2.23425 13.0392 2.30529 13.073 2.30529 13.073L4.44286 9.29895Z", fill: "#1967D2" }),
12
+ /* @__PURE__ */ jsx("path", { d: "M9.56055 9.29895H13.8735C13.8519 9.8116 13.6295 10.1112 13.6295 10.1112L13.4673 10.3926C13.4557 10.4092 13.4488 10.4186 13.4488 10.4186L13.0959 11.0382L12.3036 12.4173C12.2804 12.4731 12.2534 12.5242 12.2248 12.573C12.214 12.5895 12.2039 12.6076 12.1923 12.6233C12.1893 12.628 12.1862 12.6327 12.1831 12.6374C12.085 12.7758 11.9753 12.8828 11.8657 12.9669C11.7692 13.0392 11.6981 13.073 11.6981 13.073L9.56055 9.29895Z", fill: "#EA4335" })
9
13
  ] });
10
14
  }
11
15
  );
12
- Apple.displayName = "Apple";
16
+ GDrive.displayName = "GDrive";
13
17
  export {
14
- Apple
18
+ GDrive
15
19
  };
16
20
  //# 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/GDrive.tsx"],"sourcesContent":["import React from 'react';\n\n/**\n * Props for the GDrive icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface GDriveProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * GDrive icon component\n * @example\n * ```tsx\n * import { GDrive } from 'magick-icons';\n * \n * <GDrive size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const GDrive = React.forwardRef<SVGSVGElement, GDriveProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path d=\"M7.00119 4.7818L4.83814 0.964479C4.90996 0.891356 4.99259 0.843394 5.07522 0.811157C4.43734 1.02109 4.14466 1.73738 4.14466 1.73738L0.193096 8.7092C0.137494 8.92779 0.122048 9.12514 0.128998 9.2989H4.44198L7.00119 4.7818Z\" fill=\"#34A853\"/>\n<path d=\"M7.00098 4.7818L9.56019 9.2989H13.8732C13.8801 9.12514 13.8647 8.92779 13.8091 8.7092L9.8575 1.73738C9.8575 1.73738 9.56405 1.02109 8.92695 0.811157C9.00881 0.843394 9.09221 0.891356 9.16403 0.964479L7.00098 4.7818Z\" fill=\"#FBBC05\"/>\n<path d=\"M7.00143 4.78202L9.16449 0.964694C9.09267 0.891571 9.00927 0.843609 8.92741 0.811372C8.83319 0.780707 8.73203 0.760265 8.62237 0.754761H8.50808H5.49479H5.38049C5.27161 0.759478 5.16967 0.779921 5.07546 0.811372C4.9936 0.843609 4.9102 0.891571 4.83838 0.964694L7.00143 4.78202Z\" fill=\"#188038\"/>\n<path d=\"M4.44264 9.29895L2.3043 13.073C2.3043 13.073 2.23325 13.0384 2.13672 12.9669C2.44021 13.2004 2.73521 13.2499 2.73521 13.2499H11.1334C11.5967 13.2499 11.6932 13.073 11.6932 13.073C11.6948 13.0722 11.6955 13.0715 11.6971 13.0707L9.5603 9.29895H4.44264Z\" fill=\"#4285F4\"/>\n<path d=\"M4.44286 9.29895H0.129883C0.151506 9.8116 0.373912 10.1112 0.373912 10.1112L0.536083 10.3926C0.547667 10.4092 0.554617 10.4186 0.554617 10.4186L0.907532 11.0382L1.69985 12.4173C1.72302 12.4731 1.75005 12.5242 1.77862 12.573C1.78943 12.5895 1.79947 12.6076 1.81106 12.6233C1.81414 12.628 1.81723 12.6327 1.82032 12.6374C1.9184 12.7758 2.02806 12.8828 2.13772 12.9669C2.23425 13.0392 2.30529 13.073 2.30529 13.073L4.44286 9.29895Z\" fill=\"#1967D2\"/>\n<path d=\"M9.56055 9.29895H13.8735C13.8519 9.8116 13.6295 10.1112 13.6295 10.1112L13.4673 10.3926C13.4557 10.4092 13.4488 10.4186 13.4488 10.4186L13.0959 11.0382L12.3036 12.4173C12.2804 12.4731 12.2534 12.5242 12.2248 12.573C12.214 12.5895 12.2039 12.6076 12.1923 12.6233C12.1893 12.628 12.1862 12.6327 12.1831 12.6374C12.085 12.7758 11.9753 12.8828 11.8657 12.9669C11.7692 13.0392 11.6981 13.073 11.6981 13.073L9.56055 9.29895Z\" fill=\"#EA4335\"/>\n</svg>\n );\n }\n);\n\nGDrive.displayName = 'GDrive';\n"],"mappings":";AAAA,OAAO,WAAW;AAsBZ,SACN,KADM;AAHC,IAAM,SAAS,MAAM;AAAA,EAC1B,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,iOAAgO,MAAK,WAAS;AAAA,MACtP,oBAAC,UAAK,GAAE,2NAA0N,MAAK,WAAS;AAAA,MAChP,oBAAC,UAAK,GAAE,wRAAuR,MAAK,WAAS;AAAA,MAC7S,oBAAC,UAAK,GAAE,8PAA6P,MAAK,WAAS;AAAA,MACnR,oBAAC,UAAK,GAAE,gbAA+a,MAAK,WAAS;AAAA,MACrc,oBAAC,UAAK,GAAE,saAAqa,MAAK,WAAS;AAAA,OAC3b;AAAA,EAEE;AACF;AAEA,OAAO,cAAc;","names":[]}
package/index.ts CHANGED
@@ -5,16 +5,16 @@
5
5
  *
6
6
  * @example
7
7
  * ```tsx
8
- * import { Apple } from 'magick-icons';
8
+ * import { GDrive } from 'magick-icons';
9
9
  *
10
10
  * function MyComponent() {
11
- * return <Apple size={24} className="text-blue-500" />;
11
+ * return <GDrive size={24} className="text-blue-500" />;
12
12
  * }
13
13
  * ```
14
14
  */
15
15
 
16
16
  /**
17
- * Apple icon component and its props type
18
- * @see {@link AppleProps} for available props
17
+ * GDrive icon component and its props type
18
+ * @see {@link GDriveProps} for available props
19
19
  */
20
- export { Apple, type AppleProps } from './icons/Apple';
20
+ export { GDrive, type GDriveProps } from './icons/GDrive';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "magick-icons",
3
- "version": "0.1.36",
3
+ "version": "0.1.38",
4
4
  "main": "index.js",
5
5
  "module": "index.mjs",
6
6
  "types": "index.d.ts",
package/types.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  // Auto-generated file - do not edit manually
2
2
  import type * as React from 'react';
3
- import type { AppleProps } from './icons/Apple';
3
+ import type { GDriveProps } from './icons/GDrive';
4
4
 
5
5
  export interface IconComponents {
6
- Apple: React.ComponentType<AppleProps>;
6
+ GDrive: React.ComponentType<GDriveProps>;
7
7
  }
8
8
 
9
- export type IconName = 'Apple';
9
+ export type IconName = 'GDrive';
package/icons/Apple.tsx DELETED
@@ -1,31 +0,0 @@
1
- import React from 'react';
2
-
3
- /**
4
- * Props for the Apple icon component
5
- * @property {number | string} [size] - Size of the icon (default: 24)
6
- */
7
- export interface AppleProps extends React.SVGProps<SVGSVGElement> {
8
- size?: number | string;
9
- }
10
-
11
- /**
12
- * Apple icon component
13
- * @example
14
- * ```tsx
15
- * import { Apple } from 'magick-icons';
16
- *
17
- * <Apple size={24} className="text-blue-500" />
18
- * ```
19
- */
20
- export const Apple = React.forwardRef<SVGSVGElement, AppleProps>(
21
- ({ size, ...props }, ref) => {
22
- return (
23
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
24
- <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"/>
25
- <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"/>
26
- </svg>
27
- );
28
- }
29
- );
30
-
31
- Apple.displayName = 'Apple';