@central-icons-react-native/round-outlined-radius-1-stroke-1.5 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:"M3 3L5.5 5.5M21 3L18.5 5.5M3 21L5.5 18.5M21 21L18.5 18.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),C.default.createElement(p.Path,{d:"M14.7302 8.74875L12.7948 4.27224C12.6577 3.95524 12.3454 3.75 12 3.75C11.6546 3.75 11.3423 3.95524 11.2052 4.27224L9.26977 8.74875C9.16875 8.98241 8.98241 9.16875 8.74875 9.26977L4.27224 11.2052C3.95524 11.3423 3.75 11.6546 3.75 12C3.75 12.3454 3.95524 12.6577 4.27224 12.7948L8.74875 14.7302C8.98241 14.8313 9.16875 15.0176 9.26977 15.2513L11.2052 19.7278C11.3423 20.0448 11.6546 20.25 12 20.25C12.3454 20.25 12.6577 20.0448 12.7948 19.7278L14.7302 15.2513C14.8313 15.0176 15.0176 14.8313 15.2513 14.7302L19.7278 12.7948C20.0448 12.6577 20.25 12.3454 20.25 12C20.25 11.6546 20.0448 11.3423 19.7278 11.2052L15.2513 9.26977C15.0176 9.16875 14.8313 8.98241 14.7302 8.74875Z",stroke:"currentColor",strokeWidth:"1.5",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=\"M3 3L5.5 5.5M21 3L18.5 5.5M3 21L5.5 18.5M21 21L18.5 18.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14.7302 8.74875L12.7948 4.27224C12.6577 3.95524 12.3454 3.75 12 3.75C11.6546 3.75 11.3423 3.95524 11.2052 4.27224L9.26977 8.74875C9.16875 8.98241 8.98241 9.16875 8.74875 9.26977L4.27224 11.2052C3.95524 11.3423 3.75 11.6546 3.75 12C3.75 12.3454 3.95524 12.6577 4.27224 12.7948L8.74875 14.7302C8.98241 14.8313 9.16875 15.0176 9.26977 15.2513L11.2052 19.7278C11.3423 20.0448 11.6546 20.25 12 20.25C12.3454 20.25 12.6577 20.0448 12.7948 19.7278L14.7302 15.2513C14.8313 15.0176 15.0176 14.8313 15.2513 14.7302L19.7278 12.7948C20.0448 12.6577 20.25 12.3454 20.25 12C20.25 11.6546 20.0448 11.3423 19.7278 11.2052L15.2513 9.26977C15.0176 9.16875 14.8313 8.98241 14.7302 8.74875Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\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,2DACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kqBACF,OAAO,eACP,YAAY,MACZ,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:"M3 3L5.5 5.5M21 3L18.5 5.5M3 21L5.5 18.5M21 21L18.5 18.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement(n,{d:"M14.7302 8.74875L12.7948 4.27224C12.6577 3.95524 12.3454 3.75 12 3.75C11.6546 3.75 11.3423 3.95524 11.2052 4.27224L9.26977 8.74875C9.16875 8.98241 8.98241 9.16875 8.74875 9.26977L4.27224 11.2052C3.95524 11.3423 3.75 11.6546 3.75 12C3.75 12.3454 3.95524 12.6577 4.27224 12.7948L8.74875 14.7302C8.98241 14.8313 9.16875 15.0176 9.26977 15.2513L11.2052 19.7278C11.3423 20.0448 11.6546 20.25 12 20.25C12.3454 20.25 12.6577 20.0448 12.7948 19.7278L14.7302 15.2513C14.8313 15.0176 15.0176 14.8313 15.2513 14.7302L19.7278 12.7948C20.0448 12.6577 20.25 12.3454 20.25 12C20.25 11.6546 20.0448 11.3423 19.7278 11.2052L15.2513 9.26977C15.0176 9.16875 14.8313 8.98241 14.7302 8.74875Z",stroke:"currentColor",strokeWidth:"1.5",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=\"M3 3L5.5 5.5M21 3L18.5 5.5M3 21L5.5 18.5M21 21L18.5 18.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14.7302 8.74875L12.7948 4.27224C12.6577 3.95524 12.3454 3.75 12 3.75C11.6546 3.75 11.3423 3.95524 11.2052 4.27224L9.26977 8.74875C9.16875 8.98241 8.98241 9.16875 8.74875 9.26977L4.27224 11.2052C3.95524 11.3423 3.75 11.6546 3.75 12C3.75 12.3454 3.95524 12.6577 4.27224 12.7948L8.74875 14.7302C8.98241 14.8313 9.16875 15.0176 9.26977 15.2513L11.2052 19.7278C11.3423 20.0448 11.6546 20.25 12 20.25C12.3454 20.25 12.6577 20.0448 12.7948 19.7278L14.7302 15.2513C14.8313 15.0176 15.0176 14.8313 15.2513 14.7302L19.7278 12.7948C20.0448 12.6577 20.25 12.3454 20.25 12C20.25 11.6546 20.0448 11.3423 19.7278 11.2052L15.2513 9.26977C15.0176 9.16875 14.8313 8.98241 14.7302 8.74875Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\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,2DACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kqBACF,OAAO,eACP,YAAY,MACZ,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.4861 10.9907L10.2654 11.8815C10.0762 12.6451 10.164 13.4518 10.5128 14.1558C10.8291 14.7939 11.3419 15.3114 11.9743 15.6304L16.64 17.9843C16.9863 18.159 17.3683 18.25 17.7555 18.25C19.1332 18.25 20.25 17.1231 20.25 15.7331V14.9723C20.25 14.4019 20.1025 13.8414 19.822 13.3461L16.1389 6.84259V4.25L13.0556 5.80556C5.86111 2.17593 1.75 12.0278 1.75 18.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(p.Path,{d:"M13.25 20.2498C13.072 18.1505 12.4312 16.6435 12 15.8398",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(p.Path,{d:"M22.2237 4.07192C22.7052 3.79493 23.2271 4.36584 22.8919 4.80289L18.4982 9.74902C18.3002 10.0072 17.9077 10.017 17.6964 9.76912L16.3647 8.00008C16.1627 7.76306 16.2263 7.40546 16.4982 7.24902L22.2237 4.07192Z",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:"M13.25 20.2498C13.072 18.1505 12.4312 16.6435 12 15.8398",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(p.Path,{d:"M22.2276 4.07192C22.7091 3.79493 23.231 4.36584 22.8958 4.80289L18.5021 9.74902C18.3041 10.0072 17.9116 10.017 17.7003 9.76912L16.3686 8.00008C16.1666 7.76306 16.2302 7.40546 16.5021 7.24902L22.2276 4.07192Z",fill:"currentColor"}),t.default.createElement(p.Path,{d:"M10.4861 10.9907L10.2654 11.8815C10.0762 12.6451 10.164 13.4518 10.5128 14.1558C10.8291 14.7939 11.3419 15.3114 11.9743 15.6304L16.64 17.9843C16.9863 18.159 17.3683 18.25 17.7555 18.25C19.1332 18.25 20.25 17.1231 20.25 15.7331V14.9723C20.25 14.4019 20.1025 13.8414 19.822 13.3461L16.1389 6.84259V4.25L13.0556 5.80556C5.5 5 1.75 12.0278 1.75 18.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),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.4861 10.9907L10.2654 11.8815C10.0762 12.6451 10.164 13.4518 10.5128 14.1558C10.8291 14.7939 11.3419 15.3114 11.9743 15.6304L16.64 17.9843C16.9863 18.159 17.3683 18.25 17.7555 18.25C19.1332 18.25 20.25 17.1231 20.25 15.7331V14.9723C20.25 14.4019 20.1025 13.8414 19.822 13.3461L16.1389 6.84259V4.25L13.0556 5.80556C5.86111 2.17593 1.75 12.0278 1.75 18.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13.25 20.2498C13.072 18.1505 12.4312 16.6435 12 15.8398\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M22.2237 4.07192C22.7052 3.79493 23.2271 4.36584 22.8919 4.80289L18.4982 9.74902C18.3002 10.0072 17.9077 10.017 17.6964 9.76912L16.3647 8.00008C16.1627 7.76306 16.2263 7.40546 16.4982 7.24902L22.2237 4.07192Z\"\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,uWACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2DACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mNACF,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=\"M13.25 20.2498C13.072 18.1505 12.4312 16.6435 12 15.8398\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M22.2276 4.07192C22.7091 3.79493 23.231 4.36584 22.8958 4.80289L18.5021 9.74902C18.3041 10.0072 17.9116 10.017 17.7003 9.76912L16.3686 8.00008C16.1666 7.76306 16.2302 7.40546 16.5021 7.24902L22.2276 4.07192Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M10.4861 10.9907L10.2654 11.8815C10.0762 12.6451 10.164 13.4518 10.5128 14.1558C10.8291 14.7939 11.3419 15.3114 11.9743 15.6304L16.64 17.9843C16.9863 18.159 17.3683 18.25 17.7555 18.25C19.1332 18.25 20.25 17.1231 20.25 15.7331V14.9723C20.25 14.4019 20.1025 13.8414 19.822 13.3461L16.1389 6.84259V4.25L13.0556 5.80556C5.5 5 1.75 12.0278 1.75 18.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,2DACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kNACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6VACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,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.4861 10.9907L10.2654 11.8815C10.0762 12.6451 10.164 13.4518 10.5128 14.1558C10.8291 14.7939 11.3419 15.3114 11.9743 15.6304L16.64 17.9843C16.9863 18.159 17.3683 18.25 17.7555 18.25C19.1332 18.25 20.25 17.1231 20.25 15.7331V14.9723C20.25 14.4019 20.1025 13.8414 19.822 13.3461L16.1389 6.84259V4.25L13.0556 5.80556C5.86111 2.17593 1.75 12.0278 1.75 18.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M13.25 20.2498C13.072 18.1505 12.4312 16.6435 12 15.8398",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M22.2237 4.07192C22.7052 3.79493 23.2271 4.36584 22.8919 4.80289L18.4982 9.74902C18.3002 10.0072 17.9077 10.017 17.6964 9.76912L16.3647 8.00008C16.1627 7.76306 16.2263 7.40546 16.4982 7.24902L22.2237 4.07192Z",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:"M13.25 20.2498C13.072 18.1505 12.4312 16.6435 12 15.8398",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M22.2276 4.07192C22.7091 3.79493 23.231 4.36584 22.8958 4.80289L18.5021 9.74902C18.3041 10.0072 17.9116 10.017 17.7003 9.76912L16.3686 8.00008C16.1666 7.76306 16.2302 7.40546 16.5021 7.24902L22.2276 4.07192Z",fill:"currentColor"}),o.createElement(e,{d:"M10.4861 10.9907L10.2654 11.8815C10.0762 12.6451 10.164 13.4518 10.5128 14.1558C10.8291 14.7939 11.3419 15.3114 11.9743 15.6304L16.64 17.9843C16.9863 18.159 17.3683 18.25 17.7555 18.25C19.1332 18.25 20.25 17.1231 20.25 15.7331V14.9723C20.25 14.4019 20.1025 13.8414 19.822 13.3461L16.1389 6.84259V4.25L13.0556 5.80556C5.5 5 1.75 12.0278 1.75 18.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),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.4861 10.9907L10.2654 11.8815C10.0762 12.6451 10.164 13.4518 10.5128 14.1558C10.8291 14.7939 11.3419 15.3114 11.9743 15.6304L16.64 17.9843C16.9863 18.159 17.3683 18.25 17.7555 18.25C19.1332 18.25 20.25 17.1231 20.25 15.7331V14.9723C20.25 14.4019 20.1025 13.8414 19.822 13.3461L16.1389 6.84259V4.25L13.0556 5.80556C5.86111 2.17593 1.75 12.0278 1.75 18.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13.25 20.2498C13.072 18.1505 12.4312 16.6435 12 15.8398\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M22.2237 4.07192C22.7052 3.79493 23.2271 4.36584 22.8919 4.80289L18.4982 9.74902C18.3002 10.0072 17.9077 10.017 17.6964 9.76912L16.3647 8.00008C16.1627 7.76306 16.2263 7.40546 16.4982 7.24902L22.2237 4.07192Z\"\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,uWACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2DACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mNACF,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=\"M13.25 20.2498C13.072 18.1505 12.4312 16.6435 12 15.8398\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M22.2276 4.07192C22.7091 3.79493 23.231 4.36584 22.8958 4.80289L18.5021 9.74902C18.3041 10.0072 17.9116 10.017 17.7003 9.76912L16.3686 8.00008C16.1666 7.76306 16.2302 7.40546 16.5021 7.24902L22.2276 4.07192Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M10.4861 10.9907L10.2654 11.8815C10.0762 12.6451 10.164 13.4518 10.5128 14.1558C10.8291 14.7939 11.3419 15.3114 11.9743 15.6304L16.64 17.9843C16.9863 18.159 17.3683 18.25 17.7555 18.25C19.1332 18.25 20.25 17.1231 20.25 15.7331V14.9723C20.25 14.4019 20.1025 13.8414 19.822 13.3461L16.1389 6.84259V4.25L13.0556 5.80556C5.5 5 1.75 12.0278 1.75 18.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,2DACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kNACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6VACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,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-1-stroke-1.5",
21197
21197
  "componentName": "IconSparkleCentral"
21198
21198
  },
21199
+ {
21200
+ "category": "AI & Magic",
21201
+ "svg": "<path d=\"M3 3L5.5 5.5M21 3L18.5 5.5M3 21L5.5 18.5M21 21L18.5 18.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.7302 8.74875L12.7948 4.27224C12.6577 3.95524 12.3454 3.75 12 3.75C11.6546 3.75 11.3423 3.95524 11.2052 4.27224L9.26977 8.74875C9.16875 8.98241 8.98241 9.16875 8.74875 9.26977L4.27224 11.2052C3.95524 11.3423 3.75 11.6546 3.75 12C3.75 12.3454 3.95524 12.6577 4.27224 12.7948L8.74875 14.7302C8.98241 14.8313 9.16875 15.0176 9.26977 15.2513L11.2052 19.7278C11.3423 20.0448 11.6546 20.25 12 20.25C12.3454 20.25 12.6577 20.0448 12.7948 19.7278L14.7302 15.2513C14.8313 15.0176 15.0176 14.8313 15.2513 14.7302L19.7278 12.7948C20.0448 12.6577 20.25 12.3454 20.25 12C20.25 11.6546 20.0448 11.3423 19.7278 11.2052L15.2513 9.26977C15.0176 9.16875 14.8313 8.98241 14.7302 8.74875Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
21202
+ "iconName": "sparkle-hightlight, special, ai, magic",
21203
+ "variant": {
21204
+ "join": "round",
21205
+ "filled": "off",
21206
+ "radius": "1",
21207
+ "stroke": "1.5"
21208
+ },
21209
+ "createdAt": "2026-02-19T12:00:51.458916+00:00",
21210
+ "packageName": "round-outlined-radius-1-stroke-1.5",
21211
+ "componentName": "IconSparkleHightlight"
21212
+ },
21199
21213
  {
21200
21214
  "category": "AI & Magic",
21201
21215
  "svg": "<path d=\"M19.25 13C14.1955 13.4375 11.4375 16.1955 11 21.25C10.544 16.1169 7.80041 13.5721 2.75 13C7.88024 12.4083 10.4083 9.88024 11 4.75C11.5721 9.80041 14.1169 12.544 19.25 13Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.7898 1.25884C19.7731 1.11151 19.6486 1.00015 19.5003 1C19.352 0.999849 19.2272 1.11096 19.2103 1.25825C19.0998 2.21602 18.8134 2.8895 18.3515 3.35146C17.8895 3.81343 17.216 4.09979 16.2582 4.21025C16.111 4.22724 15.9998 4.35203 16 4.5003C16.0002 4.64857 16.1115 4.77313 16.2588 4.78981C17.2008 4.89651 17.8886 5.18275 18.3615 5.64713C18.8327 6.10977 19.125 6.7831 19.2095 7.73414C19.2229 7.88476 19.3491 8.00017 19.5003 8C19.6515 7.99983 19.7775 7.88413 19.7906 7.73349C19.8716 6.79809 20.1636 6.11059 20.6371 5.6371C21.1106 5.16361 21.7981 4.87155 22.7335 4.79058C22.8841 4.77754 22.9998 4.65154 23 4.50033C23.0002 4.34912 22.8848 4.22286 22.7341 4.20948C21.7831 4.125 21.1098 3.83266 20.6471 3.36151C20.1827 2.88857 19.8965 2.20078 19.7898 1.25884Z\" fill=\"currentColor\"/>",
@@ -23816,7 +23830,7 @@
23816
23830
  },
23817
23831
  {
23818
23832
  "category": "Things",
23819
- "svg": "<path d=\"M10.4861 10.9907L10.2654 11.8815C10.0762 12.6451 10.164 13.4518 10.5128 14.1558C10.8291 14.7939 11.3419 15.3114 11.9743 15.6304L16.64 17.9843C16.9863 18.159 17.3683 18.25 17.7555 18.25C19.1332 18.25 20.25 17.1231 20.25 15.7331V14.9723C20.25 14.4019 20.1025 13.8414 19.822 13.3461L16.1389 6.84259V4.25L13.0556 5.80556C5.86111 2.17593 1.75 12.0278 1.75 18.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.25 20.2498C13.072 18.1505 12.4312 16.6435 12 15.8398\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M22.2237 4.07192C22.7052 3.79493 23.2271 4.36584 22.8919 4.80289L18.4982 9.74902C18.3002 10.0072 17.9077 10.017 17.6964 9.76912L16.3647 8.00008C16.1627 7.76306 16.2263 7.40546 16.4982 7.24902L22.2237 4.07192Z\" fill=\"currentColor\"/>",
23833
+ "svg": "<path d=\"M13.25 20.2498C13.072 18.1505 12.4312 16.6435 12 15.8398\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M22.2276 4.07192C22.7091 3.79493 23.231 4.36584 22.8958 4.80289L18.5021 9.74902C18.3041 10.0072 17.9116 10.017 17.7003 9.76912L16.3686 8.00008C16.1666 7.76306 16.2302 7.40546 16.5021 7.24902L22.2276 4.07192Z\" fill=\"currentColor\"/><path d=\"M10.4861 10.9907L10.2654 11.8815C10.0762 12.6451 10.164 13.4518 10.5128 14.1558C10.8291 14.7939 11.3419 15.3114 11.9743 15.6304L16.64 17.9843C16.9863 18.159 17.3683 18.25 17.7555 18.25C19.1332 18.25 20.25 17.1231 20.25 15.7331V14.9723C20.25 14.4019 20.1025 13.8414 19.822 13.3461L16.1389 6.84259V4.25L13.0556 5.80556C5.5 5 1.75 12.0278 1.75 18.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
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-1-stroke-1.5",
3
- "version": "1.1.138",
3
+ "version": "1.1.139",
4
4
  "style": "round-outlined-radius-1-stroke-1.5",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-1-stroke-1.5/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";