@central-icons-react/round-outlined-radius-3-stroke-1 1.1.262 → 1.1.264
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/IconControllerButtonCircle/index.d.ts +4 -0
- package/IconControllerButtonCircle/index.js +3 -0
- package/IconControllerButtonCircle/index.js.map +11 -0
- package/IconControllerButtonCircle/index.mjs +3 -0
- package/IconControllerButtonCircle/index.mjs.map +11 -0
- package/IconControllerButtonSquare/index.d.ts +4 -0
- package/IconControllerButtonSquare/index.js +3 -0
- package/IconControllerButtonSquare/index.js.map +11 -0
- package/IconControllerButtonSquare/index.mjs +3 -0
- package/IconControllerButtonSquare/index.mjs.map +11 -0
- package/IconControllerButtonTriangle/index.d.ts +4 -0
- package/IconControllerButtonTriangle/index.js +3 -0
- package/IconControllerButtonTriangle/index.js.map +11 -0
- package/IconControllerButtonTriangle/index.mjs +3 -0
- package/IconControllerButtonTriangle/index.mjs.map +11 -0
- package/IconControllerButtonX/index.d.ts +4 -0
- package/IconControllerButtonX/index.js +3 -0
- package/IconControllerButtonX/index.js.map +11 -0
- package/IconControllerButtonX/index.mjs +3 -0
- package/IconControllerButtonX/index.mjs.map +11 -0
- package/IconPipe/index.js +2 -2
- package/IconPipe/index.js.map +3 -3
- package/IconPipe/index.mjs +2 -2
- package/IconPipe/index.mjs.map +3 -3
- package/README.md +4 -0
- 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 +4 -0
- package/index.js +12 -0
- package/index.mjs +4 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react/SKILL.md +6 -2
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var I=Object.create;var{getPrototypeOf:b,defineProperty:l,getOwnPropertyNames:C,getOwnPropertyDescriptor:k}=Object,f=Object.prototype.hasOwnProperty;function x(r){return this[r]}var w,P,B=(r,e,o)=>{var t=r!=null&&typeof r==="object";if(t){var n=e?w??=new WeakMap:P??=new WeakMap,p=n.get(r);if(p)return p}o=r!=null?I(b(r)):{};let c=e||!r||!r.__esModule?l(o,"default",{value:r,enumerable:!0}):o;for(let i of C(r))if(!f.call(c,i))l(c,i,{get:x.bind(r,i),enumerable:!0});if(t)n.set(r,c);return c},d=(r)=>{var e=(m??=new WeakMap).get(r),o;if(e)return e;if(e=l({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of C(r))if(!f.call(e,t))l(e,t,{get:x.bind(r,t),enumerable:!(o=k(r,t))||o.enumerable})}return m.set(r,e),e},m;var h=(r)=>r;function L(r,e){this[r]=h.bind(null,e)}var g=(r,e)=>{for(var o in e)l(r,o,{get:e[o],enumerable:!0,configurable:!0,set:L.bind(e,o)})};var v={};g(v,{CentralIconBase:()=>u});module.exports=d(v);var a=B(require("react")),u=({children:r,size:e=24,ariaLabel:o,color:t,ariaHidden:n=!0,style:p,...c})=>{return a.default.createElement("svg",{...c,"aria-hidden":n,role:n?void 0:"img",width:typeof e==="number"?`${e}px`:e,height:typeof e==="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:t,...p}},o&&!n&&a.default.createElement("title",null,o),r)};var G={};g(G,{default:()=>S,IconControllerButtonCircle:()=>y});module.exports=d(G);var s=B(require("react"));var y=(r)=>{return s.default.createElement(u,{...r,ariaLabel:"controller-button-circle, confirm, select, accept, continue"},s.default.createElement("circle",{cx:"12",cy:"12",r:"9.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),s.default.createElement("circle",{cx:"12",cy:"12",r:"5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},S=y;
|
|
2
|
+
|
|
3
|
+
//# debugId=D9852D6F9A11B39864756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconControllerButtonCircle/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconControllerButtonCircle: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"controller-button-circle, confirm, select, accept, continue\"><circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><circle cx=\"12\" cy=\"12\" r=\"5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconControllerButtonCircle;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,sFCjCY,IAAlB,sBAGO,IAAM,EAA6D,CAAC,IAAU,CACnF,OAAO,wBAA4S,EAA5S,IAAqB,EAAO,UAAU,+DAA8D,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGtS",
|
|
9
|
+
"debugId": "D9852D6F9A11B39864756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import c from"react";var l=({children:e,size:r=24,ariaLabel:n,color:p,ariaHidden:o=!0,style:s,...i})=>{return c.createElement("svg",{...i,"aria-hidden":o,role:o?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:p,...s}},n&&!o&&c.createElement("title",null,n),e)};import t from"react";var a=(e)=>{return t.createElement(l,{...e,ariaLabel:"controller-button-circle, confirm, select, accept, continue"},t.createElement("circle",{cx:"12",cy:"12",r:"9.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement("circle",{cx:"12",cy:"12",r:"5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},B=a;export{B as default,a as IconControllerButtonCircle};
|
|
2
|
+
|
|
3
|
+
//# debugId=611F5260AE95CC2164756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconControllerButtonCircle/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconControllerButtonCircle: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"controller-button-circle, confirm, select, accept, continue\"><circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><circle cx=\"12\" cy=\"12\" r=\"5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconControllerButtonCircle;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAA6D,CAAC,IAAU,CACnF,OAAO,gBAA4S,EAA5S,IAAqB,EAAO,UAAU,+DAA8D,gBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGtS",
|
|
9
|
+
"debugId": "611F5260AE95CC2164756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var w=Object.create;var{getPrototypeOf:y,defineProperty:p,getOwnPropertyNames:C,getOwnPropertyDescriptor:I}=Object,x=Object.prototype.hasOwnProperty;function d(r){return this[r]}var b,k,f=(r,e,o)=>{var t=r!=null&&typeof r==="object";if(t){var n=e?b??=new WeakMap:k??=new WeakMap,s=n.get(r);if(s)return s}o=r!=null?w(y(r)):{};let l=e||!r||!r.__esModule?p(o,"default",{value:r,enumerable:!0}):o;for(let i of C(r))if(!x.call(l,i))p(l,i,{get:d.bind(r,i),enumerable:!0});if(t)n.set(r,l);return l},g=(r)=>{var e=(m??=new WeakMap).get(r),o;if(e)return e;if(e=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of C(r))if(!x.call(e,t))p(e,t,{get:d.bind(r,t),enumerable:!(o=I(r,t))||o.enumerable})}return m.set(r,e),e},m;var P=(r)=>r;function v(r,e){this[r]=P.bind(null,e)}var B=(r,e)=>{for(var o in e)p(r,o,{get:e[o],enumerable:!0,configurable:!0,set:v.bind(e,o)})};var L={};B(L,{CentralIconBase:()=>u});module.exports=g(L);var c=f(require("react")),u=({children:r,size:e=24,ariaLabel:o,color:t,ariaHidden:n=!0,style:s,...l})=>{return c.default.createElement("svg",{...l,"aria-hidden":n,role:n?void 0:"img",width:typeof e==="number"?`${e}px`:e,height:typeof e==="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:t,...s}},o&&!n&&c.default.createElement("title",null,o),r)};var S={};B(S,{default:()=>G,IconControllerButtonSquare:()=>h});module.exports=g(S);var a=f(require("react"));var h=(r)=>{return a.default.createElement(u,{...r,ariaLabel:"controller-button-square, view, panel"},a.default.createElement("circle",{cx:"12",cy:"12",r:"9.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),a.default.createElement("rect",{x:"7.5",y:"7.5",width:"9",height:"9",rx:"2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},G=h;
|
|
2
|
+
|
|
3
|
+
//# debugId=CB8405C9E2967EF764756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconControllerButtonSquare/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconControllerButtonSquare: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"controller-button-square, view, panel\"><circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><rect x=\"7.5\" y=\"7.5\" width=\"9\" height=\"9\" rx=\"2\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconControllerButtonSquare;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,sFCjCY,IAAlB,sBAGO,IAAM,EAA6D,CAAC,IAAU,CACnF,OAAO,wBAA0S,EAA1S,IAAqB,EAAO,UAAU,yCAAwC,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,MAAM,EAAE,MAAM,MAAM,IAAI,OAAO,IAAI,GAAG,IAAI,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGpS",
|
|
9
|
+
"debugId": "CB8405C9E2967EF764756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import l from"react";var p=({children:e,size:r=24,ariaLabel:n,color:s,ariaHidden:o=!0,style:a,...i})=>{return l.createElement("svg",{...i,"aria-hidden":o,role:o?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:s,...a}},n&&!o&&l.createElement("title",null,n),e)};import t from"react";var c=(e)=>{return t.createElement(p,{...e,ariaLabel:"controller-button-square, view, panel"},t.createElement("circle",{cx:"12",cy:"12",r:"9.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement("rect",{x:"7.5",y:"7.5",width:"9",height:"9",rx:"2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},f=c;export{f as default,c as IconControllerButtonSquare};
|
|
2
|
+
|
|
3
|
+
//# debugId=692CF5FF81BF206D64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconControllerButtonSquare/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconControllerButtonSquare: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"controller-button-square, view, panel\"><circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><rect x=\"7.5\" y=\"7.5\" width=\"9\" height=\"9\" rx=\"2\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconControllerButtonSquare;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAA6D,CAAC,IAAU,CACnF,OAAO,gBAA0S,EAA1S,IAAqB,EAAO,UAAU,yCAAwC,gBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,MAAM,EAAE,MAAM,MAAM,IAAI,OAAO,IAAI,GAAG,IAAI,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGpS",
|
|
9
|
+
"debugId": "692CF5FF81BF206D64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var y=Object.create;var{getPrototypeOf:L,defineProperty:p,getOwnPropertyNames:C,getOwnPropertyDescriptor:b}=Object,d=Object.prototype.hasOwnProperty;function g(r){return this[r]}var h,k,x=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var n=o?h??=new WeakMap:k??=new WeakMap,a=n.get(r);if(a)return a}e=r!=null?y(L(r)):{};let l=o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e;for(let i of C(r))if(!d.call(l,i))p(l,i,{get:g.bind(r,i),enumerable:!0});if(t)n.set(r,l);return l},f=(r)=>{var o=(m??=new WeakMap).get(r),e;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of C(r))if(!d.call(o,t))p(o,t,{get:g.bind(r,t),enumerable:!(e=b(r,t))||e.enumerable})}return m.set(r,o),o},m;var w=(r)=>r;function P(r,o){this[r]=w.bind(null,o)}var B=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0,configurable:!0,set:P.bind(o,e)})};var v={};B(v,{CentralIconBase:()=>u});module.exports=f(v);var c=x(require("react")),u=({children:r,size:o=24,ariaLabel:e,color:t,ariaHidden:n=!0,style:a,...l})=>{return c.default.createElement("svg",{...l,"aria-hidden":n,role:n?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:t,...a}},e&&!n&&c.default.createElement("title",null,e),r)};var G={};B(G,{default:()=>S,IconControllerButtonTriangle:()=>I});module.exports=f(G);var s=x(require("react"));var I=(r)=>{return s.default.createElement(u,{...r,ariaLabel:"controller-button-triangle, menu, options, action, more, expand"},s.default.createElement("circle",{cx:"12",cy:"12",r:"9.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),s.default.createElement("path",{d:"M10.9337 7.91221C11.4186 7.11072 12.5814 7.11072 13.0663 7.91221L16.6055 13.7615C17.1081 14.5921 16.51 15.653 15.5392 15.653H8.46079C7.48997 15.653 6.89191 14.5921 7.39448 13.7615L10.9337 7.91221Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},S=I;
|
|
2
|
+
|
|
3
|
+
//# debugId=AF8DE2C7FFFD7B8464756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconControllerButtonTriangle/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconControllerButtonTriangle: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"controller-button-triangle, menu, options, action, more, expand\"><circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M10.9337 7.91221C11.4186 7.11072 12.5814 7.11072 13.0663 7.91221L16.6055 13.7615C17.1081 14.5921 16.51 15.653 15.5392 15.653H8.46079C7.48997 15.653 6.89191 14.5921 7.39448 13.7615L10.9337 7.91221Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconControllerButtonTriangle;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,wFCjCY,IAAlB,sBAGO,IAAM,EAA+D,CAAC,IAAU,CACrF,OAAO,wBAAie,EAAje,IAAqB,EAAO,UAAU,mEAAkE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,uMAAuM,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG3d",
|
|
9
|
+
"debugId": "AF8DE2C7FFFD7B8464756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import l from"react";var p=({children:o,size:r=24,ariaLabel:n,color:a,ariaHidden:e=!0,style:s,...i})=>{return l.createElement("svg",{...i,"aria-hidden":e,role:e?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:a,...s}},n&&!e&&l.createElement("title",null,n),o)};import t from"react";var c=(o)=>{return t.createElement(p,{...o,ariaLabel:"controller-button-triangle, menu, options, action, more, expand"},t.createElement("circle",{cx:"12",cy:"12",r:"9.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement("path",{d:"M10.9337 7.91221C11.4186 7.11072 12.5814 7.11072 13.0663 7.91221L16.6055 13.7615C17.1081 14.5921 16.51 15.653 15.5392 15.653H8.46079C7.48997 15.653 6.89191 14.5921 7.39448 13.7615L10.9337 7.91221Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},x=c;export{x as default,c as IconControllerButtonTriangle};
|
|
2
|
+
|
|
3
|
+
//# debugId=19C7A809D464421964756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconControllerButtonTriangle/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconControllerButtonTriangle: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"controller-button-triangle, menu, options, action, more, expand\"><circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M10.9337 7.91221C11.4186 7.11072 12.5814 7.11072 13.0663 7.91221L16.6055 13.7615C17.1081 14.5921 16.51 15.653 15.5392 15.653H8.46079C7.48997 15.653 6.89191 14.5921 7.39448 13.7615L10.9337 7.91221Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconControllerButtonTriangle;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAA+D,CAAC,IAAU,CACrF,OAAO,gBAAie,EAAje,IAAqB,EAAO,UAAU,mEAAkE,gBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,uMAAuM,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG3d",
|
|
9
|
+
"debugId": "19C7A809D464421964756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var y=Object.create;var{getPrototypeOf:L,defineProperty:s,getOwnPropertyNames:C,getOwnPropertyDescriptor:b}=Object,d=Object.prototype.hasOwnProperty;function x(r){return this[r]}var h,k,f=(r,e,o)=>{var t=r!=null&&typeof r==="object";if(t){var n=e?h??=new WeakMap:k??=new WeakMap,p=n.get(r);if(p)return p}o=r!=null?y(L(r)):{};let l=e||!r||!r.__esModule?s(o,"default",{value:r,enumerable:!0}):o;for(let c of C(r))if(!d.call(l,c))s(l,c,{get:x.bind(r,c),enumerable:!0});if(t)n.set(r,l);return l},B=(r)=>{var e=(u??=new WeakMap).get(r),o;if(e)return e;if(e=s({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of C(r))if(!d.call(e,t))s(e,t,{get:x.bind(r,t),enumerable:!(o=b(r,t))||o.enumerable})}return u.set(r,e),e},u;var w=(r)=>r;function P(r,e){this[r]=w.bind(null,e)}var g=(r,e)=>{for(var o in e)s(r,o,{get:e[o],enumerable:!0,configurable:!0,set:P.bind(e,o)})};var v={};g(v,{CentralIconBase:()=>m});module.exports=B(v);var i=f(require("react")),m=({children:r,size:e=24,ariaLabel:o,color:t,ariaHidden:n=!0,style:p,...l})=>{return i.default.createElement("svg",{...l,"aria-hidden":n,role:n?void 0:"img",width:typeof e==="number"?`${e}px`:e,height:typeof e==="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:t,...p}},o&&!n&&i.default.createElement("title",null,o),r)};var G={};g(G,{default:()=>S,IconControllerButtonX:()=>I});module.exports=B(G);var a=f(require("react"));var I=(r)=>{return a.default.createElement(m,{...r,ariaLabel:"controller-button-x, dismiss, close, cancel, delete, remove"},a.default.createElement("circle",{cx:"12",cy:"12",r:"9.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),a.default.createElement("path",{d:"M8.25 8.25L15.75 15.75M15.75 8.25L8.25 15.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},S=I;
|
|
2
|
+
|
|
3
|
+
//# debugId=95B1AB6140BED27A64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconControllerButtonX/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconControllerButtonX: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"controller-button-x, dismiss, close, cancel, delete, remove\"><circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8.25 8.25L15.75 15.75M15.75 8.25L8.25 15.75\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconControllerButtonX;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,iFCjCY,IAAlB,sBAGO,IAAM,EAAwD,CAAC,IAAU,CAC9E,OAAO,wBAAqU,EAArU,IAAqB,EAAO,UAAU,+DAA8D,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,+CAA+C,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG/T",
|
|
9
|
+
"debugId": "95B1AB6140BED27A64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import l from"react";var s=({children:e,size:r=24,ariaLabel:n,color:p,ariaHidden:o=!0,style:a,...c})=>{return l.createElement("svg",{...c,"aria-hidden":o,role:o?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:p,...a}},n&&!o&&l.createElement("title",null,n),e)};import t from"react";var i=(e)=>{return t.createElement(s,{...e,ariaLabel:"controller-button-x, dismiss, close, cancel, delete, remove"},t.createElement("circle",{cx:"12",cy:"12",r:"9.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement("path",{d:"M8.25 8.25L15.75 15.75M15.75 8.25L8.25 15.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},f=i;export{f as default,i as IconControllerButtonX};
|
|
2
|
+
|
|
3
|
+
//# debugId=73DC9BD13649487C64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconControllerButtonX/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconControllerButtonX: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"controller-button-x, dismiss, close, cancel, delete, remove\"><circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8.25 8.25L15.75 15.75M15.75 8.25L8.25 15.75\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconControllerButtonX;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAwD,CAAC,IAAU,CAC9E,OAAO,gBAAqU,EAArU,IAAqB,EAAO,UAAU,+DAA8D,gBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,+CAA+C,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG/T",
|
|
9
|
+
"debugId": "73DC9BD13649487C64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
package/IconPipe/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var g=Object.create;var{getPrototypeOf:x,defineProperty:i,getOwnPropertyNames:c,getOwnPropertyDescriptor:B}=Object,k=Object.prototype.hasOwnProperty;function m(r){return this[r]}var I,P,L=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var p=o?I??=new WeakMap:P??=new WeakMap,a=p.get(r);if(a)return a}e=r!=null?g(x(r)):{};let s=o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e;for(let u of c(r))if(!k.call(s,u))i(s,u,{get:m.bind(r,u),enumerable:!0});if(n)p.set(r,s);return s},h=(r)=>{var o=(d??=new WeakMap).get(r),e;if(o)return o;if(o=i({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of c(r))if(!k.call(o,n))i(o,n,{get:m.bind(r,n),enumerable:!(e=B(r,n))||e.enumerable})}return d.set(r,o),o},d;var j=(r)=>r;function w(r,o){this[r]=j.bind(null,o)}var V=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0,configurable:!0,set:w.bind(o,e)})};var y={};V(y,{CentralIconBase:()=>l});module.exports=h(y);var C=L(require("react")),l=({children:r,size:o=24,ariaLabel:e,color:n,ariaHidden:p=!0,style:a,...s})=>{return C.default.createElement("svg",{...s,"aria-hidden":p,role:p?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:n,...a}},e&&!p&&C.default.createElement("title",null,e),r)};var M={};V(M,{default:()=>b,IconPipe:()=>f});module.exports=h(M);var t=L(require("react"));var f=(r)=>{return t.default.createElement(l,{...r,ariaLabel:"pipe, super mario"},t.default.createElement("path",{d:"M3.5 20.5H20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement("path",{d:"M18.25 10.75V20.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement("path",{d:"M5.75 20.25V10.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement("path",{d:"M3.5 6.7C3.5 5.5799 3.5 5.01984 3.71799 4.59202C3.90973 4.21569 4.21569 3.90973 4.59202 3.71799C5.01984 3.5 5.57989 3.5 6.7 3.5H17.3C18.4201 3.5 18.9802 3.5 19.408 3.71799C19.7843 3.90973 20.0903 4.21569 20.282 4.59202C20.5 5.01984 20.5 5.57989 20.5 6.7V7.3C20.5 8.4201 20.5 8.98016 20.282 9.40798C20.0903 9.78431 19.7843 10.0903 19.408 10.282C18.9802 10.5 18.4201 10.5 17.3 10.5H6.7C5.57989 10.5 5.01984 10.5 4.59202 10.282C4.21569 10.0903 3.90973 9.78431 3.71799 9.40798C3.5 8.98016 3.5 8.42011 3.5 7.3V6.7Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement("path",{d:"M7.75 3.75V10.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement("path",{d:"M9.75 10.75V20.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},b=f;
|
|
1
|
+
var g=Object.create;var{getPrototypeOf:x,defineProperty:i,getOwnPropertyNames:c,getOwnPropertyDescriptor:B}=Object,k=Object.prototype.hasOwnProperty;function m(r){return this[r]}var I,P,L=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var p=o?I??=new WeakMap:P??=new WeakMap,a=p.get(r);if(a)return a}e=r!=null?g(x(r)):{};let s=o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e;for(let u of c(r))if(!k.call(s,u))i(s,u,{get:m.bind(r,u),enumerable:!0});if(n)p.set(r,s);return s},h=(r)=>{var o=(d??=new WeakMap).get(r),e;if(o)return o;if(o=i({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of c(r))if(!k.call(o,n))i(o,n,{get:m.bind(r,n),enumerable:!(e=B(r,n))||e.enumerable})}return d.set(r,o),o},d;var j=(r)=>r;function w(r,o){this[r]=j.bind(null,o)}var V=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0,configurable:!0,set:w.bind(o,e)})};var y={};V(y,{CentralIconBase:()=>l});module.exports=h(y);var C=L(require("react")),l=({children:r,size:o=24,ariaLabel:e,color:n,ariaHidden:p=!0,style:a,...s})=>{return C.default.createElement("svg",{...s,"aria-hidden":p,role:p?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:n,...a}},e&&!p&&C.default.createElement("title",null,e),r)};var M={};V(M,{default:()=>b,IconPipe:()=>f});module.exports=h(M);var t=L(require("react"));var f=(r)=>{return t.default.createElement(l,{...r,ariaLabel:"pipe, super mario, vpn"},t.default.createElement("path",{d:"M3.5 20.5H20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement("path",{d:"M18.25 10.75V20.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement("path",{d:"M5.75 20.25V10.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement("path",{d:"M3.5 6.7C3.5 5.5799 3.5 5.01984 3.71799 4.59202C3.90973 4.21569 4.21569 3.90973 4.59202 3.71799C5.01984 3.5 5.57989 3.5 6.7 3.5H17.3C18.4201 3.5 18.9802 3.5 19.408 3.71799C19.7843 3.90973 20.0903 4.21569 20.282 4.59202C20.5 5.01984 20.5 5.57989 20.5 6.7V7.3C20.5 8.4201 20.5 8.98016 20.282 9.40798C20.0903 9.78431 19.7843 10.0903 19.408 10.282C18.9802 10.5 18.4201 10.5 17.3 10.5H6.7C5.57989 10.5 5.01984 10.5 4.59202 10.282C4.21569 10.0903 3.90973 9.78431 3.71799 9.40798C3.5 8.98016 3.5 8.42011 3.5 7.3V6.7Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement("path",{d:"M7.75 3.75V10.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement("path",{d:"M9.75 10.75V20.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},b=f;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=B2058F3E09E53CFF64756E2164756E21
|
package/IconPipe/index.js.map
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconPipe/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
|
|
6
|
-
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPipe: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"pipe, super mario\"><path d=\"M3.5 20.5H20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M18.25 10.75V20.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M5.75 20.25V10.75\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.5 6.7C3.5 5.5799 3.5 5.01984 3.71799 4.59202C3.90973 4.21569 4.21569 3.90973 4.59202 3.71799C5.01984 3.5 5.57989 3.5 6.7 3.5H17.3C18.4201 3.5 18.9802 3.5 19.408 3.71799C19.7843 3.90973 20.0903 4.21569 20.282 4.59202C20.5 5.01984 20.5 5.57989 20.5 6.7V7.3C20.5 8.4201 20.5 8.98016 20.282 9.40798C20.0903 9.78431 19.7843 10.0903 19.408 10.282C18.9802 10.5 18.4201 10.5 17.3 10.5H6.7C5.57989 10.5 5.01984 10.5 4.59202 10.282C4.21569 10.0903 3.90973 9.78431 3.71799 9.40798C3.5 8.98016 3.5 8.42011 3.5 7.3V6.7Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7.75 3.75V10.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.75 10.75V20.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconPipe;\n"
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPipe: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"pipe, super mario, vpn\"><path d=\"M3.5 20.5H20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M18.25 10.75V20.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M5.75 20.25V10.75\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.5 6.7C3.5 5.5799 3.5 5.01984 3.71799 4.59202C3.90973 4.21569 4.21569 3.90973 4.59202 3.71799C5.01984 3.5 5.57989 3.5 6.7 3.5H17.3C18.4201 3.5 18.9802 3.5 19.408 3.71799C19.7843 3.90973 20.0903 4.21569 20.282 4.59202C20.5 5.01984 20.5 5.57989 20.5 6.7V7.3C20.5 8.4201 20.5 8.98016 20.282 9.40798C20.0903 9.78431 19.7843 10.0903 19.408 10.282C18.9802 10.5 18.4201 10.5 17.3 10.5H6.7C5.57989 10.5 5.01984 10.5 4.59202 10.282C4.21569 10.0903 3.90973 9.78431 3.71799 9.40798C3.5 8.98016 3.5 8.42011 3.5 7.3V6.7Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7.75 3.75V10.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.75 10.75V20.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconPipe;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,oECjCY,IAAlB,sBAGO,IAAM,EAA2C,CAAC,IAAU,CACjE,OAAO,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,oECjCY,IAAlB,sBAGO,IAAM,EAA2C,CAAC,IAAU,CACjE,OAAO,wBAA0mC,EAA1mC,IAAqB,EAAO,UAAU,0BAAyB,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,qBAAqB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,oBAAoB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,ggBAAggB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,mBAAmB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,oBAAoB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGpmC",
|
|
9
|
+
"debugId": "B2058F3E09E53CFF64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconPipe/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import p from"react";var s=({children:e,size:o=24,ariaLabel:t,color:i,ariaHidden:n=!0,style:a,...u})=>{return p.createElement("svg",{...u,"aria-hidden":n,role:n?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:i,...a}},t&&!n&&p.createElement("title",null,t),e)};import r from"react";var C=(e)=>{return r.createElement(s,{...e,ariaLabel:"pipe, super mario"},r.createElement("path",{d:"M3.5 20.5H20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M18.25 10.75V20.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M5.75 20.25V10.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M3.5 6.7C3.5 5.5799 3.5 5.01984 3.71799 4.59202C3.90973 4.21569 4.21569 3.90973 4.59202 3.71799C5.01984 3.5 5.57989 3.5 6.7 3.5H17.3C18.4201 3.5 18.9802 3.5 19.408 3.71799C19.7843 3.90973 20.0903 4.21569 20.282 4.59202C20.5 5.01984 20.5 5.57989 20.5 6.7V7.3C20.5 8.4201 20.5 8.98016 20.282 9.40798C20.0903 9.78431 19.7843 10.0903 19.408 10.282C18.9802 10.5 18.4201 10.5 17.3 10.5H6.7C5.57989 10.5 5.01984 10.5 4.59202 10.282C4.21569 10.0903 3.90973 9.78431 3.71799 9.40798C3.5 8.98016 3.5 8.42011 3.5 7.3V6.7Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M7.75 3.75V10.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M9.75 10.75V20.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},L=C;export{L as default,C as IconPipe};
|
|
1
|
+
import p from"react";var s=({children:e,size:o=24,ariaLabel:t,color:i,ariaHidden:n=!0,style:a,...u})=>{return p.createElement("svg",{...u,"aria-hidden":n,role:n?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:i,...a}},t&&!n&&p.createElement("title",null,t),e)};import r from"react";var C=(e)=>{return r.createElement(s,{...e,ariaLabel:"pipe, super mario, vpn"},r.createElement("path",{d:"M3.5 20.5H20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M18.25 10.75V20.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M5.75 20.25V10.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M3.5 6.7C3.5 5.5799 3.5 5.01984 3.71799 4.59202C3.90973 4.21569 4.21569 3.90973 4.59202 3.71799C5.01984 3.5 5.57989 3.5 6.7 3.5H17.3C18.4201 3.5 18.9802 3.5 19.408 3.71799C19.7843 3.90973 20.0903 4.21569 20.282 4.59202C20.5 5.01984 20.5 5.57989 20.5 6.7V7.3C20.5 8.4201 20.5 8.98016 20.282 9.40798C20.0903 9.78431 19.7843 10.0903 19.408 10.282C18.9802 10.5 18.4201 10.5 17.3 10.5H6.7C5.57989 10.5 5.01984 10.5 4.59202 10.282C4.21569 10.0903 3.90973 9.78431 3.71799 9.40798C3.5 8.98016 3.5 8.42011 3.5 7.3V6.7Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M7.75 3.75V10.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M9.75 10.75V20.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},L=C;export{L as default,C as IconPipe};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=E85C500A5418D52364756E2164756E21
|
package/IconPipe/index.mjs.map
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconPipe/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
|
|
6
|
-
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPipe: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"pipe, super mario\"><path d=\"M3.5 20.5H20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M18.25 10.75V20.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M5.75 20.25V10.75\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.5 6.7C3.5 5.5799 3.5 5.01984 3.71799 4.59202C3.90973 4.21569 4.21569 3.90973 4.59202 3.71799C5.01984 3.5 5.57989 3.5 6.7 3.5H17.3C18.4201 3.5 18.9802 3.5 19.408 3.71799C19.7843 3.90973 20.0903 4.21569 20.282 4.59202C20.5 5.01984 20.5 5.57989 20.5 6.7V7.3C20.5 8.4201 20.5 8.98016 20.282 9.40798C20.0903 9.78431 19.7843 10.0903 19.408 10.282C18.9802 10.5 18.4201 10.5 17.3 10.5H6.7C5.57989 10.5 5.01984 10.5 4.59202 10.282C4.21569 10.0903 3.90973 9.78431 3.71799 9.40798C3.5 8.98016 3.5 8.42011 3.5 7.3V6.7Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7.75 3.75V10.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.75 10.75V20.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconPipe;\n"
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPipe: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"pipe, super mario, vpn\"><path d=\"M3.5 20.5H20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M18.25 10.75V20.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M5.75 20.25V10.75\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.5 6.7C3.5 5.5799 3.5 5.01984 3.71799 4.59202C3.90973 4.21569 4.21569 3.90973 4.59202 3.71799C5.01984 3.5 5.57989 3.5 6.7 3.5H17.3C18.4201 3.5 18.9802 3.5 19.408 3.71799C19.7843 3.90973 20.0903 4.21569 20.282 4.59202C20.5 5.01984 20.5 5.57989 20.5 6.7V7.3C20.5 8.4201 20.5 8.98016 20.282 9.40798C20.0903 9.78431 19.7843 10.0903 19.408 10.282C18.9802 10.5 18.4201 10.5 17.3 10.5H6.7C5.57989 10.5 5.01984 10.5 4.59202 10.282C4.21569 10.0903 3.90973 9.78431 3.71799 9.40798C3.5 8.98016 3.5 8.42011 3.5 7.3V6.7Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7.75 3.75V10.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.75 10.75V20.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconPipe;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAA2C,CAAC,IAAU,CACjE,OAAO,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAA0mC,EAA1mC,IAAqB,EAAO,UAAU,0BAAyB,gBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,qBAAqB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,oBAAoB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,ggBAAggB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,mBAAmB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,oBAAoB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGpmC",
|
|
9
|
+
"debugId": "E85C500A5418D52364756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/README.md
CHANGED
|
@@ -1075,6 +1075,10 @@ Below is a complete list of available icons:
|
|
|
1075
1075
|
- IconGamecontroller
|
|
1076
1076
|
- IconOldJoystick
|
|
1077
1077
|
- IconPipe
|
|
1078
|
+
- IconControllerButtonX
|
|
1079
|
+
- IconControllerButtonTriangle
|
|
1080
|
+
- IconControllerButtonSquare
|
|
1081
|
+
- IconControllerButtonCircle
|
|
1078
1082
|
|
|
1079
1083
|
### Hands
|
|
1080
1084
|
|