@central-icons-react-native/round-filled-radius-3-stroke-2 1.1.272 → 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.
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconPrinter2: FC<CentralIconBaseProps>;
4
+ export default IconPrinter2;
@@ -0,0 +1,3 @@
1
+ var g=Object.create;var{getPrototypeOf:V,defineProperty:n,getOwnPropertyNames:i,getOwnPropertyDescriptor:h}=Object,u=Object.prototype.hasOwnProperty;function d(r){return this[r]}var y,F,B=(r,o,e)=>{var C=r!=null&&typeof r==="object";if(C){var f=o?y??=new WeakMap:F??=new WeakMap,s=f.get(r);if(s)return s}e=r!=null?g(V(r)):{};let t=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let l of i(r))if(!u.call(t,l))n(t,l,{get:d.bind(r,l),enumerable:!0});if(C)f.set(r,t);return t},H=(r)=>{var o=(c??=new WeakMap).get(r),e;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var C of i(r))if(!u.call(o,C))n(o,C,{get:d.bind(r,C),enumerable:!(e=h(r,C))||e.enumerable})}return c.set(r,o),o},c;var M=(r)=>r;function S(r,o){this[r]=M.bind(null,o)}var I=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:S.bind(o,e)})};var Z={};I(Z,{CentralIconBase:()=>a});module.exports=H(Z);var P=B(require("react")),v=require("react-native-svg"),a=({children:r,size:o=24,...e})=>{return P.default.createElement(v.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={};I(b,{default:()=>w,IconPrinter2:()=>x});module.exports=H(b);var p=B(require("react"));var m=require("react-native-svg"),x=(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.5 15C9.94772 15 9.5 15.4477 9.5 16C9.5 16.5523 9.94772 17 10.5 17H12C12.5523 17 13 16.5523 13 16C13 15.4477 12.5523 15 12 15H10.5ZM10.5 11C9.94772 11 9.5 11.4477 9.5 12C9.5 12.5523 9.94772 13 10.5 13H13.5C14.0523 13 14.5 12.5523 14.5 12C14.5 11.4477 14.0523 11 13.5 11H10.5Z",fill:"currentColor"}),p.default.createElement(m.Path,{d:"M18 3C20.2091 3 22 4.79086 22 7V10C22 11.6569 20.6569 13 19 13V10.5C19 8.01472 16.9853 6 14.5 6H9.5C7.01472 6 5 8.01472 5 10.5V13C3.34315 13 2 11.6569 2 10V7C2 4.79086 3.79086 3 6 3H18Z",fill:"currentColor"}))},w=x;
2
+
3
+ //# debugId=C22641B31C1F190664756E2164756E21
@@ -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.5 15C9.94772 15 9.5 15.4477 9.5 16C9.5 16.5523 9.94772 17 10.5 17H12C12.5523 17 13 16.5523 13 16C13 15.4477 12.5523 15 12 15H10.5ZM10.5 11C9.94772 11 9.5 11.4477 9.5 12C9.5 12.5523 9.94772 13 10.5 13H13.5C14.0523 13 14.5 12.5523 14.5 12C14.5 11.4477 14.0523 11 13.5 11H10.5Z\" fill=\"currentColor\"/><Path d=\"M18 3C20.2091 3 22 4.79086 22 7V10C22 11.6569 20.6569 13 19 13V10.5C19 8.01472 16.9853 6 14.5 6H9.5C7.01472 6 5 8.01472 5 10.5V13C3.34315 13 2 11.6569 2 10V7C2 4.79086 3.79086 3 6 3H18Z\" 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,wBAA+tB,EAA/tB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qaAAqa,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,4LAA4L,KAAK,eAAc,CAAI,GAGztB",
9
+ "debugId": "C22641B31C1F190664756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import p from"react";import{Svg as l}from"react-native-svg";var C=({children:o,size:r=24,...t})=>{return p.createElement(l,{...t,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 n}from"react-native-svg";var a=(o)=>{return e.createElement(C,{...o},e.createElement(n,{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.5 15C9.94772 15 9.5 15.4477 9.5 16C9.5 16.5523 9.94772 17 10.5 17H12C12.5523 17 13 16.5523 13 16C13 15.4477 12.5523 15 12 15H10.5ZM10.5 11C9.94772 11 9.5 11.4477 9.5 12C9.5 12.5523 9.94772 13 10.5 13H13.5C14.0523 13 14.5 12.5523 14.5 12C14.5 11.4477 14.0523 11 13.5 11H10.5Z",fill:"currentColor"}),e.createElement(n,{d:"M18 3C20.2091 3 22 4.79086 22 7V10C22 11.6569 20.6569 13 19 13V10.5C19 8.01472 16.9853 6 14.5 6H9.5C7.01472 6 5 8.01472 5 10.5V13C3.34315 13 2 11.6569 2 10V7C2 4.79086 3.79086 3 6 3H18Z",fill:"currentColor"}))},P=a;export{P as default,a as IconPrinter2};
2
+
3
+ //# debugId=E57CAD46AD646E8564756E2164756E21
@@ -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.5 15C9.94772 15 9.5 15.4477 9.5 16C9.5 16.5523 9.94772 17 10.5 17H12C12.5523 17 13 16.5523 13 16C13 15.4477 12.5523 15 12 15H10.5ZM10.5 11C9.94772 11 9.5 11.4477 9.5 12C9.5 12.5523 9.94772 13 10.5 13H13.5C14.0523 13 14.5 12.5523 14.5 12C14.5 11.4477 14.0523 11 13.5 11H10.5Z\" fill=\"currentColor\"/><Path d=\"M18 3C20.2091 3 22 4.79086 22 7V10C22 11.6569 20.6569 13 19 13V10.5C19 8.01472 16.9853 6 14.5 6H9.5C7.01472 6 5 8.01472 5 10.5V13C3.34315 13 2 11.6569 2 10V7C2 4.79086 3.79086 3 6 3H18Z\" 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,gBAA+tB,EAA/tB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qaAAqa,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4LAA4L,KAAK,eAAc,CAAI,GAGztB",
9
+ "debugId": "E57CAD46AD646E8564756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -691,6 +691,7 @@ Below is a complete list of available icons:
691
691
  - IconMagicMouse
692
692
  - IconDevices2
693
693
  - IconTorch
694
+ - IconPrinter2
694
695
 
695
696
  ### Edit
696
697