@central-icons-react-native/round-outlined-radius-0-stroke-1 1.1.272 → 1.1.274
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/IconPhoneHaptic2/index.d.ts +4 -0
- package/IconPhoneHaptic2/index.js +3 -0
- package/IconPhoneHaptic2/index.js.map +11 -0
- package/IconPhoneHaptic2/index.mjs +3 -0
- package/IconPhoneHaptic2/index.mjs.map +11 -0
- 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 +2 -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 +2 -0
- package/index.js +6 -0
- package/index.mjs +2 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +3 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var x=Object.create;var{getPrototypeOf:g,defineProperty:p,getOwnPropertyNames:C,getOwnPropertyDescriptor:j}=Object,l=Object.prototype.hasOwnProperty;function a(r){return this[r]}var h,v,m=(r,o,n)=>{var s=r!=null&&typeof r==="object";if(s){var k=o?h??=new WeakMap:v??=new WeakMap,L=k.get(r);if(L)return L}n=r!=null?x(g(r)):{};let u=o||!r||!r.__esModule?p(n,"default",{value:r,enumerable:!0}):n;for(let i of C(r))if(!l.call(u,i))p(u,i,{get:a.bind(r,i),enumerable:!0});if(s)k.set(r,u);return u},f=(r)=>{var o=(c??=new WeakMap).get(r),n;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var s of C(r))if(!l.call(o,s))p(o,s,{get:a.bind(r,s),enumerable:!(n=j(r,s))||n.enumerable})}return c.set(r,o),o},c;var y=(r)=>r;function F(r,o){this[r]=y.bind(null,o)}var B=(r,o)=>{for(var n in o)p(r,n,{get:o[n],enumerable:!0,configurable:!0,set:F.bind(o,n)})};var H={};B(H,{CentralIconBase:()=>d});module.exports=f(H);var I=m(require("react")),M=require("react-native-svg"),d=({children:r,size:o=24,...n})=>{return I.default.createElement(M.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={};B(S,{default:()=>b,IconPhoneHaptic2:()=>P});module.exports=f(S);var e=m(require("react"));var t=require("react-native-svg"),P=(r)=>{return e.default.createElement(d,{...r},e.default.createElement(t.Path,{d:"M16.5 20.5V3.5H7.5V20.5H16.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M11 5.5H13",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M21.25 6.75L19 8.02703",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M5 15.9731L2.75 17.2502",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M21.25 17.2502L19 15.9731",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M5 8.02703L2.75 6.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M22.1357 12L19.75 12",stroke:"currentColor",strokeLinecap:"round"}),e.default.createElement(t.Path,{d:"M4.24902 12L1.86328 12",stroke:"currentColor",strokeLinecap:"round"}))},b=P;
|
|
2
|
+
|
|
3
|
+
//# debugId=63C0BAD5AE5ECBB064756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconPhoneHaptic2/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 IconPhoneHaptic2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M16.5 20.5V3.5H7.5V20.5H16.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M11 5.5H13\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M21.25 6.75L19 8.02703\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M5 15.9731L2.75 17.2502\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M21.25 17.2502L19 15.9731\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M5 8.02703L2.75 6.75\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M22.1357 12L19.75 12\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M4.24902 12L1.86328 12\" stroke=\"currentColor\" strokeLinecap=\"round\"/></CentralIconBase>;\n};\n\nexport default IconPhoneHaptic2;\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,4ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA6C,CAAC,IAAU,CACnE,OAAO,wBAAmxB,EAAnxB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,gCAAgC,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,0BAA0B,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,4BAA4B,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,uBAAuB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,uBAAuB,OAAO,eAAe,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,cAAc,QAAO,CAAI,GAG7wB",
|
|
9
|
+
"debugId": "63C0BAD5AE5ECBB064756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as u}from"react-native-svg";var t=({children:e,size:n=24,...s})=>{return p.createElement(u,{...s,width:typeof n==="number"?`${n}px`:n,height:typeof n==="number"?`${n}px`:n,viewBox:"0 0 24 24",fill:"none"},e)};import r from"react";import{Path as o}from"react-native-svg";var i=(e)=>{return r.createElement(t,{...e},r.createElement(o,{d:"M16.5 20.5V3.5H7.5V20.5H16.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M11 5.5H13",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M21.25 6.75L19 8.02703",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M5 15.9731L2.75 17.2502",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M21.25 17.2502L19 15.9731",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M5 8.02703L2.75 6.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M22.1357 12L19.75 12",stroke:"currentColor",strokeLinecap:"round"}),r.createElement(o,{d:"M4.24902 12L1.86328 12",stroke:"currentColor",strokeLinecap:"round"}))},I=i;export{I as default,i as IconPhoneHaptic2};
|
|
2
|
+
|
|
3
|
+
//# debugId=5A13A0AF39FF61F364756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconPhoneHaptic2/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 IconPhoneHaptic2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M16.5 20.5V3.5H7.5V20.5H16.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M11 5.5H13\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M21.25 6.75L19 8.02703\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M5 15.9731L2.75 17.2502\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M21.25 17.2502L19 15.9731\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M5 8.02703L2.75 6.75\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M22.1357 12L19.75 12\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M4.24902 12L1.86328 12\" stroke=\"currentColor\" strokeLinecap=\"round\"/></CentralIconBase>;\n};\n\nexport default IconPhoneHaptic2;\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,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAAmxB,EAAnxB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,gCAAgC,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,aAAa,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,0BAA0B,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,4BAA4B,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,uBAAuB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,uBAAuB,OAAO,eAAe,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,cAAc,QAAO,CAAI,GAG7wB",
|
|
9
|
+
"debugId": "5A13A0AF39FF61F364756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -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 C=o?h??=new WeakMap:j??=new WeakMap,c=C.get(r);if(c)return c}n=r!=null?H(g(r)):{};let i=o||!r||!r.__esModule?p(n,"default",{value:r,enumerable:!0}):n;for(let u of l(r))if(!m.call(i,u))p(i,u,{get:k.bind(r,u),enumerable:!0});if(e)C.set(r,i);return i},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:()=>a});module.exports=B(M);var L=f(require("react")),P=require("react-native-svg"),a=({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(a,{...r},t.default.createElement(s.Path,{d:"M6.5 7.5H17.5V20.5H6.5V7.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.5H21.5V3.5H2.5V11.5H6.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},V=x;
|
|
2
|
+
|
|
3
|
+
//# debugId=8CE4A3FC1B5B29EC64756E2164756E21
|
|
@@ -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 7.5H17.5V20.5H6.5V7.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.5H21.5V3.5H2.5V11.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,wBAA6a,EAA7a,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,8BAA8B,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,mCAAmC,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGva",
|
|
9
|
+
"debugId": "8CE4A3FC1B5B29EC64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import s from"react";import{Svg as i}from"react-native-svg";var t=({children:e,size:r=24,...p})=>{return s.createElement(i,{...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 u=(e)=>{return o.createElement(t,{...e},o.createElement(n,{d:"M6.5 7.5H17.5V20.5H6.5V7.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.5H21.5V3.5H2.5V11.5H6.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},L=u;export{L as default,u as IconPrinter2};
|
|
2
|
+
|
|
3
|
+
//# debugId=5E00DE74C89AFFE864756E2164756E21
|
|
@@ -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 7.5H17.5V20.5H6.5V7.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.5H21.5V3.5H2.5V11.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,gBAA6a,EAA7a,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,8BAA8B,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,mCAAmC,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGva",
|
|
9
|
+
"debugId": "5E00DE74C89AFFE864756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|