@central-icons-react-native/round-filled-radius-0-stroke-1 1.1.260 → 1.1.261
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/IconTorch/index.d.ts +4 -0
- package/IconTorch/index.js +3 -0
- package/IconTorch/index.js.map +11 -0
- package/IconTorch/index.mjs +3 -0
- package/IconTorch/index.mjs.map +11 -0
- package/README.md +1 -0
- package/filtered-icons.json +1 -1
- package/icons/index.d.ts +1 -1
- package/icons/index.js +2 -2
- package/icons/index.js.map +3 -3
- package/icons/index.mjs +2 -2
- package/icons/index.mjs.map +3 -3
- package/icons-index.json +4 -4
- package/index.d.ts +1 -0
- package/index.js +3 -0
- package/index.mjs +1 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +2 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var g=Object.create;var{getPrototypeOf:h,defineProperty:t,getOwnPropertyNames:s,getOwnPropertyDescriptor:y}=Object,i=Object.prototype.hasOwnProperty;function u(r){return this[r]}var F,S,d=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var m=o?F??=new WeakMap:S??=new WeakMap,c=m.get(r);if(c)return c}e=r!=null?g(h(r)):{};let C=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let l of s(r))if(!i.call(C,l))t(C,l,{get:u.bind(r,l),enumerable:!0});if(n)m.set(r,C);return C},B=(r)=>{var o=(f??=new WeakMap).get(r),e;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of s(r))if(!i.call(o,n))t(o,n,{get:u.bind(r,n),enumerable:!(e=y(r,n))||e.enumerable})}return f.set(r,o),o},f;var b=(r)=>r;function M(r,o){this[r]=b.bind(null,o)}var I=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:M.bind(o,e)})};var Z={};I(Z,{CentralIconBase:()=>L});module.exports=B(Z);var v=d(require("react")),x=require("react-native-svg"),L=({children:r,size:o=24,...e})=>{return v.default.createElement(x.Svg,{...e,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var w={};I(w,{default:()=>$,IconTorch:()=>P});module.exports=B(w);var p=d(require("react"));var a=require("react-native-svg"),P=(r)=>{return p.default.createElement(L,{...r},p.default.createElement(a.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.9081 14.6153L18.579 14.9454C18.4939 15.0305 18.3807 15.0824 18.2606 15.0909L14.5683 15.3487L7.44032 22.4786C7.34674 22.5722 7.21911 22.6249 7.08681 22.6251C6.95433 22.6251 6.82606 22.5722 6.73232 22.4786L1.52138 17.2677C1.3262 17.0724 1.32622 16.7549 1.52138 16.5597L8.65028 9.43077L8.90907 5.73936C8.91757 5.61931 8.96949 5.50614 9.05458 5.42101L9.38368 5.09093L18.9081 14.6153ZM12.1034 11.8966C11.9082 11.7014 11.5916 11.7015 11.3964 11.8966L9.39638 13.8966C9.20118 14.0918 9.20118 14.4084 9.39638 14.6036C9.59165 14.7986 9.90823 14.7987 10.1034 14.6036L12.1034 12.6036C12.2984 12.4084 12.2984 12.0918 12.1034 11.8966Z",fill:"currentColor"}),p.default.createElement(a.Path,{d:"M13.2821 1.20714C13.4762 1.07913 13.7402 1.10083 13.911 1.27159L22.7284 10.089C22.8219 10.1827 22.8748 10.3101 22.8749 10.4425C22.8748 10.5749 22.822 10.7023 22.7284 10.796L19.6151 13.9083L10.0907 4.3839L13.204 1.27159L13.2821 1.20714Z",fill:"currentColor"}))},$=P;
|
|
2
|
+
|
|
3
|
+
//# debugId=6AF2E9DC05406D8264756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconTorch/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconTorch: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.9081 14.6153L18.579 14.9454C18.4939 15.0305 18.3807 15.0824 18.2606 15.0909L14.5683 15.3487L7.44032 22.4786C7.34674 22.5722 7.21911 22.6249 7.08681 22.6251C6.95433 22.6251 6.82606 22.5722 6.73232 22.4786L1.52138 17.2677C1.3262 17.0724 1.32622 16.7549 1.52138 16.5597L8.65028 9.43077L8.90907 5.73936C8.91757 5.61931 8.96949 5.50614 9.05458 5.42101L9.38368 5.09093L18.9081 14.6153ZM12.1034 11.8966C11.9082 11.7014 11.5916 11.7015 11.3964 11.8966L9.39638 13.8966C9.20118 14.0918 9.20118 14.4084 9.39638 14.6036C9.59165 14.7986 9.90823 14.7987 10.1034 14.6036L12.1034 12.6036C12.2984 12.4084 12.2984 12.0918 12.1034 11.8966Z\" fill=\"currentColor\"/><Path d=\"M13.2821 1.20714C13.4762 1.07913 13.7402 1.10083 13.911 1.27159L22.7284 10.089C22.8219 10.1827 22.8748 10.3101 22.8749 10.4425C22.8748 10.5749 22.822 10.7023 22.7284 10.796L19.6151 13.9083L10.0907 4.3839L13.204 1.27159L13.2821 1.20714Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconTorch;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,qECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAsC,CAAC,IAAU,CAC5D,OAAO,wBAA+9B,EAA/9B,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mnBAAmnB,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8OAA8O,KAAK,eAAc,CAAI,GAGz9B",
|
|
9
|
+
"debugId": "6AF2E9DC05406D8264756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as l}from"react-native-svg";var n=({children:o,size:r=24,...C})=>{return p.createElement(l,{...C,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import e from"react";import{Path as t}from"react-native-svg";var L=(o)=>{return e.createElement(n,{...o},e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.9081 14.6153L18.579 14.9454C18.4939 15.0305 18.3807 15.0824 18.2606 15.0909L14.5683 15.3487L7.44032 22.4786C7.34674 22.5722 7.21911 22.6249 7.08681 22.6251C6.95433 22.6251 6.82606 22.5722 6.73232 22.4786L1.52138 17.2677C1.3262 17.0724 1.32622 16.7549 1.52138 16.5597L8.65028 9.43077L8.90907 5.73936C8.91757 5.61931 8.96949 5.50614 9.05458 5.42101L9.38368 5.09093L18.9081 14.6153ZM12.1034 11.8966C11.9082 11.7014 11.5916 11.7015 11.3964 11.8966L9.39638 13.8966C9.20118 14.0918 9.20118 14.4084 9.39638 14.6036C9.59165 14.7986 9.90823 14.7987 10.1034 14.6036L12.1034 12.6036C12.2984 12.4084 12.2984 12.0918 12.1034 11.8966Z",fill:"currentColor"}),e.createElement(t,{d:"M13.2821 1.20714C13.4762 1.07913 13.7402 1.10083 13.911 1.27159L22.7284 10.089C22.8219 10.1827 22.8748 10.3101 22.8749 10.4425C22.8748 10.5749 22.822 10.7023 22.7284 10.796L19.6151 13.9083L10.0907 4.3839L13.204 1.27159L13.2821 1.20714Z",fill:"currentColor"}))},v=L;export{v as default,L as IconTorch};
|
|
2
|
+
|
|
3
|
+
//# debugId=5CF7A7F4D4919A7964756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconTorch/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconTorch: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.9081 14.6153L18.579 14.9454C18.4939 15.0305 18.3807 15.0824 18.2606 15.0909L14.5683 15.3487L7.44032 22.4786C7.34674 22.5722 7.21911 22.6249 7.08681 22.6251C6.95433 22.6251 6.82606 22.5722 6.73232 22.4786L1.52138 17.2677C1.3262 17.0724 1.32622 16.7549 1.52138 16.5597L8.65028 9.43077L8.90907 5.73936C8.91757 5.61931 8.96949 5.50614 9.05458 5.42101L9.38368 5.09093L18.9081 14.6153ZM12.1034 11.8966C11.9082 11.7014 11.5916 11.7015 11.3964 11.8966L9.39638 13.8966C9.20118 14.0918 9.20118 14.4084 9.39638 14.6036C9.59165 14.7986 9.90823 14.7987 10.1034 14.6036L12.1034 12.6036C12.2984 12.4084 12.2984 12.0918 12.1034 11.8966Z\" fill=\"currentColor\"/><Path d=\"M13.2821 1.20714C13.4762 1.07913 13.7402 1.10083 13.911 1.27159L22.7284 10.089C22.8219 10.1827 22.8748 10.3101 22.8749 10.4425C22.8748 10.5749 22.822 10.7023 22.7284 10.796L19.6151 13.9083L10.0907 4.3839L13.204 1.27159L13.2821 1.20714Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconTorch;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAsC,CAAC,IAAU,CAC5D,OAAO,gBAA+9B,EAA/9B,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mnBAAmnB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8OAA8O,KAAK,eAAc,CAAI,GAGz9B",
|
|
9
|
+
"debugId": "5CF7A7F4D4919A7964756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|