@central-icons-react-native/round-outlined-radius-3-stroke-1 1.1.214 → 1.1.216
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/IconArrowRotateClockwise/index.js +1 -1
- package/IconArrowRotateClockwise/index.js.map +1 -1
- package/IconArrowRotateClockwise/index.mjs +1 -1
- package/IconArrowRotateClockwise/index.mjs.map +1 -1
- package/IconCard/index.d.ts +4 -0
- package/IconCard/index.js +2 -0
- package/IconCard/index.js.map +1 -0
- package/IconCard/index.mjs +2 -0
- package/IconCard/index.mjs.map +1 -0
- package/IconMoonStar/index.js +1 -1
- package/IconMoonStar/index.js.map +1 -1
- package/IconMoonStar/index.mjs +1 -1
- package/IconMoonStar/index.mjs.map +1 -1
- package/README.md +1 -0
- package/filtered-icons.json +16 -2
- package/icons/index.d.ts +1 -0
- package/icons-index.json +5 -3
- package/index.d.ts +1 -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/skills/central-icons-react-native/SKILL.md +2 -1
- package/tsx-icons.json +9 -2
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var f=Object.create;var t=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,k=Object.prototype.hasOwnProperty;var x=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0})},a=(o,r,e,C)=>{if(r&&typeof r=="object"||typeof r=="function")for(let n of B(r))!k.call(o,n)&&n!==e&&t(o,n,{get:()=>r[n],enumerable:!(C=d(r,n))||C.enumerable});return o};var c=(o,r,e)=>(e=o!=null?f(I(o)):{},a(r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e,o)),P=o=>a(t({},"__esModule",{value:!0}),o);var v={};x(v,{IconArrowRotateClockwise:()=>u,default:()=>g});module.exports=P(v);var p=c(require("react"));var i=c(require("react")),l=require("react-native-svg"),m=({children:o,size:r=24,...e})=>i.default.createElement(l.Svg,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var s=require("react-native-svg"),u=o=>p.default.createElement(m,{...o},p.default.createElement(s.Path,{d:"M19 7.1988C17.0297 4.87481 15.041 3.5 11.9858 3.5C7.29142 3.5 3.48584 7.30558 3.48584 12C3.48584 16.6944 7.29142 20.5 11.9858 20.5C15.6868 20.5 18.8353 18.1347 20.0022 14.8333",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(s.Path,{d:"M19.5 3.75V6.75C19.5 7.30228 19.0523 7.75 18.5 7.75H15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),g=u;0&&(module.exports={IconArrowRotateClockwise});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconArrowRotateClockwise/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 IconArrowRotateClockwise: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"
|
|
1
|
+
{"version":3,"sources":["../src/IconArrowRotateClockwise/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 IconArrowRotateClockwise: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19 7.1988C17.0297 4.87481 15.041 3.5 11.9858 3.5C7.29142 3.5 3.48584 7.30558 3.48584 12C3.48584 16.6944 7.29142 20.5 11.9858 20.5C15.6868 20.5 18.8353 18.1347 20.0022 14.8333\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.5 3.75V6.75C19.5 7.30228 19.0523 7.75 18.5 7.75H15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowRotateClockwise;\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,8BAAAE,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,EAAsDC,GAE/D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,kLACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2DACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconArrowRotateClockwise_exports","__export","IconArrowRotateClockwise","IconArrowRotateClockwise_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconArrowRotateClockwise","props","React","CentralIconBase","IconArrowRotateClockwise_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
1
|
+
import e from"react";import s from"react";import{Svg as C}from"react-native-svg";var n=({children:r,size:o=24,...p})=>s.createElement(C,{...p,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 t}from"react-native-svg";var a=r=>e.createElement(n,{...r},e.createElement(t,{d:"M19 7.1988C17.0297 4.87481 15.041 3.5 11.9858 3.5C7.29142 3.5 3.48584 7.30558 3.48584 12C3.48584 16.6944 7.29142 20.5 11.9858 20.5C15.6868 20.5 18.8353 18.1347 20.0022 14.8333",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(t,{d:"M19.5 3.75V6.75C19.5 7.30228 19.0523 7.75 18.5 7.75H15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),k=a;export{a as IconArrowRotateClockwise,k as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconArrowRotateClockwise/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 IconArrowRotateClockwise: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"
|
|
1
|
+
{"version":3,"sources":["../src/IconArrowRotateClockwise/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 IconArrowRotateClockwise: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19 7.1988C17.0297 4.87481 15.041 3.5 11.9858 3.5C7.29142 3.5 3.48584 7.30558 3.48584 12C3.48584 16.6944 7.29142 20.5 11.9858 20.5C15.6868 20.5 18.8353 18.1347 20.0022 14.8333\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.5 3.75V6.75C19.5 7.30228 19.0523 7.75 18.5 7.75H15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowRotateClockwise;\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,EAAsDC,GAE/DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,kLACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2DACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconArrowRotateClockwise","props","React","CentralIconBase","IconArrowRotateClockwise_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var m=Object.create;var p=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var n in o)p(r,n,{get:o[n],enumerable:!0})},i=(r,o,n,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let C of f(o))!B.call(r,C)&&C!==n&&p(r,C,{get:()=>o[C],enumerable:!(s=k(o,C))||s.enumerable});return r};var u=(r,o,n)=>(n=r!=null?m(x(r)):{},i(o||!r||!r.__esModule?p(n,"default",{value:r,enumerable:!0}):n,r)),L=r=>i(p({},"__esModule",{value:!0}),r);var g={};I(g,{IconCard:()=>d,default:()=>P});module.exports=L(g);var e=u(require("react"));var a=u(require("react")),c=require("react-native-svg"),l=({children:r,size:o=24,...n})=>a.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 t=require("react-native-svg"),d=r=>e.default.createElement(l,{...r},e.default.createElement(t.Path,{d:"M4.5 7.3C4.5 5.61984 4.5 4.77976 4.82698 4.13803C5.1146 3.57354 5.57354 3.1146 6.13803 2.82698C6.77976 2.5 7.61984 2.5 9.3 2.5H14.7C16.3802 2.5 17.2202 2.5 17.862 2.82698C18.4265 3.1146 18.8854 3.57354 19.173 4.13803C19.5 4.77976 19.5 5.61984 19.5 7.3V16.7C19.5 18.3802 19.5 19.2202 19.173 19.862C18.8854 20.4265 18.4265 20.8854 17.862 21.173C17.2202 21.5 16.3802 21.5 14.7 21.5H9.3C7.61984 21.5 6.77976 21.5 6.13803 21.173C5.57354 20.8854 5.1146 20.4265 4.82698 19.862C4.5 19.2202 4.5 18.3802 4.5 16.7V7.3Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Circle,{cx:"12",cy:"9",r:"2.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M8.5 14.5H15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M8.5 17.5H15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),P=d;0&&(module.exports={IconCard});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCard/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconCard: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4.5 7.3C4.5 5.61984 4.5 4.77976 4.82698 4.13803C5.1146 3.57354 5.57354 3.1146 6.13803 2.82698C6.77976 2.5 7.61984 2.5 9.3 2.5H14.7C16.3802 2.5 17.2202 2.5 17.862 2.82698C18.4265 3.1146 18.8854 3.57354 19.173 4.13803C19.5 4.77976 19.5 5.61984 19.5 7.3V16.7C19.5 18.3802 19.5 19.2202 19.173 19.862C18.8854 20.4265 18.4265 20.8854 17.862 21.173C17.2202 21.5 16.3802 21.5 14.7 21.5H9.3C7.61984 21.5 6.77976 21.5 6.13803 21.173C5.57354 20.8854 5.1146 20.4265 4.82698 19.862C4.5 19.2202 4.5 18.3802 4.5 16.7V7.3Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"12\"\n cy=\"9\"\n r=\"2.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.5 14.5H15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.5 17.5H15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCard;\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,EAA6B,4BAEhBC,EAAsCC,GAE/C,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,8fACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,UACC,GAAG,KACH,GAAG,IACH,EAAE,MACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconCard_exports","__export","IconCard","IconCard_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCard","props","React","CentralIconBase","IconCard_default"]}
|
|
@@ -0,0 +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{Circle as i,Path as e}from"react-native-svg";var u=n=>o.createElement(t,{...n},o.createElement(e,{d:"M4.5 7.3C4.5 5.61984 4.5 4.77976 4.82698 4.13803C5.1146 3.57354 5.57354 3.1146 6.13803 2.82698C6.77976 2.5 7.61984 2.5 9.3 2.5H14.7C16.3802 2.5 17.2202 2.5 17.862 2.82698C18.4265 3.1146 18.8854 3.57354 19.173 4.13803C19.5 4.77976 19.5 5.61984 19.5 7.3V16.7C19.5 18.3802 19.5 19.2202 19.173 19.862C18.8854 20.4265 18.4265 20.8854 17.862 21.173C17.2202 21.5 16.3802 21.5 14.7 21.5H9.3C7.61984 21.5 6.77976 21.5 6.13803 21.173C5.57354 20.8854 5.1146 20.4265 4.82698 19.862C4.5 19.2202 4.5 18.3802 4.5 16.7V7.3Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(i,{cx:"12",cy:"9",r:"2.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M8.5 14.5H15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M8.5 17.5H15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),I=u;export{u as IconCard,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCard/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconCard: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4.5 7.3C4.5 5.61984 4.5 4.77976 4.82698 4.13803C5.1146 3.57354 5.57354 3.1146 6.13803 2.82698C6.77976 2.5 7.61984 2.5 9.3 2.5H14.7C16.3802 2.5 17.2202 2.5 17.862 2.82698C18.4265 3.1146 18.8854 3.57354 19.173 4.13803C19.5 4.77976 19.5 5.61984 19.5 7.3V16.7C19.5 18.3802 19.5 19.2202 19.173 19.862C18.8854 20.4265 18.4265 20.8854 17.862 21.173C17.2202 21.5 16.3802 21.5 14.7 21.5H9.3C7.61984 21.5 6.77976 21.5 6.13803 21.173C5.57354 20.8854 5.1146 20.4265 4.82698 19.862C4.5 19.2202 4.5 18.3802 4.5 16.7V7.3Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"12\"\n cy=\"9\"\n r=\"2.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.5 14.5H15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.5 17.5H15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCard;\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,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAAsCC,GAE/CC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,8fACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACJ,EAAA,CACC,GAAG,KACH,GAAG,IACH,EAAE,MACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAI,EAAA,cAACH,EAAA,CACC,EAAE,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconCard","props","React","CentralIconBase","IconCard_default"]}
|
package/IconMoonStar/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var f=Object.create;var n=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},s=(r,o,t,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of B(o))!x.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(a=i(o,e))||a.enumerable});return r};var m=(r,o,t)=>(t=r!=null?f(I(r)):{},s(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),d=r=>s(n({},"__esModule",{value:!0}),r);var v={};P(v,{IconMoonStar:()=>u,default:()=>g});module.exports=d(v);var C=m(require("react"));var l=m(require("react")),L=require("react-native-svg"),c=({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"),u=r=>C.default.createElement(c,{...r},C.default.createElement(p.Path,{d:"M21.5 11.9943C20.3396 12.9358 18.8607 13.5 17.25 13.5C13.5221 13.5 10.5 10.4779 10.5 6.75C10.5 5.13929 11.0642 3.66035 12.0057 2.5L12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C17.2467 21.5 21.5 17.2467 21.5 12L21.5 11.9943Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),C.default.createElement(p.Path,{d:"M18.3905 5.03518L17.9077 3.78C17.8428 3.61131 17.6807 3.5 17.5 3.5C17.3193 3.5 17.1572 3.61131 17.0923 3.78L16.6095 5.03518C16.508 5.29927 16.2993 5.50797 16.0352 5.60955L14.78 6.09231C14.6113 6.15719 14.5 6.31926 14.5 6.5C14.5 6.68074 14.6113 6.84281 14.78 6.90769L16.0352 7.39045C16.2993 7.49203 16.508 7.70073 16.6095 7.96482L17.0923 9.22C17.1572 9.38869 17.3193 9.5 17.5 9.5C17.6807 9.5 17.8428 9.38869 17.9077 9.22L18.3905 7.96482C18.492 7.70073 18.7007 7.49203 18.9648 7.39045L20.22 6.90769C20.3887 6.84281 20.5 6.68074 20.5 6.5C20.5 6.31926 20.3887 6.15719 20.22 6.09231L18.9648 5.60955C18.7007 5.50797 18.492 5.29927 18.3905 5.03518Z",stroke:"currentColor"})),g=u;0&&(module.exports={IconMoonStar});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconMoonStar/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 IconMoonStar: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n
|
|
1
|
+
{"version":3,"sources":["../src/IconMoonStar/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 IconMoonStar: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21.5 11.9943C20.3396 12.9358 18.8607 13.5 17.25 13.5C13.5221 13.5 10.5 10.4779 10.5 6.75C10.5 5.13929 11.0642 3.66035 12.0057 2.5L12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C17.2467 21.5 21.5 17.2467 21.5 12L21.5 11.9943Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M18.3905 5.03518L17.9077 3.78C17.8428 3.61131 17.6807 3.5 17.5 3.5C17.3193 3.5 17.1572 3.61131 17.0923 3.78L16.6095 5.03518C16.508 5.29927 16.2993 5.50797 16.0352 5.60955L14.78 6.09231C14.6113 6.15719 14.5 6.31926 14.5 6.5C14.5 6.68074 14.6113 6.84281 14.78 6.90769L16.0352 7.39045C16.2993 7.49203 16.508 7.70073 16.6095 7.96482L17.0923 9.22C17.1572 9.38869 17.3193 9.5 17.5 9.5C17.6807 9.5 17.8428 9.38869 17.9077 9.22L18.3905 7.96482C18.492 7.70073 18.7007 7.49203 18.9648 7.39045L20.22 6.90769C20.3887 6.84281 20.5 6.68074 20.5 6.5C20.5 6.31926 20.3887 6.15719 20.22 6.09231L18.9648 5.60955C18.7007 5.50797 18.492 5.29927 18.3905 5.03518Z\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMoonStar;\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,kBAAAE,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,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,4PACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,ooBACF,OAAO,eACT,CACF,EAIGE,EAAQJ","names":["IconMoonStar_exports","__export","IconMoonStar","IconMoonStar_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconMoonStar","props","React","CentralIconBase","IconMoonStar_default"]}
|
package/IconMoonStar/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
1
|
+
import t from"react";import p from"react";import{Svg as a}from"react-native-svg";var e=({children:o,size:r=24,...C})=>p.createElement(a,{...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 s=o=>t.createElement(e,{...o},t.createElement(n,{d:"M21.5 11.9943C20.3396 12.9358 18.8607 13.5 17.25 13.5C13.5221 13.5 10.5 10.4779 10.5 6.75C10.5 5.13929 11.0642 3.66035 12.0057 2.5L12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C17.2467 21.5 21.5 17.2467 21.5 12L21.5 11.9943Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement(n,{d:"M18.3905 5.03518L17.9077 3.78C17.8428 3.61131 17.6807 3.5 17.5 3.5C17.3193 3.5 17.1572 3.61131 17.0923 3.78L16.6095 5.03518C16.508 5.29927 16.2993 5.50797 16.0352 5.60955L14.78 6.09231C14.6113 6.15719 14.5 6.31926 14.5 6.5C14.5 6.68074 14.6113 6.84281 14.78 6.90769L16.0352 7.39045C16.2993 7.49203 16.508 7.70073 16.6095 7.96482L17.0923 9.22C17.1572 9.38869 17.3193 9.5 17.5 9.5C17.6807 9.5 17.8428 9.38869 17.9077 9.22L18.3905 7.96482C18.492 7.70073 18.7007 7.49203 18.9648 7.39045L20.22 6.90769C20.3887 6.84281 20.5 6.68074 20.5 6.5C20.5 6.31926 20.3887 6.15719 20.22 6.09231L18.9648 5.60955C18.7007 5.50797 18.492 5.29927 18.3905 5.03518Z",stroke:"currentColor"})),x=s;export{s as IconMoonStar,x as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconMoonStar/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 IconMoonStar: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n
|
|
1
|
+
{"version":3,"sources":["../src/IconMoonStar/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 IconMoonStar: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21.5 11.9943C20.3396 12.9358 18.8607 13.5 17.25 13.5C13.5221 13.5 10.5 10.4779 10.5 6.75C10.5 5.13929 11.0642 3.66035 12.0057 2.5L12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C17.2467 21.5 21.5 17.2467 21.5 12L21.5 11.9943Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M18.3905 5.03518L17.9077 3.78C17.8428 3.61131 17.6807 3.5 17.5 3.5C17.3193 3.5 17.1572 3.61131 17.0923 3.78L16.6095 5.03518C16.508 5.29927 16.2993 5.50797 16.0352 5.60955L14.78 6.09231C14.6113 6.15719 14.5 6.31926 14.5 6.5C14.5 6.68074 14.6113 6.84281 14.78 6.90769L16.0352 7.39045C16.2993 7.49203 16.508 7.70073 16.6095 7.96482L17.0923 9.22C17.1572 9.38869 17.3193 9.5 17.5 9.5C17.6807 9.5 17.8428 9.38869 17.9077 9.22L18.3905 7.96482C18.492 7.70073 18.7007 7.49203 18.9648 7.39045L20.22 6.90769C20.3887 6.84281 20.5 6.68074 20.5 6.5C20.5 6.31926 20.3887 6.15719 20.22 6.09231L18.9648 5.60955C18.7007 5.50797 18.492 5.29927 18.3905 5.03518Z\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMoonStar;\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,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,4PACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,ooBACF,OAAO,eACT,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconMoonStar","props","React","CentralIconBase","IconMoonStar_default"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -1780,7 +1780,7 @@
|
|
|
1780
1780
|
},
|
|
1781
1781
|
{
|
|
1782
1782
|
"category": "Arrows",
|
|
1783
|
-
"svg": "<path d=\"
|
|
1783
|
+
"svg": "<path d=\"M19 7.1988C17.0297 4.87481 15.041 3.5 11.9858 3.5C7.29142 3.5 3.48584 7.30558 3.48584 12C3.48584 16.6944 7.29142 20.5 11.9858 20.5C15.6868 20.5 18.8353 18.1347 20.0022 14.8333\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.5 3.75V6.75C19.5 7.30228 19.0523 7.75 18.5 7.75H15.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1784
1784
|
"iconName": "arrow-rotate-clockwise, rotate-right",
|
|
1785
1785
|
"variant": {
|
|
1786
1786
|
"join": "round",
|
|
@@ -5768,6 +5768,20 @@
|
|
|
5768
5768
|
"packageName": "round-outlined-radius-3-stroke-1",
|
|
5769
5769
|
"componentName": "IconCar9Ev"
|
|
5770
5770
|
},
|
|
5771
|
+
{
|
|
5772
|
+
"category": "Interface General",
|
|
5773
|
+
"svg": "<path d=\"M4.5 7.3C4.5 5.61984 4.5 4.77976 4.82698 4.13803C5.1146 3.57354 5.57354 3.1146 6.13803 2.82698C6.77976 2.5 7.61984 2.5 9.3 2.5H14.7C16.3802 2.5 17.2202 2.5 17.862 2.82698C18.4265 3.1146 18.8854 3.57354 19.173 4.13803C19.5 4.77976 19.5 5.61984 19.5 7.3V16.7C19.5 18.3802 19.5 19.2202 19.173 19.862C18.8854 20.4265 18.4265 20.8854 17.862 21.173C17.2202 21.5 16.3802 21.5 14.7 21.5H9.3C7.61984 21.5 6.77976 21.5 6.13803 21.173C5.57354 20.8854 5.1146 20.4265 4.82698 19.862C4.5 19.2202 4.5 18.3802 4.5 16.7V7.3Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"12\" cy=\"9\" r=\"2.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.5 14.5H15.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.5 17.5H15.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
5774
|
+
"iconName": "card, profile, avatar, account",
|
|
5775
|
+
"variant": {
|
|
5776
|
+
"join": "round",
|
|
5777
|
+
"filled": "off",
|
|
5778
|
+
"radius": "3",
|
|
5779
|
+
"stroke": "1"
|
|
5780
|
+
},
|
|
5781
|
+
"createdAt": "2026-04-27T10:02:27.997505+00:00",
|
|
5782
|
+
"packageName": "round-outlined-radius-3-stroke-1",
|
|
5783
|
+
"componentName": "IconCard"
|
|
5784
|
+
},
|
|
5771
5785
|
{
|
|
5772
5786
|
"category": "Vehicles & Aircrafts",
|
|
5773
5787
|
"svg": "<path d=\"M3.5 19.5C2.94772 19.5 2.5 19.0523 2.5 18.5V11.4083C2.5 10.8161 2.67531 10.237 3.00385 9.74423L5.6094 5.8359C6.1658 5.0013 7.10249 4.5 8.10555 4.5H15.8944C16.8975 4.5 17.8342 5.0013 18.3906 5.8359L20.9962 9.74423C21.3247 10.237 21.5 10.8161 21.5 11.4083V18.5C21.5 19.0523 21.0523 19.5 20.5 19.5H18.5C17.9477 19.5 17.5 19.0523 17.5 18.5V17.5H6.5V18.5C6.5 19.0523 6.05228 19.5 5.5 19.5H3.5Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M1.5 10.5H2.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21.5 10.5H22.4999\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5.5 13.5H7.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.5 13.5H18.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -16606,7 +16620,7 @@
|
|
|
16606
16620
|
},
|
|
16607
16621
|
{
|
|
16608
16622
|
"category": "Weather",
|
|
16609
|
-
"svg": "<path
|
|
16623
|
+
"svg": "<path d=\"M21.5 11.9943C20.3396 12.9358 18.8607 13.5 17.25 13.5C13.5221 13.5 10.5 10.4779 10.5 6.75C10.5 5.13929 11.0642 3.66035 12.0057 2.5L12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C17.2467 21.5 21.5 17.2467 21.5 12L21.5 11.9943Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18.3905 5.03518L17.9077 3.78C17.8428 3.61131 17.6807 3.5 17.5 3.5C17.3193 3.5 17.1572 3.61131 17.0923 3.78L16.6095 5.03518C16.508 5.29927 16.2993 5.50797 16.0352 5.60955L14.78 6.09231C14.6113 6.15719 14.5 6.31926 14.5 6.5C14.5 6.68074 14.6113 6.84281 14.78 6.90769L16.0352 7.39045C16.2993 7.49203 16.508 7.70073 16.6095 7.96482L17.0923 9.22C17.1572 9.38869 17.3193 9.5 17.5 9.5C17.6807 9.5 17.8428 9.38869 17.9077 9.22L18.3905 7.96482C18.492 7.70073 18.7007 7.49203 18.9648 7.39045L20.22 6.90769C20.3887 6.84281 20.5 6.68074 20.5 6.5C20.5 6.31926 20.3887 6.15719 20.22 6.09231L18.9648 5.60955C18.7007 5.50797 18.492 5.29927 18.3905 5.03518Z\" stroke=\"currentColor\"/>",
|
|
16610
16624
|
"iconName": "moon-star, night",
|
|
16611
16625
|
"variant": {
|
|
16612
16626
|
"join": "round",
|
package/icons/index.d.ts
CHANGED
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-3-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.216",
|
|
4
4
|
"style": "round-outlined-radius-3-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-3-stroke-1/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1977,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 85,
|
|
@@ -951,7 +951,7 @@
|
|
|
951
951
|
]
|
|
952
952
|
},
|
|
953
953
|
"Interface General": {
|
|
954
|
-
"count":
|
|
954
|
+
"count": 199,
|
|
955
955
|
"icons": [
|
|
956
956
|
"IconAnchor1",
|
|
957
957
|
"IconAnchor2",
|
|
@@ -992,6 +992,7 @@
|
|
|
992
992
|
"IconBrokenHeart",
|
|
993
993
|
"IconBrowserTabs",
|
|
994
994
|
"IconBucket",
|
|
995
|
+
"IconCard",
|
|
995
996
|
"IconChainLink1",
|
|
996
997
|
"IconChainLink2",
|
|
997
998
|
"IconChainLink3",
|
|
@@ -2589,6 +2590,7 @@
|
|
|
2589
2590
|
"IconCar8Ev": "car-8-ev, mini-van",
|
|
2590
2591
|
"IconCar9": "car-9, van",
|
|
2591
2592
|
"IconCar9Ev": "car-9-ev, van",
|
|
2593
|
+
"IconCard": "card, profile, avatar, account",
|
|
2592
2594
|
"IconCarFrontView": "car-front-view",
|
|
2593
2595
|
"IconCarTaxi": "car-taxi, uber",
|
|
2594
2596
|
"IconCarussel": "carussel, slides",
|
package/index.d.ts
CHANGED
|
@@ -412,6 +412,7 @@ export { IconCar9, default as IconCar9Default } from "./IconCar9";
|
|
|
412
412
|
export { IconCar9Ev, default as IconCar9EvDefault } from "./IconCar9Ev";
|
|
413
413
|
export { IconCarFrontView, default as IconCarFrontViewDefault, } from "./IconCarFrontView";
|
|
414
414
|
export { IconCarTaxi, default as IconCarTaxiDefault } from "./IconCarTaxi";
|
|
415
|
+
export { IconCard, default as IconCardDefault } from "./IconCard";
|
|
415
416
|
export { IconCarussel, default as IconCarusselDefault } from "./IconCarussel";
|
|
416
417
|
export { IconCash, default as IconCashDefault } from "./IconCash";
|
|
417
418
|
export { IconCat, default as IconCatDefault } from "./IconCat";
|