@central-icons-react-native/square-filled-radius-0-stroke-1 1.1.138 → 1.1.140
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/IconBurst/index.d.ts +4 -0
- package/IconBurst/index.js +2 -0
- package/IconBurst/index.js.map +1 -0
- package/IconBurst/index.mjs +2 -0
- package/IconBurst/index.mjs.map +1 -0
- package/IconGoogle/index.js +1 -1
- package/IconGoogle/index.js.map +1 -1
- package/IconGoogle/index.mjs +1 -1
- package/IconGoogle/index.mjs.map +1 -1
- package/IconPark/index.d.ts +4 -0
- package/IconPark/index.js +2 -0
- package/IconPark/index.js.map +1 -0
- package/IconPark/index.mjs +2 -0
- package/IconPark/index.mjs.map +1 -0
- package/IconShimmer/index.d.ts +4 -0
- package/IconShimmer/index.js +2 -0
- package/IconShimmer/index.js.map +1 -0
- package/IconShimmer/index.mjs +2 -0
- package/IconShimmer/index.mjs.map +1 -0
- package/IconSparkleHightlight/index.d.ts +4 -0
- package/IconSparkleHightlight/index.js +2 -0
- package/IconSparkleHightlight/index.js.map +1 -0
- package/IconSparkleHightlight/index.mjs +2 -0
- package/IconSparkleHightlight/index.mjs.map +1 -0
- package/IconUnicorn/index.js +1 -1
- package/IconUnicorn/index.js.map +1 -1
- package/IconUnicorn/index.mjs +1 -1
- package/IconUnicorn/index.mjs.map +1 -1
- package/README.md +4 -0
- package/filtered-icons.json +58 -2
- package/icons/index.d.ts +4 -0
- package/icons-index.json +14 -6
- package/index.d.ts +4 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/tsx-icons.json +30 -2
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var B=Object.create;var n=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var H=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,M=Object.prototype.hasOwnProperty;var V=(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 H(o))!M.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(L=u(o,e))||L.enumerable});return r};var l=(r,o,t)=>(t=r!=null?B(I(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),Z=r=>a(n({},"__esModule",{value:!0}),r);var x={};V(x,{IconBurst:()=>f,default:()=>i});module.exports=Z(x);var p=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=>p.default.createElement(C,{...r},p.default.createElement(c.Path,{d:"M11.5 19H12.5V23H11.5V19ZM8.70703 16L4.5 20.207L3.79297 19.5L8 15.293L8.70703 16ZM20.207 19.5L19.5 20.207L15.293 16L16 15.293L20.207 19.5ZM5 11.5V12.5H1V11.5H5ZM23 11.5V12.5H19V11.5H23ZM8.70703 8L8 8.70703L3.79297 4.5L4.5 3.79297L8.70703 8ZM20.207 4.5L16 8.70703L15.293 8L19.5 3.79297L20.207 4.5ZM11.5 1H12.5V5H11.5V1Z",fill:"currentColor"})),i=f;0&&(module.exports={IconBurst});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBurst/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 IconBurst: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.5 19H12.5V23H11.5V19ZM8.70703 16L4.5 20.207L3.79297 19.5L8 15.293L8.70703 16ZM20.207 19.5L19.5 20.207L15.293 16L16 15.293L20.207 19.5ZM5 11.5V12.5H1V11.5H5ZM23 11.5V12.5H19V11.5H23ZM8.70703 8L8 8.70703L3.79297 4.5L4.5 3.79297L8.70703 8ZM20.207 4.5L16 8.70703L15.293 8L19.5 3.79297L20.207 4.5ZM11.5 1H12.5V5H11.5V1Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBurst;\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,eAAAE,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,EAAuCC,GAEhD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,iUACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconBurst_exports","__export","IconBurst","IconBurst_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconBurst","props","React","CentralIconBase","IconBurst_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as L}from"react-native-svg";var t=({children:o,size:r=24,...n})=>p.createElement(L,{...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:"M11.5 19H12.5V23H11.5V19ZM8.70703 16L4.5 20.207L3.79297 19.5L8 15.293L8.70703 16ZM20.207 19.5L19.5 20.207L15.293 16L16 15.293L20.207 19.5ZM5 11.5V12.5H1V11.5H5ZM23 11.5V12.5H19V11.5H23ZM8.70703 8L8 8.70703L3.79297 4.5L4.5 3.79297L8.70703 8ZM20.207 4.5L16 8.70703L15.293 8L19.5 3.79297L20.207 4.5ZM11.5 1H12.5V5H11.5V1Z",fill:"currentColor"})),M=l;export{l as IconBurst,M as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBurst/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 IconBurst: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.5 19H12.5V23H11.5V19ZM8.70703 16L4.5 20.207L3.79297 19.5L8 15.293L8.70703 16ZM20.207 19.5L19.5 20.207L15.293 16L16 15.293L20.207 19.5ZM5 11.5V12.5H1V11.5H5ZM23 11.5V12.5H19V11.5H23ZM8.70703 8L8 8.70703L3.79297 4.5L4.5 3.79297L8.70703 8ZM20.207 4.5L16 8.70703L15.293 8L19.5 3.79297L20.207 4.5ZM11.5 1H12.5V5H11.5V1Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBurst;\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,EAAuCC,GAEhDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,iUACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconBurst","props","React","CentralIconBase","IconBurst_default"]}
|
package/IconGoogle/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var I=Object.create;var n=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var u=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(o,r)=>{for(var t in r)n(o,t,{get:r[t],enumerable:!0})},a=(o,r,t,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let e of i(r))!x.call(o,e)&&e!==t&&n(o,e,{get:()=>r[e],enumerable:!(p=g(r,e))||p.enumerable});return o};var l=(o,r,t)=>(t=o!=null?I(u(o)):{},a(r||!o||!o.__esModule?n(t,"default",{value:o,enumerable:!0}):t,o)),v=o=>a(n({},"__esModule",{value:!0}),o);var
|
|
1
|
+
"use strict";var I=Object.create;var n=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var u=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(o,r)=>{for(var t in r)n(o,t,{get:r[t],enumerable:!0})},a=(o,r,t,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let e of i(r))!x.call(o,e)&&e!==t&&n(o,e,{get:()=>r[e],enumerable:!(p=g(r,e))||p.enumerable});return o};var l=(o,r,t)=>(t=o!=null?I(u(o)):{},a(r||!o||!o.__esModule?n(t,"default",{value:o,enumerable:!0}):t,o)),v=o=>a(n({},"__esModule",{value:!0}),o);var y={};P(y,{IconGoogle:()=>B,default:()=>h});module.exports=v(y);var C=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),c=({children:o,size:r=24,...t})=>m.default.createElement(s.Svg,{...t,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var f=require("react-native-svg"),B=o=>C.default.createElement(c,{...o},C.default.createElement(f.Path,{d:"M12.1369 2C14.8367 2.00011 17.0911 2.99128 18.8273 4.60938L15.9641 7.47266C14.9187 6.49094 13.6095 5.98155 12.1369 5.98145C9.5402 5.98145 7.33274 7.73178 6.53921 10.0908V10.0996C5.29869 13.8213 8.01593 18.0273 12.1369 18.0273C14.6114 18.0273 17.0288 16.6458 17.5207 14.0547H12.1389V10.1816H21.5568C21.675 10.8362 21.7385 11.5184 21.7385 12.2275C21.7384 15.2729 20.6479 17.8366 18.757 19.582H18.7551L18.4377 19.8604C16.8159 21.2168 14.6682 21.9999 12.1369 22C8.22787 22 4.85463 19.7547 3.20913 16.4912V16.4766C1.79482 13.6817 1.7946 10.3141 3.2101 7.51953L3.20913 7.51855C4.85458 4.24582 8.22777 2 12.1369 2Z",fill:"currentColor"})),h=B;0&&(module.exports={IconGoogle});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/IconGoogle/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconGoogle/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 IconGoogle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"
|
|
1
|
+
{"version":3,"sources":["../src/IconGoogle/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 IconGoogle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12.1369 2C14.8367 2.00011 17.0911 2.99128 18.8273 4.60938L15.9641 7.47266C14.9187 6.49094 13.6095 5.98155 12.1369 5.98145C9.5402 5.98145 7.33274 7.73178 6.53921 10.0908V10.0996C5.29869 13.8213 8.01593 18.0273 12.1369 18.0273C14.6114 18.0273 17.0288 16.6458 17.5207 14.0547H12.1389V10.1816H21.5568C21.675 10.8362 21.7385 11.5184 21.7385 12.2275C21.7384 15.2729 20.6479 17.8366 18.757 19.582H18.7551L18.4377 19.8604C16.8159 21.2168 14.6682 21.9999 12.1369 22C8.22787 22 4.85463 19.7547 3.20913 16.4912V16.4766C1.79482 13.6817 1.7946 10.3141 3.2101 7.51953L3.20913 7.51855C4.85458 4.24582 8.22777 2 12.1369 2Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGoogle;\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,gBAAAE,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,EAAwCC,GAEjD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,kmBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconGoogle_exports","__export","IconGoogle","IconGoogle_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconGoogle","props","React","CentralIconBase","IconGoogle_default"]}
|
package/IconGoogle/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import e from"react";import C from"react";import{Svg as p}from"react-native-svg";var t=({children:r,size:o=24,...n})=>C.createElement(p,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as a}from"react-native-svg";var l=r=>e.createElement(t,{...r},e.createElement(a,{d:"
|
|
1
|
+
import e from"react";import C from"react";import{Svg as p}from"react-native-svg";var t=({children:r,size:o=24,...n})=>C.createElement(p,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as a}from"react-native-svg";var l=r=>e.createElement(t,{...r},e.createElement(a,{d:"M12.1369 2C14.8367 2.00011 17.0911 2.99128 18.8273 4.60938L15.9641 7.47266C14.9187 6.49094 13.6095 5.98155 12.1369 5.98145C9.5402 5.98145 7.33274 7.73178 6.53921 10.0908V10.0996C5.29869 13.8213 8.01593 18.0273 12.1369 18.0273C14.6114 18.0273 17.0288 16.6458 17.5207 14.0547H12.1389V10.1816H21.5568C21.675 10.8362 21.7385 11.5184 21.7385 12.2275C21.7384 15.2729 20.6479 17.8366 18.757 19.582H18.7551L18.4377 19.8604C16.8159 21.2168 14.6682 21.9999 12.1369 22C8.22787 22 4.85463 19.7547 3.20913 16.4912V16.4766C1.79482 13.6817 1.7946 10.3141 3.2101 7.51953L3.20913 7.51855C4.85458 4.24582 8.22777 2 12.1369 2Z",fill:"currentColor"})),x=l;export{l as IconGoogle,x as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/IconGoogle/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconGoogle/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 IconGoogle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"
|
|
1
|
+
{"version":3,"sources":["../src/IconGoogle/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 IconGoogle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12.1369 2C14.8367 2.00011 17.0911 2.99128 18.8273 4.60938L15.9641 7.47266C14.9187 6.49094 13.6095 5.98155 12.1369 5.98145C9.5402 5.98145 7.33274 7.73178 6.53921 10.0908V10.0996C5.29869 13.8213 8.01593 18.0273 12.1369 18.0273C14.6114 18.0273 17.0288 16.6458 17.5207 14.0547H12.1389V10.1816H21.5568C21.675 10.8362 21.7385 11.5184 21.7385 12.2275C21.7384 15.2729 20.6479 17.8366 18.757 19.582H18.7551L18.4377 19.8604C16.8159 21.2168 14.6682 21.9999 12.1369 22C8.22787 22 4.85463 19.7547 3.20913 16.4912V16.4766C1.79482 13.6817 1.7946 10.3141 3.2101 7.51953L3.20913 7.51855C4.85458 4.24582 8.22777 2 12.1369 2Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGoogle;\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,EAAwCC,GAEjDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,kmBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconGoogle","props","React","CentralIconBase","IconGoogle_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var I=Object.create;var n=Object.defineProperty;var P=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var u=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var g=(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=P(o,e))||p.enumerable});return r};var l=(r,o,t)=>(t=r!=null?I(u(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),v=r=>a(n({},"__esModule",{value:!0}),r);var h={};g(h,{IconPark:()=>B,default:()=>H});module.exports=v(h);var C=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 f=require("react-native-svg"),B=r=>C.default.createElement(c,{...r},C.default.createElement(f.Path,{d:"M12 2C13.7834 2 15.3007 3.11465 15.9189 4.68359C18.1595 4.78893 19.9375 6.65284 19.9375 8.92871C19.9375 9.51849 19.8147 10.0792 19.5986 10.5898C20.4578 11.3676 21 12.4947 21 13.75C21 16.0933 19.1151 18 16.7812 18H12.5V21H15V22H9V21H11.5V18H7.21875C4.88486 18 3 16.0933 3 13.75C3 12.4954 3.54082 11.3677 4.39941 10.5898C4.18362 10.0791 4.06252 9.51789 4.0625 8.92871C4.0625 6.6535 5.83949 4.78992 8.0791 4.68359C8.6974 3.11421 10.2166 2 12 2Z",fill:"currentColor"})),H=B;0&&(module.exports={IconPark});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPark/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 IconPark: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 2C13.7834 2 15.3007 3.11465 15.9189 4.68359C18.1595 4.78893 19.9375 6.65284 19.9375 8.92871C19.9375 9.51849 19.8147 10.0792 19.5986 10.5898C20.4578 11.3676 21 12.4947 21 13.75C21 16.0933 19.1151 18 16.7812 18H12.5V21H15V22H9V21H11.5V18H7.21875C4.88486 18 3 16.0933 3 13.75C3 12.4954 3.54082 11.3677 4.39941 10.5898C4.18362 10.0791 4.06252 9.51789 4.0625 8.92871C4.0625 6.6535 5.83949 4.78992 8.0791 4.68359C8.6974 3.11421 10.2166 2 12 2Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPark;\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,cAAAE,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,EAAsCC,GAE/C,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,4bACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconPark_exports","__export","IconPark","IconPark_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPark","props","React","CentralIconBase","IconPark_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import C from"react";import{Svg as p}from"react-native-svg";var t=({children:o,size:r=24,...n})=>C.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:"M12 2C13.7834 2 15.3007 3.11465 15.9189 4.68359C18.1595 4.78893 19.9375 6.65284 19.9375 8.92871C19.9375 9.51849 19.8147 10.0792 19.5986 10.5898C20.4578 11.3676 21 12.4947 21 13.75C21 16.0933 19.1151 18 16.7812 18H12.5V21H15V22H9V21H11.5V18H7.21875C4.88486 18 3 16.0933 3 13.75C3 12.4954 3.54082 11.3677 4.39941 10.5898C4.18362 10.0791 4.06252 9.51789 4.0625 8.92871C4.0625 6.6535 5.83949 4.78992 8.0791 4.68359C8.6974 3.11421 10.2166 2 12 2Z",fill:"currentColor"})),x=l;export{l as IconPark,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPark/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 IconPark: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 2C13.7834 2 15.3007 3.11465 15.9189 4.68359C18.1595 4.78893 19.9375 6.65284 19.9375 8.92871C19.9375 9.51849 19.8147 10.0792 19.5986 10.5898C20.4578 11.3676 21 12.4947 21 13.75C21 16.0933 19.1151 18 16.7812 18H12.5V21H15V22H9V21H11.5V18H7.21875C4.88486 18 3 16.0933 3 13.75C3 12.4954 3.54082 11.3677 4.39941 10.5898C4.18362 10.0791 4.06252 9.51789 4.0625 8.92871C4.0625 6.6535 5.83949 4.78992 8.0791 4.68359C8.6974 3.11421 10.2166 2 12 2Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPark;\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,EAAsCC,GAE/CC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,4bACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPark","props","React","CentralIconBase","IconPark_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var i=Object.create;var n=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(C,r)=>{for(var o in r)n(C,o,{get:r[o],enumerable:!0})},m=(C,r,o,l)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of B(r))!x.call(C,t)&&t!==o&&n(C,t,{get:()=>r[t],enumerable:!(l=u(r,t))||l.enumerable});return C};var a=(C,r,o)=>(o=C!=null?i(I(C)):{},m(r||!C||!C.__esModule?n(o,"default",{value:C,enumerable:!0}):o,C)),g=C=>m(n({},"__esModule",{value:!0}),C);var L={};P(L,{IconShimmer:()=>c,default:()=>H});module.exports=g(L);var e=a(require("react"));var f=a(require("react")),s=require("react-native-svg"),V=({children:C,size:r=24,...o})=>f.default.createElement(s.Svg,{...o,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},C);var p=require("react-native-svg"),c=C=>e.default.createElement(V,{...C},e.default.createElement(p.Path,{d:"M21 10.5C21 11.2422 21.0023 11.6758 20.9287 12.083C20.7525 13.0581 20.2589 13.948 19.5254 14.6143C19.2191 14.8925 18.8501 15.1203 18.2207 15.5137L15.3086 17.334C14.6476 17.7471 14.3708 17.9223 14.1465 18.126C13.576 18.6441 13.1927 19.3364 13.0557 20.0947C13.0018 20.3929 13 20.7204 13 21.5V22H12V21.5C12 20.7578 11.9977 20.3242 12.0713 19.917C12.2475 18.9419 12.7411 18.052 13.4746 17.3857C13.781 17.1075 14.1499 16.8797 14.7793 16.4863L17.6914 14.666C18.3524 14.2529 18.6292 14.0777 18.8535 13.874C19.424 13.3559 19.8073 12.6636 19.9443 11.9053C19.9982 11.6071 20 11.2796 20 10.5V10H21V10.5Z",fill:"currentColor"}),e.default.createElement(p.Path,{d:"M16.5 6.75C16.5 7.49218 16.5023 7.92579 16.4287 8.33301C16.2525 9.30814 15.7589 10.198 15.0254 10.8643C14.7191 11.1425 14.3501 11.3703 13.7207 11.7637L10.8086 13.584C10.1476 13.9971 9.87078 14.1723 9.64649 14.376C9.07605 14.8941 8.69269 15.5864 8.55567 16.3447C8.5018 16.6429 8.50001 16.9704 8.50001 17.75V18.25H7.50001V17.75C7.50001 17.0078 7.49774 16.5742 7.5713 16.167C7.74748 15.1919 8.24109 14.302 8.97462 13.6357C9.28096 13.3575 9.64993 13.1297 10.2793 12.7363L13.1914 10.916C13.8524 10.5029 14.1292 10.3277 14.3535 10.124C14.924 9.60587 15.3073 8.91364 15.4443 8.15527C15.4982 7.85708 15.5 7.52964 15.5 6.75V6.25H16.5V6.75Z",fill:"currentColor"}),e.default.createElement(p.Path,{d:"M12 2.5C12 3.24218 12.0023 3.67579 11.9287 4.08301C11.7525 5.05814 11.2589 5.94804 10.5254 6.61426C10.2191 6.89247 9.85009 7.12031 9.22071 7.51367L6.3086 9.33398C5.64765 9.74708 5.37078 9.92227 5.14649 10.126C4.57605 10.6441 4.19269 11.3364 4.05567 12.0947C4.0018 12.3929 4.00001 12.7204 4.00001 13.5V14H3.00001V13.5C3.00001 12.7578 2.99774 12.3242 3.0713 11.917C3.24748 10.9419 3.74109 10.052 4.47462 9.38574C4.78096 9.10753 5.14993 8.87969 5.7793 8.48633L8.69141 6.66602C9.35237 6.25292 9.62923 6.07773 9.85352 5.87402C10.424 5.35587 10.8073 4.66364 10.9443 3.90527C10.9982 3.60708 11 3.27964 11 2.5V2H12V2.5Z",fill:"currentColor"})),H=c;0&&(module.exports={IconShimmer});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconShimmer/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 IconShimmer: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21 10.5C21 11.2422 21.0023 11.6758 20.9287 12.083C20.7525 13.0581 20.2589 13.948 19.5254 14.6143C19.2191 14.8925 18.8501 15.1203 18.2207 15.5137L15.3086 17.334C14.6476 17.7471 14.3708 17.9223 14.1465 18.126C13.576 18.6441 13.1927 19.3364 13.0557 20.0947C13.0018 20.3929 13 20.7204 13 21.5V22H12V21.5C12 20.7578 11.9977 20.3242 12.0713 19.917C12.2475 18.9419 12.7411 18.052 13.4746 17.3857C13.781 17.1075 14.1499 16.8797 14.7793 16.4863L17.6914 14.666C18.3524 14.2529 18.6292 14.0777 18.8535 13.874C19.424 13.3559 19.8073 12.6636 19.9443 11.9053C19.9982 11.6071 20 11.2796 20 10.5V10H21V10.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M16.5 6.75C16.5 7.49218 16.5023 7.92579 16.4287 8.33301C16.2525 9.30814 15.7589 10.198 15.0254 10.8643C14.7191 11.1425 14.3501 11.3703 13.7207 11.7637L10.8086 13.584C10.1476 13.9971 9.87078 14.1723 9.64649 14.376C9.07605 14.8941 8.69269 15.5864 8.55567 16.3447C8.5018 16.6429 8.50001 16.9704 8.50001 17.75V18.25H7.50001V17.75C7.50001 17.0078 7.49774 16.5742 7.5713 16.167C7.74748 15.1919 8.24109 14.302 8.97462 13.6357C9.28096 13.3575 9.64993 13.1297 10.2793 12.7363L13.1914 10.916C13.8524 10.5029 14.1292 10.3277 14.3535 10.124C14.924 9.60587 15.3073 8.91364 15.4443 8.15527C15.4982 7.85708 15.5 7.52964 15.5 6.75V6.25H16.5V6.75Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12 2.5C12 3.24218 12.0023 3.67579 11.9287 4.08301C11.7525 5.05814 11.2589 5.94804 10.5254 6.61426C10.2191 6.89247 9.85009 7.12031 9.22071 7.51367L6.3086 9.33398C5.64765 9.74708 5.37078 9.92227 5.14649 10.126C4.57605 10.6441 4.19269 11.3364 4.05567 12.0947C4.0018 12.3929 4.00001 12.7204 4.00001 13.5V14H3.00001V13.5C3.00001 12.7578 2.99774 12.3242 3.0713 11.917C3.24748 10.9419 3.74109 10.052 4.47462 9.38574C4.78096 9.10753 5.14993 8.87969 5.7793 8.48633L8.69141 6.66602C9.35237 6.25292 9.62923 6.07773 9.85352 5.87402C10.424 5.35587 10.8073 4.66364 10.9443 3.90527C10.9982 3.60708 11 3.27964 11 2.5V2H12V2.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconShimmer;\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,mlBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,ynBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,smBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconShimmer_exports","__export","IconShimmer","IconShimmer_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconShimmer","props","React","CentralIconBase","IconShimmer_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import p from"react";import{Svg as l}from"react-native-svg";var e=({children:o,size:C=24,...n})=>p.createElement(l,{...n,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 t}from"react-native-svg";var m=o=>r.createElement(e,{...o},r.createElement(t,{d:"M21 10.5C21 11.2422 21.0023 11.6758 20.9287 12.083C20.7525 13.0581 20.2589 13.948 19.5254 14.6143C19.2191 14.8925 18.8501 15.1203 18.2207 15.5137L15.3086 17.334C14.6476 17.7471 14.3708 17.9223 14.1465 18.126C13.576 18.6441 13.1927 19.3364 13.0557 20.0947C13.0018 20.3929 13 20.7204 13 21.5V22H12V21.5C12 20.7578 11.9977 20.3242 12.0713 19.917C12.2475 18.9419 12.7411 18.052 13.4746 17.3857C13.781 17.1075 14.1499 16.8797 14.7793 16.4863L17.6914 14.666C18.3524 14.2529 18.6292 14.0777 18.8535 13.874C19.424 13.3559 19.8073 12.6636 19.9443 11.9053C19.9982 11.6071 20 11.2796 20 10.5V10H21V10.5Z",fill:"currentColor"}),r.createElement(t,{d:"M16.5 6.75C16.5 7.49218 16.5023 7.92579 16.4287 8.33301C16.2525 9.30814 15.7589 10.198 15.0254 10.8643C14.7191 11.1425 14.3501 11.3703 13.7207 11.7637L10.8086 13.584C10.1476 13.9971 9.87078 14.1723 9.64649 14.376C9.07605 14.8941 8.69269 15.5864 8.55567 16.3447C8.5018 16.6429 8.50001 16.9704 8.50001 17.75V18.25H7.50001V17.75C7.50001 17.0078 7.49774 16.5742 7.5713 16.167C7.74748 15.1919 8.24109 14.302 8.97462 13.6357C9.28096 13.3575 9.64993 13.1297 10.2793 12.7363L13.1914 10.916C13.8524 10.5029 14.1292 10.3277 14.3535 10.124C14.924 9.60587 15.3073 8.91364 15.4443 8.15527C15.4982 7.85708 15.5 7.52964 15.5 6.75V6.25H16.5V6.75Z",fill:"currentColor"}),r.createElement(t,{d:"M12 2.5C12 3.24218 12.0023 3.67579 11.9287 4.08301C11.7525 5.05814 11.2589 5.94804 10.5254 6.61426C10.2191 6.89247 9.85009 7.12031 9.22071 7.51367L6.3086 9.33398C5.64765 9.74708 5.37078 9.92227 5.14649 10.126C4.57605 10.6441 4.19269 11.3364 4.05567 12.0947C4.0018 12.3929 4.00001 12.7204 4.00001 13.5V14H3.00001V13.5C3.00001 12.7578 2.99774 12.3242 3.0713 11.917C3.24748 10.9419 3.74109 10.052 4.47462 9.38574C4.78096 9.10753 5.14993 8.87969 5.7793 8.48633L8.69141 6.66602C9.35237 6.25292 9.62923 6.07773 9.85352 5.87402C10.424 5.35587 10.8073 4.66364 10.9443 3.90527C10.9982 3.60708 11 3.27964 11 2.5V2H12V2.5Z",fill:"currentColor"})),x=m;export{m as IconShimmer,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconShimmer/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 IconShimmer: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21 10.5C21 11.2422 21.0023 11.6758 20.9287 12.083C20.7525 13.0581 20.2589 13.948 19.5254 14.6143C19.2191 14.8925 18.8501 15.1203 18.2207 15.5137L15.3086 17.334C14.6476 17.7471 14.3708 17.9223 14.1465 18.126C13.576 18.6441 13.1927 19.3364 13.0557 20.0947C13.0018 20.3929 13 20.7204 13 21.5V22H12V21.5C12 20.7578 11.9977 20.3242 12.0713 19.917C12.2475 18.9419 12.7411 18.052 13.4746 17.3857C13.781 17.1075 14.1499 16.8797 14.7793 16.4863L17.6914 14.666C18.3524 14.2529 18.6292 14.0777 18.8535 13.874C19.424 13.3559 19.8073 12.6636 19.9443 11.9053C19.9982 11.6071 20 11.2796 20 10.5V10H21V10.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M16.5 6.75C16.5 7.49218 16.5023 7.92579 16.4287 8.33301C16.2525 9.30814 15.7589 10.198 15.0254 10.8643C14.7191 11.1425 14.3501 11.3703 13.7207 11.7637L10.8086 13.584C10.1476 13.9971 9.87078 14.1723 9.64649 14.376C9.07605 14.8941 8.69269 15.5864 8.55567 16.3447C8.5018 16.6429 8.50001 16.9704 8.50001 17.75V18.25H7.50001V17.75C7.50001 17.0078 7.49774 16.5742 7.5713 16.167C7.74748 15.1919 8.24109 14.302 8.97462 13.6357C9.28096 13.3575 9.64993 13.1297 10.2793 12.7363L13.1914 10.916C13.8524 10.5029 14.1292 10.3277 14.3535 10.124C14.924 9.60587 15.3073 8.91364 15.4443 8.15527C15.4982 7.85708 15.5 7.52964 15.5 6.75V6.25H16.5V6.75Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12 2.5C12 3.24218 12.0023 3.67579 11.9287 4.08301C11.7525 5.05814 11.2589 5.94804 10.5254 6.61426C10.2191 6.89247 9.85009 7.12031 9.22071 7.51367L6.3086 9.33398C5.64765 9.74708 5.37078 9.92227 5.14649 10.126C4.57605 10.6441 4.19269 11.3364 4.05567 12.0947C4.0018 12.3929 4.00001 12.7204 4.00001 13.5V14H3.00001V13.5C3.00001 12.7578 2.99774 12.3242 3.0713 11.917C3.24748 10.9419 3.74109 10.052 4.47462 9.38574C4.78096 9.10753 5.14993 8.87969 5.7793 8.48633L8.69141 6.66602C9.35237 6.25292 9.62923 6.07773 9.85352 5.87402C10.424 5.35587 10.8073 4.66364 10.9443 3.90527C10.9982 3.60708 11 3.27964 11 2.5V2H12V2.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconShimmer;\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,mlBACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,ynBACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,smBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconShimmer","props","React","CentralIconBase","IconShimmer_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var L=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var t in o)L(r,t,{get:o[t],enumerable:!0})},C=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let l of g(o))!I.call(r,l)&&l!==t&&L(r,l,{get:()=>o[l],enumerable:!(p=c(o,l))||p.enumerable});return r};var f=(r,o,t)=>(t=r!=null?u(B(r)):{},C(o||!r||!r.__esModule?L(t,"default",{value:r,enumerable:!0}):t,r)),x=r=>C(L({},"__esModule",{value:!0}),r);var h={};d(h,{IconSparkleHightlight:()=>s,default:()=>P});module.exports=x(h);var n=f(require("react"));var i=f(require("react")),m=require("react-native-svg"),a=({children:r,size:o=24,...t})=>i.default.createElement(m.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 e=require("react-native-svg"),s=r=>n.default.createElement(a,{...r},n.default.createElement(e.Path,{d:"M6.20703 18.5L2.5 22.207L1.79297 21.5L5.5 17.793L6.20703 18.5Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M22.207 21.5L21.5 22.207L17.793 18.5L18.5 17.793L22.207 21.5Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M15.3545 8.64453L21 11.1055V12.8945L15.3545 15.3545L12.8945 21H11.1055L8.64453 15.3545L3 12.8945V11.1055L8.64453 8.64453L11.1055 3H12.8945L15.3545 8.64453Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M6.20703 5.5L5.5 6.20703L1.79297 2.5L2.5 1.79297L6.20703 5.5Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M22.207 2.5L18.5 6.20703L17.793 5.5L21.5 1.79297L22.207 2.5Z",fill:"currentColor"})),P=s;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=\"M6.20703 18.5L2.5 22.207L1.79297 21.5L5.5 17.793L6.20703 18.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M22.207 21.5L21.5 22.207L17.793 18.5L18.5 17.793L22.207 21.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15.3545 8.64453L21 11.1055V12.8945L15.3545 15.3545L12.8945 21H11.1055L8.64453 15.3545L3 12.8945V11.1055L8.64453 8.64453L11.1055 3H12.8945L15.3545 8.64453Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M6.20703 5.5L5.5 6.20703L1.79297 2.5L2.5 1.79297L6.20703 5.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M22.207 2.5L18.5 6.20703L17.793 5.5L21.5 1.79297L22.207 2.5Z\"\n fill=\"currentColor\"\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,iEACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gEACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8JACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gEACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+DACF,KAAK,eACP,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 o from"react";import L from"react";import{Svg as p}from"react-native-svg";var e=({children:n,size:r=24,...l})=>L.createElement(p,{...l,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 t}from"react-native-svg";var C=n=>o.createElement(e,{...n},o.createElement(t,{d:"M6.20703 18.5L2.5 22.207L1.79297 21.5L5.5 17.793L6.20703 18.5Z",fill:"currentColor"}),o.createElement(t,{d:"M22.207 21.5L21.5 22.207L17.793 18.5L18.5 17.793L22.207 21.5Z",fill:"currentColor"}),o.createElement(t,{d:"M15.3545 8.64453L21 11.1055V12.8945L15.3545 15.3545L12.8945 21H11.1055L8.64453 15.3545L3 12.8945V11.1055L8.64453 8.64453L11.1055 3H12.8945L15.3545 8.64453Z",fill:"currentColor"}),o.createElement(t,{d:"M6.20703 5.5L5.5 6.20703L1.79297 2.5L2.5 1.79297L6.20703 5.5Z",fill:"currentColor"}),o.createElement(t,{d:"M22.207 2.5L18.5 6.20703L17.793 5.5L21.5 1.79297L22.207 2.5Z",fill:"currentColor"})),I=C;export{C as IconSparkleHightlight,I 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=\"M6.20703 18.5L2.5 22.207L1.79297 21.5L5.5 17.793L6.20703 18.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M22.207 21.5L21.5 22.207L17.793 18.5L18.5 17.793L22.207 21.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15.3545 8.64453L21 11.1055V12.8945L15.3545 15.3545L12.8945 21H11.1055L8.64453 15.3545L3 12.8945V11.1055L8.64453 8.64453L11.1055 3H12.8945L15.3545 8.64453Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M6.20703 5.5L5.5 6.20703L1.79297 2.5L2.5 1.79297L6.20703 5.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M22.207 2.5L18.5 6.20703L17.793 5.5L21.5 1.79297L22.207 2.5Z\"\n fill=\"currentColor\"\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,iEACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gEACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8JACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gEACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+DACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconSparkleHightlight","props","React","CentralIconBase","IconSparkleHightlight_default"]}
|
package/IconUnicorn/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var B=Object.create;var e=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)e(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of u(o))!P.call(r,n)&&n!==t&&e(r,n,{get:()=>o[n],enumerable:!(C=I(o,n))||C.enumerable});return r};var l=(r,o,t)=>(t=r!=null?B(x(r)):{},a(o||!r||!r.__esModule?e(t,"default",{value:r,enumerable:!0}):t,r)),L=r=>a(e({},"__esModule",{value:!0}),r);var h={};g(h,{IconUnicorn:()=>i,default:()=>v});module.exports=L(h);var p=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 f=require("react-native-svg"),i=r=>p.default.createElement(c,{...r},p.default.createElement(f.Path,{d:"M17 2.88184V6.73431L17.0069 6.74642L23.5 3.49988L18.8003 9.88476C19.5022 11.1131 20.343 12.2016 20.8488 13.4208C21.3962 14.7404 20.7905 16.1697 19.8627 17.256L19.3991 17.7989C19.0635 18.1918 18.5882 18.4489 18.0851 18.4318C17.9508 18.4272 17.8202 18.3848 17.6956 18.3343C14.9551 17.2224 13.948 16.4766 11.6468 15.4413C12.0182 17.2178 11.9249 19.1285 12.0266 20.9423L1 18.9999C1 12.8591 4
|
|
1
|
+
"use strict";var B=Object.create;var e=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)e(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of u(o))!P.call(r,n)&&n!==t&&e(r,n,{get:()=>o[n],enumerable:!(C=I(o,n))||C.enumerable});return r};var l=(r,o,t)=>(t=r!=null?B(x(r)):{},a(o||!r||!r.__esModule?e(t,"default",{value:r,enumerable:!0}):t,r)),L=r=>a(e({},"__esModule",{value:!0}),r);var h={};g(h,{IconUnicorn:()=>i,default:()=>v});module.exports=L(h);var p=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 f=require("react-native-svg"),i=r=>p.default.createElement(c,{...r},p.default.createElement(f.Path,{d:"M17 2.88184V6.73431L17.0069 6.74642L23.5 3.49988L18.8003 9.88476C19.5022 11.1131 20.343 12.2016 20.8488 13.4208C21.3962 14.7404 20.7905 16.1697 19.8627 17.256L19.3991 17.7989C19.0635 18.1918 18.5882 18.4489 18.0851 18.4318C17.9508 18.4272 17.8202 18.3848 17.6956 18.3343C14.9551 17.2224 13.948 16.4766 11.6468 15.4413C12.0182 17.2178 11.9249 19.1285 12.0266 20.9423L1 18.9999C1 12.8591 4 5.5 12.9849 4.88941L17 2.88184Z",fill:"currentColor"})),v=i;0&&(module.exports={IconUnicorn});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/IconUnicorn/index.js.map
CHANGED
|
@@ -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=\"M17 2.88184V6.73431L17.0069 6.74642L23.5 3.49988L18.8003 9.88476C19.5022 11.1131 20.343 12.2016 20.8488 13.4208C21.3962 14.7404 20.7905 16.1697 19.8627 17.256L19.3991 17.7989C19.0635 18.1918 18.5882 18.4489 18.0851 18.4318C17.9508 18.4272 17.8202 18.3848 17.6956 18.3343C14.9551 17.2224 13.948 16.4766 11.6468 15.4413C12.0182 17.2178 11.9249 19.1285 12.0266 20.9423L1 18.9999C1 12.8591 4
|
|
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=\"M17 2.88184V6.73431L17.0069 6.74642L23.5 3.49988L18.8003 9.88476C19.5022 11.1131 20.343 12.2016 20.8488 13.4208C21.3962 14.7404 20.7905 16.1697 19.8627 17.256L19.3991 17.7989C19.0635 18.1918 18.5882 18.4489 18.0851 18.4318C17.9508 18.4272 17.8202 18.3848 17.6956 18.3343C14.9551 17.2224 13.948 16.4766 11.6468 15.4413C12.0182 17.2178 11.9249 19.1285 12.0266 20.9423L1 18.9999C1 12.8591 4 5.5 12.9849 4.88941L17 2.88184Z\"\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,saACF,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"]}
|
package/IconUnicorn/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import n from"react";import p from"react";import{Svg as C}from"react-native-svg";var t=({children:o,size:r=24,...e})=>p.createElement(C,{...e,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=>n.createElement(t,{...o},n.createElement(a,{d:"M17 2.88184V6.73431L17.0069 6.74642L23.5 3.49988L18.8003 9.88476C19.5022 11.1131 20.343 12.2016 20.8488 13.4208C21.3962 14.7404 20.7905 16.1697 19.8627 17.256L19.3991 17.7989C19.0635 18.1918 18.5882 18.4489 18.0851 18.4318C17.9508 18.4272 17.8202 18.3848 17.6956 18.3343C14.9551 17.2224 13.948 16.4766 11.6468 15.4413C12.0182 17.2178 11.9249 19.1285 12.0266 20.9423L1 18.9999C1 12.8591 4
|
|
1
|
+
import n from"react";import p from"react";import{Svg as C}from"react-native-svg";var t=({children:o,size:r=24,...e})=>p.createElement(C,{...e,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=>n.createElement(t,{...o},n.createElement(a,{d:"M17 2.88184V6.73431L17.0069 6.74642L23.5 3.49988L18.8003 9.88476C19.5022 11.1131 20.343 12.2016 20.8488 13.4208C21.3962 14.7404 20.7905 16.1697 19.8627 17.256L19.3991 17.7989C19.0635 18.1918 18.5882 18.4489 18.0851 18.4318C17.9508 18.4272 17.8202 18.3848 17.6956 18.3343C14.9551 17.2224 13.948 16.4766 11.6468 15.4413C12.0182 17.2178 11.9249 19.1285 12.0266 20.9423L1 18.9999C1 12.8591 4 5.5 12.9849 4.88941L17 2.88184Z",fill:"currentColor"})),P=l;export{l as IconUnicorn,P 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=\"M17 2.88184V6.73431L17.0069 6.74642L23.5 3.49988L18.8003 9.88476C19.5022 11.1131 20.343 12.2016 20.8488 13.4208C21.3962 14.7404 20.7905 16.1697 19.8627 17.256L19.3991 17.7989C19.0635 18.1918 18.5882 18.4489 18.0851 18.4318C17.9508 18.4272 17.8202 18.3848 17.6956 18.3343C14.9551 17.2224 13.948 16.4766 11.6468 15.4413C12.0182 17.2178 11.9249 19.1285 12.0266 20.9423L1 18.9999C1 12.8591 4
|
|
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=\"M17 2.88184V6.73431L17.0069 6.74642L23.5 3.49988L18.8003 9.88476C19.5022 11.1131 20.343 12.2016 20.8488 13.4208C21.3962 14.7404 20.7905 16.1697 19.8627 17.256L19.3991 17.7989C19.0635 18.1918 18.5882 18.4489 18.0851 18.4318C17.9508 18.4272 17.8202 18.3848 17.6956 18.3343C14.9551 17.2224 13.948 16.4766 11.6468 15.4413C12.0182 17.2178 11.9249 19.1285 12.0266 20.9423L1 18.9999C1 12.8591 4 5.5 12.9849 4.88941L17 2.88184Z\"\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,saACF,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
|
|
@@ -695,6 +696,7 @@ Below is a complete list of available icons:
|
|
|
695
696
|
- IconSelectLassoDashed
|
|
696
697
|
- IconShaderEffect
|
|
697
698
|
- IconShaders
|
|
699
|
+
- IconShimmer
|
|
698
700
|
- IconSignature
|
|
699
701
|
- IconSlice
|
|
700
702
|
- IconSummary
|
|
@@ -1271,6 +1273,7 @@ Below is a complete list of available icons:
|
|
|
1271
1273
|
- IconHomeEnergy
|
|
1272
1274
|
- IconHomeEnergy2
|
|
1273
1275
|
- IconNuclearPowerPlant
|
|
1276
|
+
- IconPark
|
|
1274
1277
|
- IconPowerPlant
|
|
1275
1278
|
- IconPumpjack
|
|
1276
1279
|
- IconRainbow
|
|
@@ -1777,6 +1780,7 @@ Below is a complete list of available icons:
|
|
|
1777
1780
|
- IconBronceMedal
|
|
1778
1781
|
- IconBroom
|
|
1779
1782
|
- IconBuildingBlocks
|
|
1783
|
+
- IconBurst
|
|
1780
1784
|
- IconCap
|
|
1781
1785
|
- IconCelebrate
|
|
1782
1786
|
- IconCirclesThree
|
package/filtered-icons.json
CHANGED
|
@@ -4564,6 +4564,20 @@
|
|
|
4564
4564
|
"packageName": "square-filled-radius-0-stroke-1",
|
|
4565
4565
|
"componentName": "IconBurger"
|
|
4566
4566
|
},
|
|
4567
|
+
{
|
|
4568
|
+
"category": "Things",
|
|
4569
|
+
"svg": "<path d=\"M11.5 19H12.5V23H11.5V19ZM8.70703 16L4.5 20.207L3.79297 19.5L8 15.293L8.70703 16ZM20.207 19.5L19.5 20.207L15.293 16L16 15.293L20.207 19.5ZM5 11.5V12.5H1V11.5H5ZM23 11.5V12.5H19V11.5H23ZM8.70703 8L8 8.70703L3.79297 4.5L4.5 3.79297L8.70703 8ZM20.207 4.5L16 8.70703L15.293 8L19.5 3.79297L20.207 4.5ZM11.5 1H12.5V5H11.5V1Z\" fill=\"currentColor\"/>",
|
|
4570
|
+
"iconName": "burst, pop, boom",
|
|
4571
|
+
"variant": {
|
|
4572
|
+
"join": "square",
|
|
4573
|
+
"filled": "on",
|
|
4574
|
+
"radius": "0",
|
|
4575
|
+
"stroke": "1"
|
|
4576
|
+
},
|
|
4577
|
+
"createdAt": "2026-02-23T07:00:30.220608+00:00",
|
|
4578
|
+
"packageName": "square-filled-radius-0-stroke-1",
|
|
4579
|
+
"componentName": "IconBurst"
|
|
4580
|
+
},
|
|
4567
4581
|
{
|
|
4568
4582
|
"category": "Vehicles & Aircrafts",
|
|
4569
4583
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 3H3V7H1V8H3V11H21V8H23V7H21V3ZM9 5.4H15V4.6H9V5.4Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 12H3V21H7V19H17V21H21V12ZM9 16H6V15H9V16ZM15 16H18V15H15V16Z\" fill=\"currentColor\"/>",
|
|
@@ -12154,7 +12168,7 @@
|
|
|
12154
12168
|
},
|
|
12155
12169
|
{
|
|
12156
12170
|
"category": "Social Media & Brands",
|
|
12157
|
-
"svg": "<path d=\"
|
|
12171
|
+
"svg": "<path d=\"M12.1369 2C14.8367 2.00011 17.0911 2.99128 18.8273 4.60938L15.9641 7.47266C14.9187 6.49094 13.6095 5.98155 12.1369 5.98145C9.5402 5.98145 7.33274 7.73178 6.53921 10.0908V10.0996C5.29869 13.8213 8.01593 18.0273 12.1369 18.0273C14.6114 18.0273 17.0288 16.6458 17.5207 14.0547H12.1389V10.1816H21.5568C21.675 10.8362 21.7385 11.5184 21.7385 12.2275C21.7384 15.2729 20.6479 17.8366 18.757 19.582H18.7551L18.4377 19.8604C16.8159 21.2168 14.6682 21.9999 12.1369 22C8.22787 22 4.85463 19.7547 3.20913 16.4912V16.4766C1.79482 13.6817 1.7946 10.3141 3.2101 7.51953L3.20913 7.51855C4.85458 4.24582 8.22777 2 12.1369 2Z\" fill=\"currentColor\"/>",
|
|
12158
12172
|
"iconName": "google",
|
|
12159
12173
|
"variant": {
|
|
12160
12174
|
"join": "square",
|
|
@@ -17122,6 +17136,20 @@
|
|
|
17122
17136
|
"packageName": "square-filled-radius-0-stroke-1",
|
|
17123
17137
|
"componentName": "IconParasol"
|
|
17124
17138
|
},
|
|
17139
|
+
{
|
|
17140
|
+
"category": "Nature & Energy",
|
|
17141
|
+
"svg": "<path d=\"M12 2C13.7834 2 15.3007 3.11465 15.9189 4.68359C18.1595 4.78893 19.9375 6.65284 19.9375 8.92871C19.9375 9.51849 19.8147 10.0792 19.5986 10.5898C20.4578 11.3676 21 12.4947 21 13.75C21 16.0933 19.1151 18 16.7812 18H12.5V21H15V22H9V21H11.5V18H7.21875C4.88486 18 3 16.0933 3 13.75C3 12.4954 3.54082 11.3677 4.39941 10.5898C4.18362 10.0791 4.06252 9.51789 4.0625 8.92871C4.0625 6.6535 5.83949 4.78992 8.0791 4.68359C8.6974 3.11421 10.2166 2 12 2Z\" fill=\"currentColor\"/>",
|
|
17142
|
+
"iconName": "park, tree, nature",
|
|
17143
|
+
"variant": {
|
|
17144
|
+
"join": "square",
|
|
17145
|
+
"filled": "on",
|
|
17146
|
+
"radius": "0",
|
|
17147
|
+
"stroke": "1"
|
|
17148
|
+
},
|
|
17149
|
+
"createdAt": "2026-02-23T07:00:30.220608+00:00",
|
|
17150
|
+
"packageName": "square-filled-radius-0-stroke-1",
|
|
17151
|
+
"componentName": "IconPark"
|
|
17152
|
+
},
|
|
17125
17153
|
{
|
|
17126
17154
|
"category": "Security",
|
|
17127
17155
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18 11C16.3431 11 15 12.3431 15 14C15 15.2107 15.7172 16.254 16.75 16.728V20.5L18 21.5L19.25 20.5V19.427L18.5 18.75L19.25 18V16.728C20.2828 16.254 21 15.2107 21 14C21 12.3431 19.6569 11 18 11ZM17 14C17 13.4477 17.4477 13 18 13C18.5523 13 19 13.4477 19 14C19 14.5523 18.5523 15 18 15C17.4477 15 17 14.5523 17 14Z\" fill=\"currentColor\"/><path d=\"M12 2C9.51472 2 7.5 4.01472 7.5 6.5C7.5 8.98528 9.51472 11 12 11C14.4853 11 16.5 8.98528 16.5 6.5C16.5 4.01472 14.4853 2 12 2Z\" fill=\"currentColor\"/><path d=\"M15.7742 21L15.75 20.9806V17.3074C14.6948 16.5882 14 15.376 14 14C14 13.3972 14.1334 12.8255 14.3722 12.3129C13.6315 12.1091 12.8383 12 12.0008 12C7.24298 12 3.91741 15.5211 3.50515 19.9064L3.40234 21H15.7742Z\" fill=\"currentColor\"/>",
|
|
@@ -20300,6 +20328,20 @@
|
|
|
20300
20328
|
"packageName": "square-filled-radius-0-stroke-1",
|
|
20301
20329
|
"componentName": "IconShift"
|
|
20302
20330
|
},
|
|
20331
|
+
{
|
|
20332
|
+
"category": "Edit",
|
|
20333
|
+
"svg": "<path d=\"M21 10.5C21 11.2422 21.0023 11.6758 20.9287 12.083C20.7525 13.0581 20.2589 13.948 19.5254 14.6143C19.2191 14.8925 18.8501 15.1203 18.2207 15.5137L15.3086 17.334C14.6476 17.7471 14.3708 17.9223 14.1465 18.126C13.576 18.6441 13.1927 19.3364 13.0557 20.0947C13.0018 20.3929 13 20.7204 13 21.5V22H12V21.5C12 20.7578 11.9977 20.3242 12.0713 19.917C12.2475 18.9419 12.7411 18.052 13.4746 17.3857C13.781 17.1075 14.1499 16.8797 14.7793 16.4863L17.6914 14.666C18.3524 14.2529 18.6292 14.0777 18.8535 13.874C19.424 13.3559 19.8073 12.6636 19.9443 11.9053C19.9982 11.6071 20 11.2796 20 10.5V10H21V10.5Z\" fill=\"currentColor\"/><path d=\"M16.5 6.75C16.5 7.49218 16.5023 7.92579 16.4287 8.33301C16.2525 9.30814 15.7589 10.198 15.0254 10.8643C14.7191 11.1425 14.3501 11.3703 13.7207 11.7637L10.8086 13.584C10.1476 13.9971 9.87078 14.1723 9.64649 14.376C9.07605 14.8941 8.69269 15.5864 8.55567 16.3447C8.5018 16.6429 8.50001 16.9704 8.50001 17.75V18.25H7.50001V17.75C7.50001 17.0078 7.49774 16.5742 7.5713 16.167C7.74748 15.1919 8.24109 14.302 8.97462 13.6357C9.28096 13.3575 9.64993 13.1297 10.2793 12.7363L13.1914 10.916C13.8524 10.5029 14.1292 10.3277 14.3535 10.124C14.924 9.60587 15.3073 8.91364 15.4443 8.15527C15.4982 7.85708 15.5 7.52964 15.5 6.75V6.25H16.5V6.75Z\" fill=\"currentColor\"/><path d=\"M12 2.5C12 3.24218 12.0023 3.67579 11.9287 4.08301C11.7525 5.05814 11.2589 5.94804 10.5254 6.61426C10.2191 6.89247 9.85009 7.12031 9.22071 7.51367L6.3086 9.33398C5.64765 9.74708 5.37078 9.92227 5.14649 10.126C4.57605 10.6441 4.19269 11.3364 4.05567 12.0947C4.0018 12.3929 4.00001 12.7204 4.00001 13.5V14H3.00001V13.5C3.00001 12.7578 2.99774 12.3242 3.0713 11.917C3.24748 10.9419 3.74109 10.052 4.47462 9.38574C4.78096 9.10753 5.14993 8.87969 5.7793 8.48633L8.69141 6.66602C9.35237 6.25292 9.62923 6.07773 9.85352 5.87402C10.424 5.35587 10.8073 4.66364 10.9443 3.90527C10.9982 3.60708 11 3.27964 11 2.5V2H12V2.5Z\" fill=\"currentColor\"/>",
|
|
20334
|
+
"iconName": "shimmer, waves, shader, effect",
|
|
20335
|
+
"variant": {
|
|
20336
|
+
"join": "square",
|
|
20337
|
+
"filled": "on",
|
|
20338
|
+
"radius": "0",
|
|
20339
|
+
"stroke": "1"
|
|
20340
|
+
},
|
|
20341
|
+
"createdAt": "2026-02-23T07:00:30.220608+00:00",
|
|
20342
|
+
"packageName": "square-filled-radius-0-stroke-1",
|
|
20343
|
+
"componentName": "IconShimmer"
|
|
20344
|
+
},
|
|
20303
20345
|
{
|
|
20304
20346
|
"category": "Code",
|
|
20305
20347
|
"svg": "<path d=\"M11.9985 10.9861L2.99928 13.1175L3.05838 13.5654C3.34574 15.7427 3.87566 17.2815 5.25957 19.4077L1.90625 20.1137L2.11226 21.0923L7.24853 20.0109L11.9985 21.0109L16.7485 20.0109L21.8848 21.0923L22.0908 20.1137L18.7375 19.4077C20.1214 17.2815 20.6513 15.7427 20.9387 13.5654L20.9978 13.1175L11.9985 10.9861Z\" fill=\"currentColor\"/><path d=\"M9 2H15V6H19V11.6165L11.9995 9.9585L5 11.6163V6H9V2Z\" fill=\"currentColor\"/>",
|
|
@@ -21196,6 +21238,20 @@
|
|
|
21196
21238
|
"packageName": "square-filled-radius-0-stroke-1",
|
|
21197
21239
|
"componentName": "IconSparkleCentral"
|
|
21198
21240
|
},
|
|
21241
|
+
{
|
|
21242
|
+
"category": "AI & Magic",
|
|
21243
|
+
"svg": "<path d=\"M6.20703 18.5L2.5 22.207L1.79297 21.5L5.5 17.793L6.20703 18.5Z\" fill=\"currentColor\"/><path d=\"M22.207 21.5L21.5 22.207L17.793 18.5L18.5 17.793L22.207 21.5Z\" fill=\"currentColor\"/><path d=\"M15.3545 8.64453L21 11.1055V12.8945L15.3545 15.3545L12.8945 21H11.1055L8.64453 15.3545L3 12.8945V11.1055L8.64453 8.64453L11.1055 3H12.8945L15.3545 8.64453Z\" fill=\"currentColor\"/><path d=\"M6.20703 5.5L5.5 6.20703L1.79297 2.5L2.5 1.79297L6.20703 5.5Z\" fill=\"currentColor\"/><path d=\"M22.207 2.5L18.5 6.20703L17.793 5.5L21.5 1.79297L22.207 2.5Z\" fill=\"currentColor\"/>",
|
|
21244
|
+
"iconName": "sparkle-hightlight, special, ai, magic",
|
|
21245
|
+
"variant": {
|
|
21246
|
+
"join": "square",
|
|
21247
|
+
"filled": "on",
|
|
21248
|
+
"radius": "0",
|
|
21249
|
+
"stroke": "1"
|
|
21250
|
+
},
|
|
21251
|
+
"createdAt": "2026-02-19T12:00:51.458916+00:00",
|
|
21252
|
+
"packageName": "square-filled-radius-0-stroke-1",
|
|
21253
|
+
"componentName": "IconSparkleHightlight"
|
|
21254
|
+
},
|
|
21199
21255
|
{
|
|
21200
21256
|
"category": "AI & Magic",
|
|
21201
21257
|
"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\"/>",
|
|
@@ -23816,7 +23872,7 @@
|
|
|
23816
23872
|
},
|
|
23817
23873
|
{
|
|
23818
23874
|
"category": "Things",
|
|
23819
|
-
"svg": "<path d=\"M17 2.88184V6.73431L17.0069 6.74642L23.5 3.49988L18.8003 9.88476C19.5022 11.1131 20.343 12.2016 20.8488 13.4208C21.3962 14.7404 20.7905 16.1697 19.8627 17.256L19.3991 17.7989C19.0635 18.1918 18.5882 18.4489 18.0851 18.4318C17.9508 18.4272 17.8202 18.3848 17.6956 18.3343C14.9551 17.2224 13.948 16.4766 11.6468 15.4413C12.0182 17.2178 11.9249 19.1285 12.0266 20.9423L1 18.9999C1 12.8591 4
|
|
23875
|
+
"svg": "<path d=\"M17 2.88184V6.73431L17.0069 6.74642L23.5 3.49988L18.8003 9.88476C19.5022 11.1131 20.343 12.2016 20.8488 13.4208C21.3962 14.7404 20.7905 16.1697 19.8627 17.256L19.3991 17.7989C19.0635 18.1918 18.5882 18.4489 18.0851 18.4318C17.9508 18.4272 17.8202 18.3848 17.6956 18.3343C14.9551 17.2224 13.948 16.4766 11.6468 15.4413C12.0182 17.2178 11.9249 19.1285 12.0266 20.9423L1 18.9999C1 12.8591 4 5.5 12.9849 4.88941L17 2.88184Z\" fill=\"currentColor\"/>",
|
|
23820
23876
|
"iconName": "unicorn, startup, success",
|
|
23821
23877
|
"variant": {
|
|
23822
23878
|
"join": "square",
|
package/icons/index.d.ts
CHANGED
|
@@ -325,6 +325,7 @@ export type CentralIconName =
|
|
|
325
325
|
| "IconBulletList"
|
|
326
326
|
| "IconBun"
|
|
327
327
|
| "IconBurger"
|
|
328
|
+
| "IconBurst"
|
|
328
329
|
| "IconBus"
|
|
329
330
|
| "IconCabinet"
|
|
330
331
|
| "IconCalculator"
|
|
@@ -1222,6 +1223,7 @@ export type CentralIconName =
|
|
|
1222
1223
|
| "IconParachute"
|
|
1223
1224
|
| "IconParagraph"
|
|
1224
1225
|
| "IconParasol"
|
|
1226
|
+
| "IconPark"
|
|
1225
1227
|
| "IconPasskeys"
|
|
1226
1228
|
| "IconPassport"
|
|
1227
1229
|
| "IconPassword"
|
|
@@ -1449,6 +1451,7 @@ export type CentralIconName =
|
|
|
1449
1451
|
| "IconShieldCrossed"
|
|
1450
1452
|
| "IconShieldKeyhole"
|
|
1451
1453
|
| "IconShift"
|
|
1454
|
+
| "IconShimmer"
|
|
1452
1455
|
| "IconShip"
|
|
1453
1456
|
| "IconShipping"
|
|
1454
1457
|
| "IconShoppingBag1"
|
|
@@ -1513,6 +1516,7 @@ export type CentralIconName =
|
|
|
1513
1516
|
| "IconSparkle2"
|
|
1514
1517
|
| "IconSparkle3"
|
|
1515
1518
|
| "IconSparkleCentral"
|
|
1519
|
+
| "IconSparkleHightlight"
|
|
1516
1520
|
| "IconSparklesSoft"
|
|
1517
1521
|
| "IconSparklesThree"
|
|
1518
1522
|
| "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.
|
|
3
|
+
"version": "1.1.140",
|
|
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":
|
|
14
|
+
"totalIcons": 1823,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
|
-
"count":
|
|
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",
|
|
@@ -512,7 +513,7 @@
|
|
|
512
513
|
]
|
|
513
514
|
},
|
|
514
515
|
"Edit": {
|
|
515
|
-
"count":
|
|
516
|
+
"count": 87,
|
|
516
517
|
"icons": [
|
|
517
518
|
"Icon3d",
|
|
518
519
|
"IconAddKeyframe",
|
|
@@ -585,6 +586,7 @@
|
|
|
585
586
|
"IconSelectLassoDashed",
|
|
586
587
|
"IconShaderEffect",
|
|
587
588
|
"IconShaders",
|
|
589
|
+
"IconShimmer",
|
|
588
590
|
"IconSignature",
|
|
589
591
|
"IconSlice",
|
|
590
592
|
"IconSummary",
|
|
@@ -1174,7 +1176,7 @@
|
|
|
1174
1176
|
]
|
|
1175
1177
|
},
|
|
1176
1178
|
"Nature & Energy": {
|
|
1177
|
-
"count":
|
|
1179
|
+
"count": 20,
|
|
1178
1180
|
"icons": [
|
|
1179
1181
|
"IconAtom",
|
|
1180
1182
|
"IconBlossom",
|
|
@@ -1187,6 +1189,7 @@
|
|
|
1187
1189
|
"IconHomeEnergy",
|
|
1188
1190
|
"IconHomeEnergy2",
|
|
1189
1191
|
"IconNuclearPowerPlant",
|
|
1192
|
+
"IconPark",
|
|
1190
1193
|
"IconPowerPlant",
|
|
1191
1194
|
"IconPumpjack",
|
|
1192
1195
|
"IconRainbow",
|
|
@@ -1693,7 +1696,7 @@
|
|
|
1693
1696
|
]
|
|
1694
1697
|
},
|
|
1695
1698
|
"Things": {
|
|
1696
|
-
"count":
|
|
1699
|
+
"count": 126,
|
|
1697
1700
|
"icons": [
|
|
1698
1701
|
"IconAnvil",
|
|
1699
1702
|
"IconBackpack",
|
|
@@ -1711,6 +1714,7 @@
|
|
|
1711
1714
|
"IconBronceMedal",
|
|
1712
1715
|
"IconBroom",
|
|
1713
1716
|
"IconBuildingBlocks",
|
|
1717
|
+
"IconBurst",
|
|
1714
1718
|
"IconCap",
|
|
1715
1719
|
"IconCelebrate",
|
|
1716
1720
|
"IconCirclesThree",
|
|
@@ -2347,6 +2351,7 @@
|
|
|
2347
2351
|
"IconBulletList": "bullet-list",
|
|
2348
2352
|
"IconBun": "bun",
|
|
2349
2353
|
"IconBurger": "burger, hamburger, sandwich",
|
|
2354
|
+
"IconBurst": "burst, pop, boom",
|
|
2350
2355
|
"IconBus": "bus, school-bus",
|
|
2351
2356
|
"IconCabinet": "cabinet",
|
|
2352
2357
|
"IconCalculator": "calculator",
|
|
@@ -3244,6 +3249,7 @@
|
|
|
3244
3249
|
"IconParachute": "parachute, airdrop",
|
|
3245
3250
|
"IconParagraph": "paragraph",
|
|
3246
3251
|
"IconParasol": "parasol, umbrella, vacation",
|
|
3252
|
+
"IconPark": "park, tree, nature",
|
|
3247
3253
|
"IconPasskeys": "passkeys, passkey, passwordless",
|
|
3248
3254
|
"IconPassport": "passport, visa",
|
|
3249
3255
|
"IconPassword": "password, lock, protection",
|
|
@@ -3471,6 +3477,7 @@
|
|
|
3471
3477
|
"IconShieldCrossed": "shield-crossed, security, protection",
|
|
3472
3478
|
"IconShieldKeyhole": "shield-keyhole",
|
|
3473
3479
|
"IconShift": "shift",
|
|
3480
|
+
"IconShimmer": "shimmer, waves, shader, effect",
|
|
3474
3481
|
"IconShip": "ship, changelog",
|
|
3475
3482
|
"IconShipping": "shipping, truck, delivery",
|
|
3476
3483
|
"IconShoppingBag1": "shopping-bag-1",
|
|
@@ -3535,6 +3542,7 @@
|
|
|
3535
3542
|
"IconSparkle2": "sparkle-2, star, magic, ai",
|
|
3536
3543
|
"IconSparkle3": "sparkle-3, ai, star, magic",
|
|
3537
3544
|
"IconSparkleCentral": "sparkle-central, star, magic, ai",
|
|
3545
|
+
"IconSparkleHightlight": "sparkle-hightlight, special, ai, magic",
|
|
3538
3546
|
"IconSparklesSoft": "sparkles-soft",
|
|
3539
3547
|
"IconSparklesThree": "sparkles-three, ai 3 stars, sparkles, ✨",
|
|
3540
3548
|
"IconSparklesTwo": "sparkles-two, ai 2 stars, sparkles, ✨",
|
package/index.d.ts
CHANGED
|
@@ -324,6 +324,7 @@ export { IconBuildings, default as IconBuildingsDefault, } from "./IconBuildings
|
|
|
324
324
|
export { IconBulletList, default as IconBulletListDefault, } from "./IconBulletList";
|
|
325
325
|
export { IconBun, default as IconBunDefault } from "./IconBun";
|
|
326
326
|
export { IconBurger, default as IconBurgerDefault } from "./IconBurger";
|
|
327
|
+
export { IconBurst, default as IconBurstDefault } from "./IconBurst";
|
|
327
328
|
export { IconBus, default as IconBusDefault } from "./IconBus";
|
|
328
329
|
export { IconCabinet, default as IconCabinetDefault } from "./IconCabinet";
|
|
329
330
|
export { IconCalculator, default as IconCalculatorDefault, } from "./IconCalculator";
|
|
@@ -1221,6 +1222,7 @@ export { IconPaperclip3, default as IconPaperclip3Default, } from "./IconPapercl
|
|
|
1221
1222
|
export { IconParachute, default as IconParachuteDefault, } from "./IconParachute";
|
|
1222
1223
|
export { IconParagraph, default as IconParagraphDefault, } from "./IconParagraph";
|
|
1223
1224
|
export { IconParasol, default as IconParasolDefault } from "./IconParasol";
|
|
1225
|
+
export { IconPark, default as IconParkDefault } from "./IconPark";
|
|
1224
1226
|
export { IconPasskeys, default as IconPasskeysDefault } from "./IconPasskeys";
|
|
1225
1227
|
export { IconPassport, default as IconPassportDefault } from "./IconPassport";
|
|
1226
1228
|
export { IconPassword, default as IconPasswordDefault } from "./IconPassword";
|
|
@@ -1448,6 +1450,7 @@ export { IconShieldCode, default as IconShieldCodeDefault, } from "./IconShieldC
|
|
|
1448
1450
|
export { IconShieldCrossed, default as IconShieldCrossedDefault, } from "./IconShieldCrossed";
|
|
1449
1451
|
export { IconShieldKeyhole, default as IconShieldKeyholeDefault, } from "./IconShieldKeyhole";
|
|
1450
1452
|
export { IconShift, default as IconShiftDefault } from "./IconShift";
|
|
1453
|
+
export { IconShimmer, default as IconShimmerDefault } from "./IconShimmer";
|
|
1451
1454
|
export { IconShip, default as IconShipDefault } from "./IconShip";
|
|
1452
1455
|
export { IconShipping, default as IconShippingDefault } from "./IconShipping";
|
|
1453
1456
|
export { IconShoppingBag1, default as IconShoppingBag1Default, } from "./IconShoppingBag1";
|
|
@@ -1512,6 +1515,7 @@ export { IconSparkle, default as IconSparkleDefault } from "./IconSparkle";
|
|
|
1512
1515
|
export { IconSparkle2, default as IconSparkle2Default } from "./IconSparkle2";
|
|
1513
1516
|
export { IconSparkle3, default as IconSparkle3Default } from "./IconSparkle3";
|
|
1514
1517
|
export { IconSparkleCentral, default as IconSparkleCentralDefault, } from "./IconSparkleCentral";
|
|
1518
|
+
export { IconSparkleHightlight, default as IconSparkleHightlightDefault, } from "./IconSparkleHightlight";
|
|
1515
1519
|
export { IconSparklesSoft, default as IconSparklesSoftDefault, } from "./IconSparklesSoft";
|
|
1516
1520
|
export { IconSparklesThree, default as IconSparklesThreeDefault, } from "./IconSparklesThree";
|
|
1517
1521
|
export { IconSparklesTwo, default as IconSparklesTwoDefault, } from "./IconSparklesTwo";
|