@central-icons-react-native/square-filled-radius-0-stroke-1 1.1.171 → 1.1.172

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,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconBezierCurves1: FC<CentralIconBaseProps>;
4
+ export default IconBezierCurves1;
@@ -0,0 +1,2 @@
1
+ "use strict";var c=Object.create;var l=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var H=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,V=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var C in o)l(r,C,{get:o[C],enumerable:!0})},f=(r,o,C,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of H(o))!V.call(r,t)&&t!==C&&l(r,t,{get:()=>o[t],enumerable:!(p=B(o,t))||p.enumerable});return r};var m=(r,o,C)=>(C=r!=null?c(I(r)):{},f(o||!r||!r.__esModule?l(C,"default",{value:r,enumerable:!0}):C,r)),x=r=>f(l({},"__esModule",{value:!0}),r);var g={};d(g,{IconBezierCurves1:()=>a,default:()=>P});module.exports=x(g);var e=m(require("react"));var s=m(require("react")),i=require("react-native-svg"),u=({children:r,size:o=24,...C})=>s.default.createElement(i.Svg,{...C,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var n=require("react-native-svg"),a=r=>e.default.createElement(u,{...r},e.default.createElement(n.Path,{d:"M19.5 18C20.3284 18 21 18.6716 21 19.5C21 20.3284 20.3284 21 19.5 21C18.8471 21 18.293 20.5823 18.0869 20H16V19H18.0869C18.293 18.4177 18.8471 18 19.5 18Z",fill:"currentColor"}),e.default.createElement(n.Path,{d:"M21 5C18.385 5 16.7034 5.88303 15.4551 7.18945C14.1786 8.52537 13.3359 10.3202 12.4531 12.2119C11.586 14.07 10.6784 16.0255 9.26758 17.502C7.82846 19.0079 5.88488 20 3 20V19C5.61498 19 7.29656 18.117 8.54492 16.8105C9.82137 15.4746 10.6641 13.6798 11.5469 11.7881C12.414 9.92999 13.3216 7.9745 14.7324 6.49805C16.1715 4.9921 18.1151 4 21 4V5Z",fill:"currentColor"}),e.default.createElement(n.Path,{d:"M14 20H10V19H14V20Z",fill:"currentColor"}),e.default.createElement(n.Path,{d:"M4.5 3C5.15293 3 5.70703 3.41766 5.91309 4H8V5H5.91309C5.70703 5.58234 5.15293 6 4.5 6C3.67157 6 3 5.32843 3 4.5C3 3.67157 3.67157 3 4.5 3Z",fill:"currentColor"}),e.default.createElement(n.Path,{d:"M14 5H10V4H14V5Z",fill:"currentColor"})),P=a;0&&(module.exports={IconBezierCurves1});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconBezierCurves1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconBezierCurves1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19.5 18C20.3284 18 21 18.6716 21 19.5C21 20.3284 20.3284 21 19.5 21C18.8471 21 18.293 20.5823 18.0869 20H16V19H18.0869C18.293 18.4177 18.8471 18 19.5 18Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21 5C18.385 5 16.7034 5.88303 15.4551 7.18945C14.1786 8.52537 13.3359 10.3202 12.4531 12.2119C11.586 14.07 10.6784 16.0255 9.26758 17.502C7.82846 19.0079 5.88488 20 3 20V19C5.61498 19 7.29656 18.117 8.54492 16.8105C9.82137 15.4746 10.6641 13.6798 11.5469 11.7881C12.414 9.92999 13.3216 7.9745 14.7324 6.49805C16.1715 4.9921 18.1151 4 21 4V5Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M14 20H10V19H14V20Z\" fill=\"currentColor\" />\n <Path\n d=\"M4.5 3C5.15293 3 5.70703 3.41766 5.91309 4H8V5H5.91309C5.70703 5.58234 5.15293 6 4.5 6C3.67157 6 3 5.32843 3 4.5C3 3.67157 3.67157 3 4.5 3Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M14 5H10V4H14V5Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconBezierCurves1;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,uBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,6JACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yVACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,sBAAsB,KAAK,eAAe,EAClD,EAAAA,QAAA,cAAC,QACC,EAAE,8IACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,mBAAmB,KAAK,eAAe,CACjD,EAIGE,EAAQJ","names":["IconBezierCurves1_exports","__export","IconBezierCurves1","IconBezierCurves1_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconBezierCurves1","props","React","CentralIconBase","IconBezierCurves1_default"]}
@@ -0,0 +1,2 @@
1
+ import o from"react";import l from"react";import{Svg as p}from"react-native-svg";var n=({children:e,size:r=24,...t})=>l.createElement(p,{...t,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as C}from"react-native-svg";var f=e=>o.createElement(n,{...e},o.createElement(C,{d:"M19.5 18C20.3284 18 21 18.6716 21 19.5C21 20.3284 20.3284 21 19.5 21C18.8471 21 18.293 20.5823 18.0869 20H16V19H18.0869C18.293 18.4177 18.8471 18 19.5 18Z",fill:"currentColor"}),o.createElement(C,{d:"M21 5C18.385 5 16.7034 5.88303 15.4551 7.18945C14.1786 8.52537 13.3359 10.3202 12.4531 12.2119C11.586 14.07 10.6784 16.0255 9.26758 17.502C7.82846 19.0079 5.88488 20 3 20V19C5.61498 19 7.29656 18.117 8.54492 16.8105C9.82137 15.4746 10.6641 13.6798 11.5469 11.7881C12.414 9.92999 13.3216 7.9745 14.7324 6.49805C16.1715 4.9921 18.1151 4 21 4V5Z",fill:"currentColor"}),o.createElement(C,{d:"M14 20H10V19H14V20Z",fill:"currentColor"}),o.createElement(C,{d:"M4.5 3C5.15293 3 5.70703 3.41766 5.91309 4H8V5H5.91309C5.70703 5.58234 5.15293 6 4.5 6C3.67157 6 3 5.32843 3 4.5C3 3.67157 3.67157 3 4.5 3Z",fill:"currentColor"}),o.createElement(C,{d:"M14 5H10V4H14V5Z",fill:"currentColor"})),V=f;export{f as IconBezierCurves1,V as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconBezierCurves1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconBezierCurves1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19.5 18C20.3284 18 21 18.6716 21 19.5C21 20.3284 20.3284 21 19.5 21C18.8471 21 18.293 20.5823 18.0869 20H16V19H18.0869C18.293 18.4177 18.8471 18 19.5 18Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21 5C18.385 5 16.7034 5.88303 15.4551 7.18945C14.1786 8.52537 13.3359 10.3202 12.4531 12.2119C11.586 14.07 10.6784 16.0255 9.26758 17.502C7.82846 19.0079 5.88488 20 3 20V19C5.61498 19 7.29656 18.117 8.54492 16.8105C9.82137 15.4746 10.6641 13.6798 11.5469 11.7881C12.414 9.92999 13.3216 7.9745 14.7324 6.49805C16.1715 4.9921 18.1151 4 21 4V5Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M14 20H10V19H14V20Z\" fill=\"currentColor\" />\n <Path\n d=\"M4.5 3C5.15293 3 5.70703 3.41766 5.91309 4H8V5H5.91309C5.70703 5.58234 5.15293 6 4.5 6C3.67157 6 3 5.32843 3 4.5C3 3.67157 3.67157 3 4.5 3Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M14 5H10V4H14V5Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconBezierCurves1;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,6JACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,yVACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,sBAAsB,KAAK,eAAe,EAClDG,EAAA,cAACH,EAAA,CACC,EAAE,8IACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,mBAAmB,KAAK,eAAe,CACjD,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconBezierCurves1","props","React","CentralIconBase","IconBezierCurves1_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconMagicMouse: FC<CentralIconBaseProps>;
4
+ export default IconMagicMouse;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var t=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var v=(C,o)=>{for(var r in o)t(C,r,{get:o[r],enumerable:!0})},l=(C,o,r,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of I(o))!g.call(C,e)&&e!==r&&t(C,e,{get:()=>o[e],enumerable:!(p=B(o,e))||p.enumerable});return C};var a=(C,o,r)=>(r=C!=null?u(d(C)):{},l(o||!C||!C.__esModule?t(r,"default",{value:C,enumerable:!0}):r,C)),x=C=>l(t({},"__esModule",{value:!0}),C);var M={};v(M,{IconMagicMouse:()=>i,default:()=>P});module.exports=x(M);var n=a(require("react"));var m=a(require("react")),s=require("react-native-svg"),c=({children:C,size:o=24,...r})=>m.default.createElement(s.Svg,{...r,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},C);var f=require("react-native-svg"),i=C=>n.default.createElement(c,{...C},n.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12.0009 1.5C13.2397 1.5 14.6683 1.51115 15.787 2.07812C17.4609 2.92666 17.7688 4.42945 17.8964 6.0166C18.1861 9.61987 18.0679 13.2291 17.9784 16.8369C17.8772 20.9179 17.0008 22.4895 12.1093 22.4893H11.8935C7.00118 22.4662 6.12458 20.9179 6.02337 16.8369C5.9339 13.2291 5.81569 9.61986 6.1054 6.0166C6.23304 4.42934 6.54163 2.92662 8.21575 2.07812C9.33439 1.51119 10.7622 1.5 12.0009 1.5ZM12.6689 15.3457C12.4058 15.3457 12.1901 15.5068 12.0517 15.5068C11.9065 15.5068 11.7137 15.3555 11.4824 15.3555C11.0468 15.3555 10.6044 15.716 10.6044 16.3965C10.6121 16.8099 10.739 17.2126 10.9697 17.5557C11.1442 17.8004 11.2961 17.9997 11.5136 18C11.7313 18 11.8271 17.8575 12.0947 17.8574C12.3691 17.8574 12.4307 17.9951 12.6689 17.9951C12.9069 17.995 13.0632 17.7799 13.2128 17.5645C13.3175 17.4119 13.3993 17.2441 13.454 17.0674C13.3151 17.0083 13.1957 16.91 13.1122 16.7842C13.0289 16.6585 12.9848 16.5111 12.9843 16.3604C12.9859 16.2262 13.0216 16.0942 13.0878 15.9775C13.1541 15.861 13.2489 15.7634 13.3632 15.6934C13.2849 15.5831 13.1804 15.4931 13.0595 15.4326C12.9385 15.3721 12.8041 15.3422 12.6689 15.3457ZM12.7236 14.5C12.5243 14.5195 12.3394 14.6146 12.2079 14.7656C12.091 14.8965 12.0232 15.0639 12.0156 15.2393C12.0156 15.2605 12.018 15.2819 12.0224 15.3027C12.038 15.3057 12.0543 15.3076 12.0702 15.3076C12.1619 15.3003 12.2516 15.2743 12.3329 15.2314C12.4143 15.1885 12.486 15.1291 12.5439 15.0576C12.6598 14.9212 12.726 14.7493 12.7304 14.5703C12.7306 14.5467 12.7283 14.5231 12.7236 14.5Z",fill:"currentColor"})),P=i;0&&(module.exports={IconMagicMouse});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconMagicMouse/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconMagicMouse: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12.0009 1.5C13.2397 1.5 14.6683 1.51115 15.787 2.07812C17.4609 2.92666 17.7688 4.42945 17.8964 6.0166C18.1861 9.61987 18.0679 13.2291 17.9784 16.8369C17.8772 20.9179 17.0008 22.4895 12.1093 22.4893H11.8935C7.00118 22.4662 6.12458 20.9179 6.02337 16.8369C5.9339 13.2291 5.81569 9.61986 6.1054 6.0166C6.23304 4.42934 6.54163 2.92662 8.21575 2.07812C9.33439 1.51119 10.7622 1.5 12.0009 1.5ZM12.6689 15.3457C12.4058 15.3457 12.1901 15.5068 12.0517 15.5068C11.9065 15.5068 11.7137 15.3555 11.4824 15.3555C11.0468 15.3555 10.6044 15.716 10.6044 16.3965C10.6121 16.8099 10.739 17.2126 10.9697 17.5557C11.1442 17.8004 11.2961 17.9997 11.5136 18C11.7313 18 11.8271 17.8575 12.0947 17.8574C12.3691 17.8574 12.4307 17.9951 12.6689 17.9951C12.9069 17.995 13.0632 17.7799 13.2128 17.5645C13.3175 17.4119 13.3993 17.2441 13.454 17.0674C13.3151 17.0083 13.1957 16.91 13.1122 16.7842C13.0289 16.6585 12.9848 16.5111 12.9843 16.3604C12.9859 16.2262 13.0216 16.0942 13.0878 15.9775C13.1541 15.861 13.2489 15.7634 13.3632 15.6934C13.2849 15.5831 13.1804 15.4931 13.0595 15.4326C12.9385 15.3721 12.8041 15.3422 12.6689 15.3457ZM12.7236 14.5C12.5243 14.5195 12.3394 14.6146 12.2079 14.7656C12.091 14.8965 12.0232 15.0639 12.0156 15.2393C12.0156 15.2605 12.018 15.2819 12.0224 15.3027C12.038 15.3057 12.0543 15.3076 12.0702 15.3076C12.1619 15.3003 12.2516 15.2743 12.3329 15.2314C12.4143 15.1885 12.486 15.1291 12.5439 15.0576C12.6598 14.9212 12.726 14.7493 12.7304 14.5703C12.7306 14.5467 12.7283 14.5231 12.7236 14.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMagicMouse;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,oBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,69CACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconMagicMouse_exports","__export","IconMagicMouse","IconMagicMouse_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconMagicMouse","props","React","CentralIconBase","IconMagicMouse_default"]}
@@ -0,0 +1,2 @@
1
+ import e from"react";import n from"react";import{Svg as p}from"react-native-svg";var r=({children:o,size:C=24,...t})=>n.createElement(p,{...t,width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},o);import{Path as l}from"react-native-svg";var a=o=>e.createElement(r,{...o},e.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M12.0009 1.5C13.2397 1.5 14.6683 1.51115 15.787 2.07812C17.4609 2.92666 17.7688 4.42945 17.8964 6.0166C18.1861 9.61987 18.0679 13.2291 17.9784 16.8369C17.8772 20.9179 17.0008 22.4895 12.1093 22.4893H11.8935C7.00118 22.4662 6.12458 20.9179 6.02337 16.8369C5.9339 13.2291 5.81569 9.61986 6.1054 6.0166C6.23304 4.42934 6.54163 2.92662 8.21575 2.07812C9.33439 1.51119 10.7622 1.5 12.0009 1.5ZM12.6689 15.3457C12.4058 15.3457 12.1901 15.5068 12.0517 15.5068C11.9065 15.5068 11.7137 15.3555 11.4824 15.3555C11.0468 15.3555 10.6044 15.716 10.6044 16.3965C10.6121 16.8099 10.739 17.2126 10.9697 17.5557C11.1442 17.8004 11.2961 17.9997 11.5136 18C11.7313 18 11.8271 17.8575 12.0947 17.8574C12.3691 17.8574 12.4307 17.9951 12.6689 17.9951C12.9069 17.995 13.0632 17.7799 13.2128 17.5645C13.3175 17.4119 13.3993 17.2441 13.454 17.0674C13.3151 17.0083 13.1957 16.91 13.1122 16.7842C13.0289 16.6585 12.9848 16.5111 12.9843 16.3604C12.9859 16.2262 13.0216 16.0942 13.0878 15.9775C13.1541 15.861 13.2489 15.7634 13.3632 15.6934C13.2849 15.5831 13.1804 15.4931 13.0595 15.4326C12.9385 15.3721 12.8041 15.3422 12.6689 15.3457ZM12.7236 14.5C12.5243 14.5195 12.3394 14.6146 12.2079 14.7656C12.091 14.8965 12.0232 15.0639 12.0156 15.2393C12.0156 15.2605 12.018 15.2819 12.0224 15.3027C12.038 15.3057 12.0543 15.3076 12.0702 15.3076C12.1619 15.3003 12.2516 15.2743 12.3329 15.2314C12.4143 15.1885 12.486 15.1291 12.5439 15.0576C12.6598 14.9212 12.726 14.7493 12.7304 14.5703C12.7306 14.5467 12.7283 14.5231 12.7236 14.5Z",fill:"currentColor"})),g=a;export{a as IconMagicMouse,g as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconMagicMouse/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconMagicMouse: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12.0009 1.5C13.2397 1.5 14.6683 1.51115 15.787 2.07812C17.4609 2.92666 17.7688 4.42945 17.8964 6.0166C18.1861 9.61987 18.0679 13.2291 17.9784 16.8369C17.8772 20.9179 17.0008 22.4895 12.1093 22.4893H11.8935C7.00118 22.4662 6.12458 20.9179 6.02337 16.8369C5.9339 13.2291 5.81569 9.61986 6.1054 6.0166C6.23304 4.42934 6.54163 2.92662 8.21575 2.07812C9.33439 1.51119 10.7622 1.5 12.0009 1.5ZM12.6689 15.3457C12.4058 15.3457 12.1901 15.5068 12.0517 15.5068C11.9065 15.5068 11.7137 15.3555 11.4824 15.3555C11.0468 15.3555 10.6044 15.716 10.6044 16.3965C10.6121 16.8099 10.739 17.2126 10.9697 17.5557C11.1442 17.8004 11.2961 17.9997 11.5136 18C11.7313 18 11.8271 17.8575 12.0947 17.8574C12.3691 17.8574 12.4307 17.9951 12.6689 17.9951C12.9069 17.995 13.0632 17.7799 13.2128 17.5645C13.3175 17.4119 13.3993 17.2441 13.454 17.0674C13.3151 17.0083 13.1957 16.91 13.1122 16.7842C13.0289 16.6585 12.9848 16.5111 12.9843 16.3604C12.9859 16.2262 13.0216 16.0942 13.0878 15.9775C13.1541 15.861 13.2489 15.7634 13.3632 15.6934C13.2849 15.5831 13.1804 15.4931 13.0595 15.4326C12.9385 15.3721 12.8041 15.3422 12.6689 15.3457ZM12.7236 14.5C12.5243 14.5195 12.3394 14.6146 12.2079 14.7656C12.091 14.8965 12.0232 15.0639 12.0156 15.2393C12.0156 15.2605 12.018 15.2819 12.0224 15.3027C12.038 15.3057 12.0543 15.3076 12.0702 15.3076C12.1619 15.3003 12.2516 15.2743 12.3329 15.2314C12.4143 15.1885 12.486 15.1291 12.5439 15.0576C12.6598 14.9212 12.726 14.7493 12.7304 14.5703C12.7306 14.5467 12.7283 14.5231 12.7236 14.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMagicMouse;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,69CACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconMagicMouse","props","React","CentralIconBase","IconMagicMouse_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconSparkles2Bold: FC<CentralIconBaseProps>;
4
+ export default IconSparkles2Bold;
@@ -0,0 +1,2 @@
1
+ "use strict";var B=Object.create;var n=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,L)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of u(o))!x.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(L=i(o,e))||L.enumerable});return r};var m=(r,o,t)=>(t=r!=null?B(I(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>a(n({},"__esModule",{value:!0}),r);var v={};P(v,{IconSparkles2Bold:()=>c,default:()=>d});module.exports=g(v);var p=m(require("react"));var s=m(require("react")),C=require("react-native-svg"),f=({children:r,size:o=24,...t})=>s.default.createElement(C.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var l=require("react-native-svg"),c=r=>p.default.createElement(f,{...r},p.default.createElement(l.Path,{d:"M16.6611 11.3379L21 13.0068V14.9932L16.6611 16.6611L14.9932 21H13.0068L11.3379 16.6611L7 14.9932V13.0068L11.3379 11.3379L13.0068 7H14.9932L16.6611 11.3379Z",fill:"currentColor"}),p.default.createElement(l.Path,{d:"M8.61133 5.3877L11 6.30664V7.69336L8.61133 8.61133L7.69336 11H6.30664L5.3877 8.61133L3 7.69336V6.30664L5.3877 5.3877L6.30664 3H7.69336L8.61133 5.3877Z",fill:"currentColor"})),d=c;0&&(module.exports={IconSparkles2Bold});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconSparkles2Bold/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconSparkles2Bold: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M16.6611 11.3379L21 13.0068V14.9932L16.6611 16.6611L14.9932 21H13.0068L11.3379 16.6611L7 14.9932V13.0068L11.3379 11.3379L13.0068 7H14.9932L16.6611 11.3379Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.61133 5.3877L11 6.30664V7.69336L8.61133 8.61133L7.69336 11H6.30664L5.3877 8.61133L3 7.69336V6.30664L5.3877 5.3877L6.30664 3H7.69336L8.61133 5.3877Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSparkles2Bold;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,uBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,8JACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yJACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconSparkles2Bold_exports","__export","IconSparkles2Bold","IconSparkles2Bold_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconSparkles2Bold","props","React","CentralIconBase","IconSparkles2Bold_default"]}
@@ -0,0 +1,2 @@
1
+ import t from"react";import l from"react";import{Svg as L}from"react-native-svg";var e=({children:o,size:r=24,...p})=>l.createElement(L,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as n}from"react-native-svg";var a=o=>t.createElement(e,{...o},t.createElement(n,{d:"M16.6611 11.3379L21 13.0068V14.9932L16.6611 16.6611L14.9932 21H13.0068L11.3379 16.6611L7 14.9932V13.0068L11.3379 11.3379L13.0068 7H14.9932L16.6611 11.3379Z",fill:"currentColor"}),t.createElement(n,{d:"M8.61133 5.3877L11 6.30664V7.69336L8.61133 8.61133L7.69336 11H6.30664L5.3877 8.61133L3 7.69336V6.30664L5.3877 5.3877L6.30664 3H7.69336L8.61133 5.3877Z",fill:"currentColor"})),x=a;export{a as IconSparkles2Bold,x as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconSparkles2Bold/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconSparkles2Bold: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M16.6611 11.3379L21 13.0068V14.9932L16.6611 16.6611L14.9932 21H13.0068L11.3379 16.6611L7 14.9932V13.0068L11.3379 11.3379L13.0068 7H14.9932L16.6611 11.3379Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.61133 5.3877L11 6.30664V7.69336L8.61133 8.61133L7.69336 11H6.30664L5.3877 8.61133L3 7.69336V6.30664L5.3877 5.3877L6.30664 3H7.69336L8.61133 5.3877Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSparkles2Bold;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,8JACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,yJACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconSparkles2Bold","props","React","CentralIconBase","IconSparkles2Bold_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconSparkles3Bold: FC<CentralIconBaseProps>;
4
+ export default IconSparkles3Bold;
@@ -0,0 +1,2 @@
1
+ "use strict";var B=Object.create;var n=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var u=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of i(o))!x.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(p=I(o,e))||p.enumerable});return r};var l=(r,o,t)=>(t=r!=null?B(u(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>a(n({},"__esModule",{value:!0}),r);var V={};P(V,{IconSparkles3Bold:()=>f,default:()=>H});module.exports=g(V);var L=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),C=({children:r,size:o=24,...t})=>m.default.createElement(s.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var c=require("react-native-svg"),f=r=>L.default.createElement(C,{...r},L.default.createElement(c.Path,{d:"M8.2998 14L9.0498 15.9502L11 16.7002V17.2998L9.0498 18.0498L8.2998 20H7.7002L6.9502 18.0498L5 17.2998V16.7002L6.9502 15.9502L7.7002 14H8.2998ZM18.0996 9.90039L22 11.4004V12.5996L18.0996 14.0996L16.5996 18H15.4004L13.9004 14.0996L10 12.5996V11.4004L13.9004 9.90039L15.4004 6H16.5996L18.0996 9.90039ZM7.40039 6.59961L10 7.59961V8.40039L7.40039 9.40039L6.40039 12H5.59961L4.59961 9.40039L2 8.40039V7.59961L4.59961 6.59961L5.59961 4H6.40039L7.40039 6.59961Z",fill:"currentColor"})),H=f;0&&(module.exports={IconSparkles3Bold});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconSparkles3Bold/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconSparkles3Bold: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8.2998 14L9.0498 15.9502L11 16.7002V17.2998L9.0498 18.0498L8.2998 20H7.7002L6.9502 18.0498L5 17.2998V16.7002L6.9502 15.9502L7.7002 14H8.2998ZM18.0996 9.90039L22 11.4004V12.5996L18.0996 14.0996L16.5996 18H15.4004L13.9004 14.0996L10 12.5996V11.4004L13.9004 9.90039L15.4004 6H16.5996L18.0996 9.90039ZM7.40039 6.59961L10 7.59961V8.40039L7.40039 9.40039L6.40039 12H5.59961L4.59961 9.40039L2 8.40039V7.59961L4.59961 6.59961L5.59961 4H6.40039L7.40039 6.59961Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSparkles3Bold;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,uBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,wcACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconSparkles3Bold_exports","__export","IconSparkles3Bold","IconSparkles3Bold_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconSparkles3Bold","props","React","CentralIconBase","IconSparkles3Bold_default"]}
@@ -0,0 +1,2 @@
1
+ import e from"react";import L from"react";import{Svg as p}from"react-native-svg";var t=({children:o,size:r=24,...n})=>L.createElement(p,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as a}from"react-native-svg";var l=o=>e.createElement(t,{...o},e.createElement(a,{d:"M8.2998 14L9.0498 15.9502L11 16.7002V17.2998L9.0498 18.0498L8.2998 20H7.7002L6.9502 18.0498L5 17.2998V16.7002L6.9502 15.9502L7.7002 14H8.2998ZM18.0996 9.90039L22 11.4004V12.5996L18.0996 14.0996L16.5996 18H15.4004L13.9004 14.0996L10 12.5996V11.4004L13.9004 9.90039L15.4004 6H16.5996L18.0996 9.90039ZM7.40039 6.59961L10 7.59961V8.40039L7.40039 9.40039L6.40039 12H5.59961L4.59961 9.40039L2 8.40039V7.59961L4.59961 6.59961L5.59961 4H6.40039L7.40039 6.59961Z",fill:"currentColor"})),x=l;export{l as IconSparkles3Bold,x as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconSparkles3Bold/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconSparkles3Bold: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8.2998 14L9.0498 15.9502L11 16.7002V17.2998L9.0498 18.0498L8.2998 20H7.7002L6.9502 18.0498L5 17.2998V16.7002L6.9502 15.9502L7.7002 14H8.2998ZM18.0996 9.90039L22 11.4004V12.5996L18.0996 14.0996L16.5996 18H15.4004L13.9004 14.0996L10 12.5996V11.4004L13.9004 9.90039L15.4004 6H16.5996L18.0996 9.90039ZM7.40039 6.59961L10 7.59961V8.40039L7.40039 9.40039L6.40039 12H5.59961L4.59961 9.40039L2 8.40039V7.59961L4.59961 6.59961L5.59961 4H6.40039L7.40039 6.59961Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSparkles3Bold;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,wcACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconSparkles3Bold","props","React","CentralIconBase","IconSparkles3Bold_default"]}
package/README.md CHANGED
@@ -203,6 +203,8 @@ Below is a complete list of available icons:
203
203
  - IconSparkle3
204
204
  - IconSparkleCentral
205
205
  - IconSparkleHightlight
206
+ - IconSparkles2Bold
207
+ - IconSparkles3Bold
206
208
  - IconSparklesSoft
207
209
  - IconSparklesThree
208
210
  - IconSparklesTwo
@@ -604,6 +606,7 @@ Below is a complete list of available icons:
604
606
  - IconMacbookAir
605
607
  - IconMacintosh
606
608
  - IconMacMini
609
+ - IconMagicMouse
607
610
  - IconMouse
608
611
  - IconMouseClassic
609
612
  - IconMouseClassic2
@@ -653,6 +656,7 @@ Below is a complete list of available icons:
653
656
  - IconBezierAdd
654
657
  - IconBezierCircle
655
658
  - IconBezierCurve
659
+ - IconBezierCurves1
656
660
  - IconBezierEdit
657
661
  - IconBezierPointer
658
662
  - IconBezierRemove
@@ -3304,6 +3304,20 @@
3304
3304
  "packageName": "square-filled-radius-0-stroke-1",
3305
3305
  "componentName": "IconBezierCurves"
3306
3306
  },
3307
+ {
3308
+ "category": "Edit",
3309
+ "svg": "<path d=\"M19.5 18C20.3284 18 21 18.6716 21 19.5C21 20.3284 20.3284 21 19.5 21C18.8471 21 18.293 20.5823 18.0869 20H16V19H18.0869C18.293 18.4177 18.8471 18 19.5 18Z\" fill=\"currentColor\"/><path d=\"M21 5C18.385 5 16.7034 5.88303 15.4551 7.18945C14.1786 8.52537 13.3359 10.3202 12.4531 12.2119C11.586 14.07 10.6784 16.0255 9.26758 17.502C7.82846 19.0079 5.88488 20 3 20V19C5.61498 19 7.29656 18.117 8.54492 16.8105C9.82137 15.4746 10.6641 13.6798 11.5469 11.7881C12.414 9.92999 13.3216 7.9745 14.7324 6.49805C16.1715 4.9921 18.1151 4 21 4V5Z\" fill=\"currentColor\"/><path d=\"M14 20H10V19H14V20Z\" fill=\"currentColor\"/><path d=\"M4.5 3C5.15293 3 5.70703 3.41766 5.91309 4H8V5H5.91309C5.70703 5.58234 5.15293 6 4.5 6C3.67157 6 3 5.32843 3 4.5C3 3.67157 3.67157 3 4.5 3Z\" fill=\"currentColor\"/><path d=\"M14 5H10V4H14V5Z\" fill=\"currentColor\"/>",
3310
+ "iconName": "bezier-curves, path",
3311
+ "variant": {
3312
+ "join": "square",
3313
+ "filled": "on",
3314
+ "radius": "0",
3315
+ "stroke": "1"
3316
+ },
3317
+ "createdAt": "2026-03-20T10:01:21.055348+00:00",
3318
+ "packageName": "square-filled-radius-0-stroke-1",
3319
+ "componentName": "IconBezierCurves1"
3320
+ },
3307
3321
  {
3308
3322
  "category": "Edit",
3309
3323
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.3964 13.5631C18.236 12.7235 19.5973 12.7235 20.4369 13.5631C21.2765 14.4027 21.2765 15.764 20.4369 16.6035L16.0404 21H13V17.9596L17.3964 13.5631Z\" fill=\"currentColor\"/><path d=\"M3 3V9H5.5V15H3V21H9V18.5H11V17.5H9V15H6.5V9H9V6.5H15V9H17.5V11H18.5V9H21V3H15V5.5H9V3H3Z\" fill=\"currentColor\"/>",
@@ -15134,6 +15148,20 @@
15134
15148
  "packageName": "square-filled-radius-0-stroke-1",
15135
15149
  "componentName": "IconMagicLamp"
15136
15150
  },
15151
+ {
15152
+ "category": "Devices & Signals",
15153
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.0009 1.5C13.2397 1.5 14.6683 1.51115 15.787 2.07812C17.4609 2.92666 17.7688 4.42945 17.8964 6.0166C18.1861 9.61987 18.0679 13.2291 17.9784 16.8369C17.8772 20.9179 17.0008 22.4895 12.1093 22.4893H11.8935C7.00118 22.4662 6.12458 20.9179 6.02337 16.8369C5.9339 13.2291 5.81569 9.61986 6.1054 6.0166C6.23304 4.42934 6.54163 2.92662 8.21575 2.07812C9.33439 1.51119 10.7622 1.5 12.0009 1.5ZM12.6689 15.3457C12.4058 15.3457 12.1901 15.5068 12.0517 15.5068C11.9065 15.5068 11.7137 15.3555 11.4824 15.3555C11.0468 15.3555 10.6044 15.716 10.6044 16.3965C10.6121 16.8099 10.739 17.2126 10.9697 17.5557C11.1442 17.8004 11.2961 17.9997 11.5136 18C11.7313 18 11.8271 17.8575 12.0947 17.8574C12.3691 17.8574 12.4307 17.9951 12.6689 17.9951C12.9069 17.995 13.0632 17.7799 13.2128 17.5645C13.3175 17.4119 13.3993 17.2441 13.454 17.0674C13.3151 17.0083 13.1957 16.91 13.1122 16.7842C13.0289 16.6585 12.9848 16.5111 12.9843 16.3604C12.9859 16.2262 13.0216 16.0942 13.0878 15.9775C13.1541 15.861 13.2489 15.7634 13.3632 15.6934C13.2849 15.5831 13.1804 15.4931 13.0595 15.4326C12.9385 15.3721 12.8041 15.3422 12.6689 15.3457ZM12.7236 14.5C12.5243 14.5195 12.3394 14.6146 12.2079 14.7656C12.091 14.8965 12.0232 15.0639 12.0156 15.2393C12.0156 15.2605 12.018 15.2819 12.0224 15.3027C12.038 15.3057 12.0543 15.3076 12.0702 15.3076C12.1619 15.3003 12.2516 15.2743 12.3329 15.2314C12.4143 15.1885 12.486 15.1291 12.5439 15.0576C12.6598 14.9212 12.726 14.7493 12.7304 14.5703C12.7306 14.5467 12.7283 14.5231 12.7236 14.5Z\" fill=\"currentColor\"/>",
15154
+ "iconName": "magic-mouse",
15155
+ "variant": {
15156
+ "join": "square",
15157
+ "filled": "on",
15158
+ "radius": "0",
15159
+ "stroke": "1"
15160
+ },
15161
+ "createdAt": "2026-03-20T10:01:21.055348+00:00",
15162
+ "packageName": "square-filled-radius-0-stroke-1",
15163
+ "componentName": "IconMagicMouse"
15164
+ },
15137
15165
  {
15138
15166
  "category": "AI & Magic",
15139
15167
  "svg": "<path d=\"M10.2311 2.60254L10.6714 8.3036L5.80031 11.2984L10.7889 12.5037L2.79297 20.4996L3.50007 21.2067L11.496 13.2108L12.7014 18.1994L15.6961 13.3284L21.3972 13.7687L17.69 9.41523L19.8705 4.12927L14.5845 6.30976L10.2311 2.60254Z\" fill=\"currentColor\"/>",
@@ -22036,6 +22064,34 @@
22036
22064
  "packageName": "square-filled-radius-0-stroke-1",
22037
22065
  "componentName": "IconSparkleHightlight"
22038
22066
  },
22067
+ {
22068
+ "category": "AI & Magic",
22069
+ "svg": "<path d=\"M16.6611 11.3379L21 13.0068V14.9932L16.6611 16.6611L14.9932 21H13.0068L11.3379 16.6611L7 14.9932V13.0068L11.3379 11.3379L13.0068 7H14.9932L16.6611 11.3379Z\" fill=\"currentColor\"/><path d=\"M8.61133 5.3877L11 6.30664V7.69336L8.61133 8.61133L7.69336 11H6.30664L5.3877 8.61133L3 7.69336V6.30664L5.3877 5.3877L6.30664 3H7.69336L8.61133 5.3877Z\" fill=\"currentColor\"/>",
22070
+ "iconName": "sparkles-2-bold, ai, magic",
22071
+ "variant": {
22072
+ "join": "square",
22073
+ "filled": "on",
22074
+ "radius": "0",
22075
+ "stroke": "1"
22076
+ },
22077
+ "createdAt": "2026-03-20T10:01:21.055348+00:00",
22078
+ "packageName": "square-filled-radius-0-stroke-1",
22079
+ "componentName": "IconSparkles2Bold"
22080
+ },
22081
+ {
22082
+ "category": "AI & Magic",
22083
+ "svg": "<path d=\"M8.2998 14L9.0498 15.9502L11 16.7002V17.2998L9.0498 18.0498L8.2998 20H7.7002L6.9502 18.0498L5 17.2998V16.7002L6.9502 15.9502L7.7002 14H8.2998ZM18.0996 9.90039L22 11.4004V12.5996L18.0996 14.0996L16.5996 18H15.4004L13.9004 14.0996L10 12.5996V11.4004L13.9004 9.90039L15.4004 6H16.5996L18.0996 9.90039ZM7.40039 6.59961L10 7.59961V8.40039L7.40039 9.40039L6.40039 12H5.59961L4.59961 9.40039L2 8.40039V7.59961L4.59961 6.59961L5.59961 4H6.40039L7.40039 6.59961Z\" fill=\"currentColor\"/>",
22084
+ "iconName": "sparkles-3-bold, ai, magic",
22085
+ "variant": {
22086
+ "join": "square",
22087
+ "filled": "on",
22088
+ "radius": "0",
22089
+ "stroke": "1"
22090
+ },
22091
+ "createdAt": "2026-03-20T10:01:21.055348+00:00",
22092
+ "packageName": "square-filled-radius-0-stroke-1",
22093
+ "componentName": "IconSparkles3Bold"
22094
+ },
22039
22095
  {
22040
22096
  "category": "AI & Magic",
22041
22097
  "svg": "<path d=\"M20.605 3.40252C20.1071 2.89545 19.8069 2.16587 19.6944 1.18752V1H19.3056V1.18732C19.1893 2.18155 18.8889 2.89687 18.3929 3.39287C17.8969 3.88886 17.1816 4.18929 16.1873 4.30556H16V4.69445H16.1875C17.1659 4.80686 17.8955 5.10711 18.4025 5.60501C18.9088 6.10215 19.2161 6.81884 19.3056 7.81012V8H19.6944V7.8099C19.7803 6.83433 20.0872 6.10349 20.5954 5.59537C21.1035 5.08725 21.8343 4.78027 22.8099 4.69445H23V4.30556H22.8101C21.8188 4.21611 21.1021 3.90882 20.605 3.40252Z\" fill=\"currentColor\"/><path d=\"M2 13.5C5.06396 13.5 7.15594 14.1755 8.4902 15.5098C9.82446 16.8441 10.5 18.936 10.5 22H11.5C11.5 18.936 12.1755 16.8441 13.5098 15.5098C14.8441 14.1755 16.936 13.5 20 13.5V12.5C16.936 12.5 14.8441 11.8245 13.5098 10.4902C12.1755 9.15594 11.5 7.06396 11.5 4H10.5C10.5 7.06396 9.82446 9.15594 8.4902 10.4902C7.15594 11.8245 5.06396 12.5 2 12.5V13.5Z\" fill=\"currentColor\"/>",
package/icons/index.d.ts CHANGED
@@ -235,6 +235,7 @@ export type CentralIconName =
235
235
  | "IconBezierCircle"
236
236
  | "IconBezierCurve"
237
237
  | "IconBezierCurves"
238
+ | "IconBezierCurves1"
238
239
  | "IconBezierEdit"
239
240
  | "IconBezierPointer"
240
241
  | "IconBezierRemove"
@@ -1080,6 +1081,7 @@ export type CentralIconName =
1080
1081
  | "IconMagicEdit"
1081
1082
  | "IconMagicHands"
1082
1083
  | "IconMagicLamp"
1084
+ | "IconMagicMouse"
1083
1085
  | "IconMagicWand"
1084
1086
  | "IconMagicWand2"
1085
1087
  | "IconMagicWand3"
@@ -1573,6 +1575,8 @@ export type CentralIconName =
1573
1575
  | "IconSparkle3"
1574
1576
  | "IconSparkleCentral"
1575
1577
  | "IconSparkleHightlight"
1578
+ | "IconSparkles2Bold"
1579
+ | "IconSparkles3Bold"
1576
1580
  | "IconSparklesSoft"
1577
1581
  | "IconSparklesThree"
1578
1582
  | "IconSparklesTwo"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/square-filled-radius-0-stroke-1",
3
- "version": "1.1.171",
3
+ "version": "1.1.172",
4
4
  "style": "square-filled-radius-0-stroke-1",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/square-filled-radius-0-stroke-1/IconHome';",
@@ -11,10 +11,10 @@
11
11
  "withProps": "<IconHome size={32} color=\"#007AFF\" />",
12
12
  "central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
13
13
  },
14
- "totalIcons": 1900,
14
+ "totalIcons": 1904,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
- "count": 72,
17
+ "count": 74,
18
18
  "icons": [
19
19
  "IconAiTokens",
20
20
  "IconAiTranslate",
@@ -73,6 +73,8 @@
73
73
  "IconSparkle3",
74
74
  "IconSparkleCentral",
75
75
  "IconSparkleHightlight",
76
+ "IconSparkles2Bold",
77
+ "IconSparkles3Bold",
76
78
  "IconSparklesSoft",
77
79
  "IconSparklesThree",
78
80
  "IconSparklesTwo",
@@ -454,7 +456,7 @@
454
456
  ]
455
457
  },
456
458
  "Devices & Signals": {
457
- "count": 76,
459
+ "count": 77,
458
460
  "icons": [
459
461
  "IconAgentNetwork",
460
462
  "IconAirdrop",
@@ -492,6 +494,7 @@
492
494
  "IconMacbookAir",
493
495
  "IconMacintosh",
494
496
  "IconMacMini",
497
+ "IconMagicMouse",
495
498
  "IconMouse",
496
499
  "IconMouseClassic",
497
500
  "IconMouseClassic2",
@@ -535,7 +538,7 @@
535
538
  ]
536
539
  },
537
540
  "Edit": {
538
- "count": 88,
541
+ "count": 89,
539
542
  "icons": [
540
543
  "Icon3d",
541
544
  "IconAddKeyframe",
@@ -543,6 +546,7 @@
543
546
  "IconBezierAdd",
544
547
  "IconBezierCircle",
545
548
  "IconBezierCurve",
549
+ "IconBezierCurves1",
546
550
  "IconBezierEdit",
547
551
  "IconBezierPointer",
548
552
  "IconBezierRemove",
@@ -2338,6 +2342,7 @@
2338
2342
  "IconBezierCircle": "bezier-circle, vector, nodes",
2339
2343
  "IconBezierCurve": "bezier-curve, bezier, vector, svg",
2340
2344
  "IconBezierCurves": "bezier-curves, animation, motion, spring",
2345
+ "IconBezierCurves1": "bezier-curves, path",
2341
2346
  "IconBezierEdit": "bezier--edit",
2342
2347
  "IconBezierPointer": "bezier-pointer",
2343
2348
  "IconBezierRemove": "bezier-remove, vector, nodes",
@@ -3183,6 +3188,7 @@
3183
3188
  "IconMagicEdit": "magic-edit, magic-writing",
3184
3189
  "IconMagicHands": "magic-hands, rainbow-hands",
3185
3190
  "IconMagicLamp": "magic-lamp, wish, agents, genie",
3191
+ "IconMagicMouse": "magic-mouse",
3186
3192
  "IconMagicWand": "magic-wand, magic stick, star",
3187
3193
  "IconMagicWand2": "magic-wand-2, magic stick, star",
3188
3194
  "IconMagicWand3": "magic-wand-3, magic stick, star",
@@ -3676,6 +3682,8 @@
3676
3682
  "IconSparkle3": "sparkle-3, ai, star, magic",
3677
3683
  "IconSparkleCentral": "sparkle-central, star, magic, ai",
3678
3684
  "IconSparkleHightlight": "sparkle-hightlight, special, ai, magic",
3685
+ "IconSparkles2Bold": "sparkles-2-bold, ai, magic",
3686
+ "IconSparkles3Bold": "sparkles-3-bold, ai, magic",
3679
3687
  "IconSparklesSoft": "sparkles-soft",
3680
3688
  "IconSparklesThree": "sparkles-three, ai 3 stars, sparkles, ✨",
3681
3689
  "IconSparklesTwo": "sparkles-two, ai 2 stars, sparkles, ✨",
package/index.d.ts CHANGED
@@ -234,6 +234,7 @@ export { IconBezierAdd, default as IconBezierAddDefault, } from "./IconBezierAdd
234
234
  export { IconBezierCircle, default as IconBezierCircleDefault, } from "./IconBezierCircle";
235
235
  export { IconBezierCurve, default as IconBezierCurveDefault, } from "./IconBezierCurve";
236
236
  export { IconBezierCurves, default as IconBezierCurvesDefault, } from "./IconBezierCurves";
237
+ export { IconBezierCurves1, default as IconBezierCurves1Default, } from "./IconBezierCurves1";
237
238
  export { IconBezierEdit, default as IconBezierEditDefault, } from "./IconBezierEdit";
238
239
  export { IconBezierPointer, default as IconBezierPointerDefault, } from "./IconBezierPointer";
239
240
  export { IconBezierRemove, default as IconBezierRemoveDefault, } from "./IconBezierRemove";
@@ -1079,6 +1080,7 @@ export { IconMagicBook, default as IconMagicBookDefault, } from "./IconMagicBook
1079
1080
  export { IconMagicEdit, default as IconMagicEditDefault, } from "./IconMagicEdit";
1080
1081
  export { IconMagicHands, default as IconMagicHandsDefault, } from "./IconMagicHands";
1081
1082
  export { IconMagicLamp, default as IconMagicLampDefault, } from "./IconMagicLamp";
1083
+ export { IconMagicMouse, default as IconMagicMouseDefault, } from "./IconMagicMouse";
1082
1084
  export { IconMagicWand, default as IconMagicWandDefault, } from "./IconMagicWand";
1083
1085
  export { IconMagicWand2, default as IconMagicWand2Default, } from "./IconMagicWand2";
1084
1086
  export { IconMagicWand3, default as IconMagicWand3Default, } from "./IconMagicWand3";
@@ -1572,6 +1574,8 @@ export { IconSparkle2, default as IconSparkle2Default } from "./IconSparkle2";
1572
1574
  export { IconSparkle3, default as IconSparkle3Default } from "./IconSparkle3";
1573
1575
  export { IconSparkleCentral, default as IconSparkleCentralDefault, } from "./IconSparkleCentral";
1574
1576
  export { IconSparkleHightlight, default as IconSparkleHightlightDefault, } from "./IconSparkleHightlight";
1577
+ export { IconSparkles2Bold, default as IconSparkles2BoldDefault, } from "./IconSparkles2Bold";
1578
+ export { IconSparkles3Bold, default as IconSparkles3BoldDefault, } from "./IconSparkles3Bold";
1575
1579
  export { IconSparklesSoft, default as IconSparklesSoftDefault, } from "./IconSparklesSoft";
1576
1580
  export { IconSparklesThree, default as IconSparklesThreeDefault, } from "./IconSparklesThree";
1577
1581
  export { IconSparklesTwo, default as IconSparklesTwoDefault, } from "./IconSparklesTwo";