@central-icons-react-native/round-outlined-radius-1-stroke-1 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 H=Object.create;var{getPrototypeOf:g,defineProperty:p,getOwnPropertyNames:l,getOwnPropertyDescriptor:v}=Object,m=Object.prototype.hasOwnProperty;function k(r){return this[r]}var h,j,f=(r,o,n)=>{var e=r!=null&&typeof r==="object";if(e){var a=o?h??=new WeakMap:j??=new WeakMap,c=a.get(r);if(c)return c}n=r!=null?H(g(r)):{};let C=o||!r||!r.__esModule?p(n,"default",{value:r,enumerable:!0}):n;for(let i of l(r))if(!m.call(C,i))p(C,i,{get:k.bind(r,i),enumerable:!0});if(e)a.set(r,C);return C},B=(r)=>{var o=(d??=new WeakMap).get(r),n;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of l(r))if(!m.call(o,e))p(o,e,{get:k.bind(r,e),enumerable:!(n=v(r,e))||n.enumerable})}return d.set(r,o),o},d;var y=(r)=>r;function F(r,o){this[r]=y.bind(null,o)}var I=(r,o)=>{for(var n in o)p(r,n,{get:o[n],enumerable:!0,configurable:!0,set:F.bind(o,n)})};var M={};I(M,{CentralIconBase:()=>u});module.exports=B(M);var L=f(require("react")),P=require("react-native-svg"),u=({children:r,size:o=24,...n})=>{return L.default.createElement(P.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 S={};I(S,{default:()=>V,IconPrinter2:()=>x});module.exports=B(S);var t=f(require("react"));var s=require("react-native-svg"),x=(r)=>{return t.default.createElement(u,{...r},t.default.createElement(s.Path,{d:"M6.5 8.5C6.5 7.94772 6.94772 7.5 7.5 7.5H16.5C17.0523 7.5 17.5 7.94772 17.5 8.5V19.5C17.5 20.0523 17.0523 20.5 16.5 20.5H7.5C6.94771 20.5 6.5 20.0523 6.5 19.5V8.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(s.Path,{d:"M10 11.5H14",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(s.Path,{d:"M10 15.5H12.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(s.Path,{d:"M17.5 11.5H20.5C21.0523 11.5 21.5 11.0523 21.5 10.5V4.5C21.5 3.94772 21.0523 3.5 20.5 3.5H3.5C2.94772 3.5 2.5 3.94772 2.5 4.5V10.5C2.5 11.0523 2.94772 11.5 3.5 11.5H6.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},V=x;
2
+
3
+ //# debugId=71667E36B4FBFC4664756E2164756E21
@@ -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 d=\"M6.5 8.5C6.5 7.94772 6.94772 7.5 7.5 7.5H16.5C17.0523 7.5 17.5 7.94772 17.5 8.5V19.5C17.5 20.0523 17.0523 20.5 16.5 20.5H7.5C6.94771 20.5 6.5 20.0523 6.5 19.5V8.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M10 11.5H14\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M10 15.5H12.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M17.5 11.5H20.5C21.0523 11.5 21.5 11.0523 21.5 10.5V4.5C21.5 3.94772 21.0523 3.5 20.5 3.5H3.5C2.94772 3.5 2.5 3.94772 2.5 4.5V10.5C2.5 11.0523 2.94772 11.5 3.5 11.5H6.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,wBAA6rB,EAA7rB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,sKAAsK,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,cAAc,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,2KAA2K,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGvrB",
9
+ "debugId": "71667E36B4FBFC4664756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import s from"react";import{Svg as C}from"react-native-svg";var t=({children:e,size:r=24,...p})=>{return s.createElement(C,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e)};import o from"react";import{Path as n}from"react-native-svg";var i=(e)=>{return o.createElement(t,{...e},o.createElement(n,{d:"M6.5 8.5C6.5 7.94772 6.94772 7.5 7.5 7.5H16.5C17.0523 7.5 17.5 7.94772 17.5 8.5V19.5C17.5 20.0523 17.0523 20.5 16.5 20.5H7.5C6.94771 20.5 6.5 20.0523 6.5 19.5V8.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M10 11.5H14",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M10 15.5H12.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M17.5 11.5H20.5C21.0523 11.5 21.5 11.0523 21.5 10.5V4.5C21.5 3.94772 21.0523 3.5 20.5 3.5H3.5C2.94772 3.5 2.5 3.94772 2.5 4.5V10.5C2.5 11.0523 2.94772 11.5 3.5 11.5H6.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},L=i;export{L as default,i as IconPrinter2};
2
+
3
+ //# debugId=7AF2E8DC7E9726BC64756E2164756E21
@@ -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 d=\"M6.5 8.5C6.5 7.94772 6.94772 7.5 7.5 7.5H16.5C17.0523 7.5 17.5 7.94772 17.5 8.5V19.5C17.5 20.0523 17.0523 20.5 16.5 20.5H7.5C6.94771 20.5 6.5 20.0523 6.5 19.5V8.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M10 11.5H14\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M10 15.5H12.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M17.5 11.5H20.5C21.0523 11.5 21.5 11.0523 21.5 10.5V4.5C21.5 3.94772 21.0523 3.5 20.5 3.5H3.5C2.94772 3.5 2.5 3.94772 2.5 4.5V10.5C2.5 11.0523 2.94772 11.5 3.5 11.5H6.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,gBAA6rB,EAA7rB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,sKAAsK,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,cAAc,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,2KAA2K,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGvrB",
9
+ "debugId": "7AF2E8DC7E9726BC64756E2164756E21",
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