@central-icons-react-native/round-filled-radius-2-stroke-1 1.1.271 → 1.1.273
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/IconPrinter2/index.d.ts +4 -0
- package/IconPrinter2/index.js +3 -0
- package/IconPrinter2/index.js.map +11 -0
- package/IconPrinter2/index.mjs +3 -0
- package/IconPrinter2/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 x=Object.create;var{getPrototypeOf:g,defineProperty:t,getOwnPropertyNames:i,getOwnPropertyDescriptor:h}=Object,u=Object.prototype.hasOwnProperty;function H(r){return this[r]}var y,F,V=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var f=o?y??=new WeakMap:F??=new WeakMap,s=f.get(r);if(s)return s}e=r!=null?x(g(r)):{};let C=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let l of i(r))if(!u.call(C,l))t(C,l,{get:H.bind(r,l),enumerable:!0});if(n)f.set(r,C);return C},d=(r)=>{var o=(c??=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 i(r))if(!u.call(o,n))t(o,n,{get:H.bind(r,n),enumerable:!(e=h(r,n))||e.enumerable})}return c.set(r,o),o},c;var M=(r)=>r;function S(r,o){this[r]=M.bind(null,o)}var B=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:S.bind(o,e)})};var Z={};B(Z,{CentralIconBase:()=>a});module.exports=d(Z);var I=V(require("react")),P=require("react-native-svg"),a=({children:r,size:o=24,...e})=>{return I.default.createElement(P.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 b={};B(b,{default:()=>w,IconPrinter2:()=>v});module.exports=d(b);var p=V(require("react"));var m=require("react-native-svg"),v=(r)=>{return p.default.createElement(a,{...r},p.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M14.5 8C15.8807 8 17 9.11929 17 10.5V18.5C17 19.8807 15.8807 21 14.5 21H9.5C8.11929 21 7 19.8807 7 18.5V10.5C7 9.11929 8.11929 8 9.5 8H14.5ZM10 16H12.5V15H10V16ZM10 12H14V11H10V12Z",fill:"currentColor"}),p.default.createElement(m.Path,{d:"M19 3C20.6569 3 22 4.34315 22 6V9C22 10.6569 20.6569 12 19 12H18V10.5C18 8.567 16.433 7 14.5 7H9.5C7.567 7 6 8.567 6 10.5V12H5C3.34315 12 2 10.6569 2 9V6C2 4.34315 3.34315 3 5 3H19Z",fill:"currentColor"}))},w=v;
|
|
2
|
+
|
|
3
|
+
//# debugId=F506BAD8B8F5E25664756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconPrinter2/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 IconPrinter2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M14.5 8C15.8807 8 17 9.11929 17 10.5V18.5C17 19.8807 15.8807 21 14.5 21H9.5C8.11929 21 7 19.8807 7 18.5V10.5C7 9.11929 8.11929 8 9.5 8H14.5ZM10 16H12.5V15H10V16ZM10 12H14V11H10V12Z\" fill=\"currentColor\"/><Path d=\"M19 3C20.6569 3 22 4.34315 22 6V9C22 10.6569 20.6569 12 19 12H18V10.5C18 8.567 16.433 7 14.5 7H9.5C7.567 7 6 8.567 6 10.5V12H5C3.34315 12 2 10.6569 2 9V6C2 4.34315 3.34315 3 5 3H19Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPrinter2;\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,wECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAyC,CAAC,IAAU,CAC/D,OAAO,wBAA6e,EAA7e,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,uLAAuL,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,wLAAwL,KAAK,eAAc,CAAI,GAGve",
|
|
9
|
+
"debugId": "F506BAD8B8F5E25664756E2164756E21",
|
|
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 a=(o)=>{return e.createElement(n,{...o},e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M14.5 8C15.8807 8 17 9.11929 17 10.5V18.5C17 19.8807 15.8807 21 14.5 21H9.5C8.11929 21 7 19.8807 7 18.5V10.5C7 9.11929 8.11929 8 9.5 8H14.5ZM10 16H12.5V15H10V16ZM10 12H14V11H10V12Z",fill:"currentColor"}),e.createElement(t,{d:"M19 3C20.6569 3 22 4.34315 22 6V9C22 10.6569 20.6569 12 19 12H18V10.5C18 8.567 16.433 7 14.5 7H9.5C7.567 7 6 8.567 6 10.5V12H5C3.34315 12 2 10.6569 2 9V6C2 4.34315 3.34315 3 5 3H19Z",fill:"currentColor"}))},I=a;export{I as default,a as IconPrinter2};
|
|
2
|
+
|
|
3
|
+
//# debugId=222C5AB16DD3AFFC64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconPrinter2/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 IconPrinter2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M14.5 8C15.8807 8 17 9.11929 17 10.5V18.5C17 19.8807 15.8807 21 14.5 21H9.5C8.11929 21 7 19.8807 7 18.5V10.5C7 9.11929 8.11929 8 9.5 8H14.5ZM10 16H12.5V15H10V16ZM10 12H14V11H10V12Z\" fill=\"currentColor\"/><Path d=\"M19 3C20.6569 3 22 4.34315 22 6V9C22 10.6569 20.6569 12 19 12H18V10.5C18 8.567 16.433 7 14.5 7H9.5C7.567 7 6 8.567 6 10.5V12H5C3.34315 12 2 10.6569 2 9V6C2 4.34315 3.34315 3 5 3H19Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPrinter2;\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,EAAyC,CAAC,IAAU,CAC/D,OAAO,gBAA6e,EAA7e,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,uLAAuL,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wLAAwL,KAAK,eAAc,CAAI,GAGve",
|
|
9
|
+
"debugId": "222C5AB16DD3AFFC64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|