@central-icons-react-native/round-outlined-radius-2-stroke-2 1.1.138 → 1.1.139

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 IconSparkleHightlight: FC<CentralIconBaseProps>;
4
+ export default IconSparkleHightlight;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var n=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var k=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var h=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of f(o))!g.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(s=d(o,e))||s.enumerable});return r};var i=(r,o,t)=>(t=r!=null?u(k(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),B=r=>a(n({},"__esModule",{value:!0}),r);var x={};h(x,{IconSparkleHightlight:()=>c,default:()=>I});module.exports=B(x);var C=i(require("react"));var L=i(require("react")),l=require("react-native-svg"),m=({children:r,size:o=24,...t})=>L.default.createElement(l.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 p=require("react-native-svg"),c=r=>C.default.createElement(m,{...r},C.default.createElement(p.Path,{d:"M14.4849 8.46468L12.7965 4.52523C12.66 4.20659 12.3467 4 12 4C11.6533 4 11.34 4.20659 11.2035 4.52523L9.51514 8.46468C9.31284 8.93671 8.93671 9.31284 8.46468 9.51514L4.52523 11.2035C4.20659 11.34 4 11.6533 4 12C4 12.3467 4.20659 12.66 4.52523 12.7965L8.46468 14.4849C8.93671 14.6872 9.31284 15.0633 9.51514 15.5353L11.2035 19.4748C11.34 19.7934 11.6533 20 12 20C12.3467 20 12.66 19.7934 12.7965 19.4748L14.4849 15.5353C14.6872 15.0633 15.0633 14.6872 15.5353 14.4849L19.4748 12.7965C19.7934 12.66 20 12.3467 20 12C20 11.6533 19.7934 11.34 19.4748 11.2035L15.5353 9.51514C15.0633 9.31284 14.6872 8.93671 14.4849 8.46468Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),C.default.createElement(p.Path,{d:"M3 3L5 5M21 3L19 5M3 21L5 19M21 21L19 19",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),I=c;0&&(module.exports={IconSparkleHightlight});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconSparkleHightlight/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 IconSparkleHightlight: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M14.4849 8.46468L12.7965 4.52523C12.66 4.20659 12.3467 4 12 4C11.6533 4 11.34 4.20659 11.2035 4.52523L9.51514 8.46468C9.31284 8.93671 8.93671 9.31284 8.46468 9.51514L4.52523 11.2035C4.20659 11.34 4 11.6533 4 12C4 12.3467 4.20659 12.66 4.52523 12.7965L8.46468 14.4849C8.93671 14.6872 9.31284 15.0633 9.51514 15.5353L11.2035 19.4748C11.34 19.7934 11.6533 20 12 20C12.3467 20 12.66 19.7934 12.7965 19.4748L14.4849 15.5353C14.6872 15.0633 15.0633 14.6872 15.5353 14.4849L19.4748 12.7965C19.7934 12.66 20 12.3467 20 12C20 11.6533 19.7934 11.34 19.4748 11.2035L15.5353 9.51514C15.0633 9.31284 14.6872 8.93671 14.4849 8.46468Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M3 3L5 5M21 3L19 5M3 21L5 19M21 21L19 19\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSparkleHightlight;\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,2BAAAE,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,EAAmDC,GAE5D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,8mBACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2CACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconSparkleHightlight_exports","__export","IconSparkleHightlight","IconSparkleHightlight_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconSparkleHightlight","props","React","CentralIconBase","IconSparkleHightlight_default"]}
@@ -0,0 +1,2 @@
1
+ import t from"react";import p from"react";import{Svg as s}from"react-native-svg";var e=({children:o,size:r=24,...C})=>p.createElement(s,{...C,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:"M14.4849 8.46468L12.7965 4.52523C12.66 4.20659 12.3467 4 12 4C11.6533 4 11.34 4.20659 11.2035 4.52523L9.51514 8.46468C9.31284 8.93671 8.93671 9.31284 8.46468 9.51514L4.52523 11.2035C4.20659 11.34 4 11.6533 4 12C4 12.3467 4.20659 12.66 4.52523 12.7965L8.46468 14.4849C8.93671 14.6872 9.31284 15.0633 9.51514 15.5353L11.2035 19.4748C11.34 19.7934 11.6533 20 12 20C12.3467 20 12.66 19.7934 12.7965 19.4748L14.4849 15.5353C14.6872 15.0633 15.0633 14.6872 15.5353 14.4849L19.4748 12.7965C19.7934 12.66 20 12.3467 20 12C20 11.6533 19.7934 11.34 19.4748 11.2035L15.5353 9.51514C15.0633 9.31284 14.6872 8.93671 14.4849 8.46468Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement(n,{d:"M3 3L5 5M21 3L19 5M3 21L5 19M21 21L19 19",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),g=a;export{a as IconSparkleHightlight,g as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconSparkleHightlight/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 IconSparkleHightlight: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M14.4849 8.46468L12.7965 4.52523C12.66 4.20659 12.3467 4 12 4C11.6533 4 11.34 4.20659 11.2035 4.52523L9.51514 8.46468C9.31284 8.93671 8.93671 9.31284 8.46468 9.51514L4.52523 11.2035C4.20659 11.34 4 11.6533 4 12C4 12.3467 4.20659 12.66 4.52523 12.7965L8.46468 14.4849C8.93671 14.6872 9.31284 15.0633 9.51514 15.5353L11.2035 19.4748C11.34 19.7934 11.6533 20 12 20C12.3467 20 12.66 19.7934 12.7965 19.4748L14.4849 15.5353C14.6872 15.0633 15.0633 14.6872 15.5353 14.4849L19.4748 12.7965C19.7934 12.66 20 12.3467 20 12C20 11.6533 19.7934 11.34 19.4748 11.2035L15.5353 9.51514C15.0633 9.31284 14.6872 8.93671 14.4849 8.46468Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M3 3L5 5M21 3L19 5M3 21L5 19M21 21L19 19\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSparkleHightlight;\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,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,8mBACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2CACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconSparkleHightlight","props","React","CentralIconBase","IconSparkleHightlight_default"]}
@@ -1,2 +1,2 @@
1
- "use strict";var d=Object.create;var C=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var k=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var n in o)C(r,n,{get:o[n],enumerable:!0})},i=(r,o,n,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of f(o))!B.call(r,e)&&e!==n&&C(r,e,{get:()=>o[e],enumerable:!(s=L(o,e))||s.enumerable});return r};var a=(r,o,n)=>(n=r!=null?d(k(r)):{},i(o||!r||!r.__esModule?C(n,"default",{value:r,enumerable:!0}):n,r)),x=r=>i(C({},"__esModule",{value:!0}),r);var g={};I(g,{IconUnicorn:()=>u,default:()=>P});module.exports=x(g);var t=a(require("react"));var l=a(require("react")),c=require("react-native-svg"),m=({children:r,size:o=24,...n})=>l.default.createElement(c.Svg,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),u=r=>t.default.createElement(m,{...r},t.default.createElement(p.Path,{d:"M10.5 11L10.2853 11.8589C10.1012 12.5953 10.1866 13.3732 10.526 14.052C10.8337 14.6674 11.3326 15.1663 11.948 15.474L16.4875 17.7438C16.8245 17.9123 17.1962 18 17.5729 18C18.9134 18 20 16.9134 20 15.5729V14.8394C20 14.2893 19.8565 13.7488 19.5836 13.2712L16 7V4.5L13 6C6 2.5 2 12 2 18",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(p.Path,{d:"M13 21C13 17.5 12 15.5 12 15.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(p.Path,{d:"M16.2521 7.2593L22.2255 3.8229C22.7069 3.54591 23.2288 4.11681 22.8937 4.55387L18.6772 10.0521C18.4792 10.3103 18.0867 10.3201 17.8754 10.0722L16.1186 8.01036C15.9166 7.77334 15.9802 7.41574 16.2521 7.2593Z",fill:"currentColor"})),P=u;0&&(module.exports={IconUnicorn});
1
+ "use strict";var d=Object.create;var C=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var k=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var n in o)C(r,n,{get:o[n],enumerable:!0})},i=(r,o,n,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of f(o))!B.call(r,e)&&e!==n&&C(r,e,{get:()=>o[e],enumerable:!(s=L(o,e))||s.enumerable});return r};var a=(r,o,n)=>(n=r!=null?d(k(r)):{},i(o||!r||!r.__esModule?C(n,"default",{value:r,enumerable:!0}):n,r)),x=r=>i(C({},"__esModule",{value:!0}),r);var g={};I(g,{IconUnicorn:()=>u,default:()=>P});module.exports=x(g);var t=a(require("react"));var l=a(require("react")),c=require("react-native-svg"),m=({children:r,size:o=24,...n})=>l.default.createElement(c.Svg,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),u=r=>t.default.createElement(m,{...r},t.default.createElement(p.Path,{d:"M10.5 11L10.2853 11.8589C10.1012 12.5953 10.1866 13.3732 10.526 14.052C10.8337 14.6674 11.3326 15.1663 11.948 15.474L16.4875 17.7438C16.8245 17.9123 17.1962 18 17.5729 18C18.9134 18 20 16.9134 20 15.5729V14.8394C20 14.2893 19.8565 13.7488 19.5836 13.2712L16 7V4.5L13 6C6 5 2 12 2 18",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(p.Path,{d:"M13 21C13 17.5 12 15.5 12 15.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(p.Path,{d:"M16.2521 7.2593L22.2255 3.8229C22.7069 3.54591 23.2288 4.11681 22.8937 4.55387L18.6772 10.0521C18.4792 10.3103 18.0867 10.3201 17.8754 10.0722L16.1186 8.01036C15.9166 7.77334 15.9802 7.41574 16.2521 7.2593Z",fill:"currentColor"})),P=u;0&&(module.exports={IconUnicorn});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconUnicorn/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 IconUnicorn: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.5 11L10.2853 11.8589C10.1012 12.5953 10.1866 13.3732 10.526 14.052C10.8337 14.6674 11.3326 15.1663 11.948 15.474L16.4875 17.7438C16.8245 17.9123 17.1962 18 17.5729 18C18.9134 18 20 16.9134 20 15.5729V14.8394C20 14.2893 19.8565 13.7488 19.5836 13.2712L16 7V4.5L13 6C6 2.5 2 12 2 18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13 21C13 17.5 12 15.5 12 15.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M16.2521 7.2593L22.2255 3.8229C22.7069 3.54591 23.2288 4.11681 22.8937 4.55387L18.6772 10.0521C18.4792 10.3103 18.0867 10.3201 17.8754 10.0722L16.1186 8.01036C15.9166 7.77334 15.9802 7.41574 16.2521 7.2593Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconUnicorn;\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,iBAAAE,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,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,+RACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iCACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iNACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconUnicorn_exports","__export","IconUnicorn","IconUnicorn_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconUnicorn","props","React","CentralIconBase","IconUnicorn_default"]}
1
+ {"version":3,"sources":["../src/IconUnicorn/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 IconUnicorn: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.5 11L10.2853 11.8589C10.1012 12.5953 10.1866 13.3732 10.526 14.052C10.8337 14.6674 11.3326 15.1663 11.948 15.474L16.4875 17.7438C16.8245 17.9123 17.1962 18 17.5729 18C18.9134 18 20 16.9134 20 15.5729V14.8394C20 14.2893 19.8565 13.7488 19.5836 13.2712L16 7V4.5L13 6C6 5 2 12 2 18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13 21C13 17.5 12 15.5 12 15.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M16.2521 7.2593L22.2255 3.8229C22.7069 3.54591 23.2288 4.11681 22.8937 4.55387L18.6772 10.0521C18.4792 10.3103 18.0867 10.3201 17.8754 10.0722L16.1186 8.01036C15.9166 7.77334 15.9802 7.41574 16.2521 7.2593Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconUnicorn;\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,iBAAAE,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,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,6RACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iCACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iNACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconUnicorn_exports","__export","IconUnicorn","IconUnicorn_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconUnicorn","props","React","CentralIconBase","IconUnicorn_default"]}
@@ -1,2 +1,2 @@
1
- import o from"react";import p from"react";import{Svg as s}from"react-native-svg";var t=({children:n,size:r=24,...C})=>p.createElement(s,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n);import{Path as e}from"react-native-svg";var i=n=>o.createElement(t,{...n},o.createElement(e,{d:"M10.5 11L10.2853 11.8589C10.1012 12.5953 10.1866 13.3732 10.526 14.052C10.8337 14.6674 11.3326 15.1663 11.948 15.474L16.4875 17.7438C16.8245 17.9123 17.1962 18 17.5729 18C18.9134 18 20 16.9134 20 15.5729V14.8394C20 14.2893 19.8565 13.7488 19.5836 13.2712L16 7V4.5L13 6C6 2.5 2 12 2 18",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M13 21C13 17.5 12 15.5 12 15.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M16.2521 7.2593L22.2255 3.8229C22.7069 3.54591 23.2288 4.11681 22.8937 4.55387L18.6772 10.0521C18.4792 10.3103 18.0867 10.3201 17.8754 10.0722L16.1186 8.01036C15.9166 7.77334 15.9802 7.41574 16.2521 7.2593Z",fill:"currentColor"})),B=i;export{i as IconUnicorn,B as default};
1
+ import o from"react";import p from"react";import{Svg as s}from"react-native-svg";var t=({children:n,size:r=24,...C})=>p.createElement(s,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n);import{Path as e}from"react-native-svg";var i=n=>o.createElement(t,{...n},o.createElement(e,{d:"M10.5 11L10.2853 11.8589C10.1012 12.5953 10.1866 13.3732 10.526 14.052C10.8337 14.6674 11.3326 15.1663 11.948 15.474L16.4875 17.7438C16.8245 17.9123 17.1962 18 17.5729 18C18.9134 18 20 16.9134 20 15.5729V14.8394C20 14.2893 19.8565 13.7488 19.5836 13.2712L16 7V4.5L13 6C6 5 2 12 2 18",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M13 21C13 17.5 12 15.5 12 15.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M16.2521 7.2593L22.2255 3.8229C22.7069 3.54591 23.2288 4.11681 22.8937 4.55387L18.6772 10.0521C18.4792 10.3103 18.0867 10.3201 17.8754 10.0722L16.1186 8.01036C15.9166 7.77334 15.9802 7.41574 16.2521 7.2593Z",fill:"currentColor"})),B=i;export{i as IconUnicorn,B as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconUnicorn/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 IconUnicorn: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.5 11L10.2853 11.8589C10.1012 12.5953 10.1866 13.3732 10.526 14.052C10.8337 14.6674 11.3326 15.1663 11.948 15.474L16.4875 17.7438C16.8245 17.9123 17.1962 18 17.5729 18C18.9134 18 20 16.9134 20 15.5729V14.8394C20 14.2893 19.8565 13.7488 19.5836 13.2712L16 7V4.5L13 6C6 2.5 2 12 2 18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13 21C13 17.5 12 15.5 12 15.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M16.2521 7.2593L22.2255 3.8229C22.7069 3.54591 23.2288 4.11681 22.8937 4.55387L18.6772 10.0521C18.4792 10.3103 18.0867 10.3201 17.8754 10.0722L16.1186 8.01036C15.9166 7.77334 15.9802 7.41574 16.2521 7.2593Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconUnicorn;\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,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,+RACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iCACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iNACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconUnicorn","props","React","CentralIconBase","IconUnicorn_default"]}
1
+ {"version":3,"sources":["../src/IconUnicorn/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 IconUnicorn: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.5 11L10.2853 11.8589C10.1012 12.5953 10.1866 13.3732 10.526 14.052C10.8337 14.6674 11.3326 15.1663 11.948 15.474L16.4875 17.7438C16.8245 17.9123 17.1962 18 17.5729 18C18.9134 18 20 16.9134 20 15.5729V14.8394C20 14.2893 19.8565 13.7488 19.5836 13.2712L16 7V4.5L13 6C6 5 2 12 2 18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13 21C13 17.5 12 15.5 12 15.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M16.2521 7.2593L22.2255 3.8229C22.7069 3.54591 23.2288 4.11681 22.8937 4.55387L18.6772 10.0521C18.4792 10.3103 18.0867 10.3201 17.8754 10.0722L16.1186 8.01036C15.9166 7.77334 15.9802 7.41574 16.2521 7.2593Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconUnicorn;\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,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,6RACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iCACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iNACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconUnicorn","props","React","CentralIconBase","IconUnicorn_default"]}
package/README.md CHANGED
@@ -200,6 +200,7 @@ Below is a complete list of available icons:
200
200
  - IconSparkle2
201
201
  - IconSparkle3
202
202
  - IconSparkleCentral
203
+ - IconSparkleHightlight
203
204
  - IconSparklesSoft
204
205
  - IconSparklesThree
205
206
  - IconSparklesTwo
@@ -21196,6 +21196,20 @@
21196
21196
  "packageName": "round-outlined-radius-2-stroke-2",
21197
21197
  "componentName": "IconSparkleCentral"
21198
21198
  },
21199
+ {
21200
+ "category": "AI & Magic",
21201
+ "svg": "<path d=\"M14.4849 8.46468L12.7965 4.52523C12.66 4.20659 12.3467 4 12 4C11.6533 4 11.34 4.20659 11.2035 4.52523L9.51514 8.46468C9.31284 8.93671 8.93671 9.31284 8.46468 9.51514L4.52523 11.2035C4.20659 11.34 4 11.6533 4 12C4 12.3467 4.20659 12.66 4.52523 12.7965L8.46468 14.4849C8.93671 14.6872 9.31284 15.0633 9.51514 15.5353L11.2035 19.4748C11.34 19.7934 11.6533 20 12 20C12.3467 20 12.66 19.7934 12.7965 19.4748L14.4849 15.5353C14.6872 15.0633 15.0633 14.6872 15.5353 14.4849L19.4748 12.7965C19.7934 12.66 20 12.3467 20 12C20 11.6533 19.7934 11.34 19.4748 11.2035L15.5353 9.51514C15.0633 9.31284 14.6872 8.93671 14.4849 8.46468Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3 3L5 5M21 3L19 5M3 21L5 19M21 21L19 19\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
21202
+ "iconName": "sparkle-hightlight, special, ai, magic",
21203
+ "variant": {
21204
+ "join": "round",
21205
+ "filled": "off",
21206
+ "radius": "2",
21207
+ "stroke": "2"
21208
+ },
21209
+ "createdAt": "2026-02-19T12:00:51.458916+00:00",
21210
+ "packageName": "round-outlined-radius-2-stroke-2",
21211
+ "componentName": "IconSparkleHightlight"
21212
+ },
21199
21213
  {
21200
21214
  "category": "AI & Magic",
21201
21215
  "svg": "<path d=\"M19 13C14.0987 13.4243 11.4243 16.0987 11 21C10.5578 16.0225 7.89737 13.5547 3 13C7.97478 12.4262 10.4262 9.97478 11 5C11.5547 9.89737 14.0225 12.5578 19 13Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18.8864 2.34512C18.8642 2.14869 18.6981 2.0002 18.5004 2C18.3027 1.9998 18.1363 2.14794 18.1137 2.34433C18.0082 3.25861 17.7367 3.88584 17.3113 4.31127C16.8858 4.7367 16.2586 5.00822 15.3443 5.11367C15.1479 5.13632 14.9998 5.30271 15 5.5004C15.0002 5.69809 15.1487 5.86417 15.3451 5.88642C16.2439 5.98823 16.8855 6.25969 17.3217 6.68804C17.7556 7.11407 18.0322 7.74041 18.1126 8.64552C18.1305 8.84634 18.2988 9.00023 18.5004 9C18.702 8.99977 18.8701 8.84551 18.8874 8.64465C18.9645 7.75483 19.2409 7.11438 19.6776 6.67764C20.1144 6.24091 20.7548 5.96446 21.6446 5.88744C21.8455 5.87005 21.9998 5.70205 22 5.50044C22.0002 5.29883 21.8463 5.13048 21.6455 5.11264C20.7404 5.03224 20.1141 4.75557 19.688 4.3217C19.2597 3.88545 18.9882 3.24394 18.8864 2.34512Z\" fill=\"currentColor\"/>",
@@ -23816,7 +23830,7 @@
23816
23830
  },
23817
23831
  {
23818
23832
  "category": "Things",
23819
- "svg": "<path d=\"M10.5 11L10.2853 11.8589C10.1012 12.5953 10.1866 13.3732 10.526 14.052C10.8337 14.6674 11.3326 15.1663 11.948 15.474L16.4875 17.7438C16.8245 17.9123 17.1962 18 17.5729 18C18.9134 18 20 16.9134 20 15.5729V14.8394C20 14.2893 19.8565 13.7488 19.5836 13.2712L16 7V4.5L13 6C6 2.5 2 12 2 18\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13 21C13 17.5 12 15.5 12 15.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.2521 7.2593L22.2255 3.8229C22.7069 3.54591 23.2288 4.11681 22.8937 4.55387L18.6772 10.0521C18.4792 10.3103 18.0867 10.3201 17.8754 10.0722L16.1186 8.01036C15.9166 7.77334 15.9802 7.41574 16.2521 7.2593Z\" fill=\"currentColor\"/>",
23833
+ "svg": "<path d=\"M10.5 11L10.2853 11.8589C10.1012 12.5953 10.1866 13.3732 10.526 14.052C10.8337 14.6674 11.3326 15.1663 11.948 15.474L16.4875 17.7438C16.8245 17.9123 17.1962 18 17.5729 18C18.9134 18 20 16.9134 20 15.5729V14.8394C20 14.2893 19.8565 13.7488 19.5836 13.2712L16 7V4.5L13 6C6 5 2 12 2 18\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13 21C13 17.5 12 15.5 12 15.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.2521 7.2593L22.2255 3.8229C22.7069 3.54591 23.2288 4.11681 22.8937 4.55387L18.6772 10.0521C18.4792 10.3103 18.0867 10.3201 17.8754 10.0722L16.1186 8.01036C15.9166 7.77334 15.9802 7.41574 16.2521 7.2593Z\" fill=\"currentColor\"/>",
23820
23834
  "iconName": "unicorn, startup, success",
23821
23835
  "variant": {
23822
23836
  "join": "round",
package/icons/index.d.ts CHANGED
@@ -1513,6 +1513,7 @@ export type CentralIconName =
1513
1513
  | "IconSparkle2"
1514
1514
  | "IconSparkle3"
1515
1515
  | "IconSparkleCentral"
1516
+ | "IconSparkleHightlight"
1516
1517
  | "IconSparklesSoft"
1517
1518
  | "IconSparklesThree"
1518
1519
  | "IconSparklesTwo"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/round-outlined-radius-2-stroke-2",
3
- "version": "1.1.138",
3
+ "version": "1.1.139",
4
4
  "style": "round-outlined-radius-2-stroke-2",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-2-stroke-2/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": 1819,
14
+ "totalIcons": 1820,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
- "count": 68,
17
+ "count": 69,
18
18
  "icons": [
19
19
  "IconAiTokens",
20
20
  "IconAiTranslate",
@@ -70,6 +70,7 @@
70
70
  "IconSparkle2",
71
71
  "IconSparkle3",
72
72
  "IconSparkleCentral",
73
+ "IconSparkleHightlight",
73
74
  "IconSparklesSoft",
74
75
  "IconSparklesThree",
75
76
  "IconSparklesTwo",
@@ -3535,6 +3536,7 @@
3535
3536
  "IconSparkle2": "sparkle-2, star, magic, ai",
3536
3537
  "IconSparkle3": "sparkle-3, ai, star, magic",
3537
3538
  "IconSparkleCentral": "sparkle-central, star, magic, ai",
3539
+ "IconSparkleHightlight": "sparkle-hightlight, special, ai, magic",
3538
3540
  "IconSparklesSoft": "sparkles-soft",
3539
3541
  "IconSparklesThree": "sparkles-three, ai 3 stars, sparkles, ✨",
3540
3542
  "IconSparklesTwo": "sparkles-two, ai 2 stars, sparkles, ✨",
package/index.d.ts CHANGED
@@ -1512,6 +1512,7 @@ export { IconSparkle, default as IconSparkleDefault } from "./IconSparkle";
1512
1512
  export { IconSparkle2, default as IconSparkle2Default } from "./IconSparkle2";
1513
1513
  export { IconSparkle3, default as IconSparkle3Default } from "./IconSparkle3";
1514
1514
  export { IconSparkleCentral, default as IconSparkleCentralDefault, } from "./IconSparkleCentral";
1515
+ export { IconSparkleHightlight, default as IconSparkleHightlightDefault, } from "./IconSparkleHightlight";
1515
1516
  export { IconSparklesSoft, default as IconSparklesSoftDefault, } from "./IconSparklesSoft";
1516
1517
  export { IconSparklesThree, default as IconSparklesThreeDefault, } from "./IconSparklesThree";
1517
1518
  export { IconSparklesTwo, default as IconSparklesTwoDefault, } from "./IconSparklesTwo";