@central-icons-react/round-outlined-radius-0-stroke-2 1.1.262 → 1.1.263

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.
Files changed (37) hide show
  1. package/IconControllerButtonCircle/index.d.ts +4 -0
  2. package/IconControllerButtonCircle/index.js +3 -0
  3. package/IconControllerButtonCircle/index.js.map +11 -0
  4. package/IconControllerButtonCircle/index.mjs +3 -0
  5. package/IconControllerButtonCircle/index.mjs.map +11 -0
  6. package/IconControllerButtonSquare/index.d.ts +4 -0
  7. package/IconControllerButtonSquare/index.js +3 -0
  8. package/IconControllerButtonSquare/index.js.map +11 -0
  9. package/IconControllerButtonSquare/index.mjs +3 -0
  10. package/IconControllerButtonSquare/index.mjs.map +11 -0
  11. package/IconControllerButtonTriangle/index.d.ts +4 -0
  12. package/IconControllerButtonTriangle/index.js +3 -0
  13. package/IconControllerButtonTriangle/index.js.map +11 -0
  14. package/IconControllerButtonTriangle/index.mjs +3 -0
  15. package/IconControllerButtonTriangle/index.mjs.map +11 -0
  16. package/IconControllerButtonX/index.d.ts +4 -0
  17. package/IconControllerButtonX/index.js +3 -0
  18. package/IconControllerButtonX/index.js.map +11 -0
  19. package/IconControllerButtonX/index.mjs +3 -0
  20. package/IconControllerButtonX/index.mjs.map +11 -0
  21. package/IconPipe/index.js +2 -2
  22. package/IconPipe/index.js.map +3 -3
  23. package/IconPipe/index.mjs +2 -2
  24. package/IconPipe/index.mjs.map +3 -3
  25. package/README.md +4 -0
  26. package/icons/index.d.ts +1 -1
  27. package/icons/index.js +2 -2
  28. package/icons/index.js.map +3 -3
  29. package/icons/index.mjs +2 -2
  30. package/icons/index.mjs.map +3 -3
  31. package/icons-index.json +4 -4
  32. package/index.d.ts +4 -0
  33. package/index.js +12 -0
  34. package/index.mjs +4 -0
  35. package/license-check.js +1 -1
  36. package/package.json +1 -1
  37. package/skills/central-icons-react/SKILL.md +6 -2
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconControllerButtonCircle: React.FC<CentralIconBaseProps>;
4
+ export default IconControllerButtonCircle;
@@ -0,0 +1,3 @@
1
+ var y=Object.create;var{getPrototypeOf:I,defineProperty:l,getOwnPropertyNames:C,getOwnPropertyDescriptor:h}=Object,d=Object.prototype.hasOwnProperty;function f(r){return this[r]}var b,w,x=(r,e,o)=>{var t=r!=null&&typeof r==="object";if(t){var n=e?b??=new WeakMap:w??=new WeakMap,s=n.get(r);if(s)return s}o=r!=null?y(I(r)):{};let c=e||!r||!r.__esModule?l(o,"default",{value:r,enumerable:!0}):o;for(let p of C(r))if(!d.call(c,p))l(c,p,{get:f.bind(r,p),enumerable:!0});if(t)n.set(r,c);return c},B=(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(!d.call(e,t))l(e,t,{get:f.bind(r,t),enumerable:!(o=h(r,t))||o.enumerable})}return m.set(r,e),e},m;var P=(r)=>r;function L(r,e){this[r]=P.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=B(v);var a=x(require("react")),u=({children:r,size:e=24,ariaLabel:o,color:t,ariaHidden:n=!0,style:s,...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,...s}},o&&!n&&a.default.createElement("title",null,o),r)};var G={};g(G,{default:()=>S,IconControllerButtonCircle:()=>k});module.exports=B(G);var i=x(require("react"));var k=(r)=>{return i.default.createElement(u,{...r,ariaLabel:"controller-button-circle, confirm, select, accept, continue"},i.default.createElement("circle",{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement("circle",{cx:"12",cy:"12",r:"4.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},S=k;
2
+
3
+ //# debugId=F07D435FC280CC0764756E2164756E21
@@ -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\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><circle cx=\"12\" cy=\"12\" r=\"4.5\" stroke=\"currentColor\" strokeWidth=\"2\" 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,wBAA4U,EAA5U,IAAqB,EAAO,UAAU,+DAA8D,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGtU",
9
+ "debugId": "F07D435FC280CC0764756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import c from"react";var l=({children:e,size:r=24,ariaLabel:n,color:s,ariaHidden:o=!0,style:i,...p})=>{return c.createElement("svg",{...p,"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,...i}},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",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement("circle",{cx:"12",cy:"12",r:"4.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},x=a;export{x as default,a as IconControllerButtonCircle};
2
+
3
+ //# debugId=75920B9F673124B264756E2164756E21
@@ -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\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><circle cx=\"12\" cy=\"12\" r=\"4.5\" stroke=\"currentColor\" strokeWidth=\"2\" 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,gBAA4U,EAA5U,IAAqB,EAAO,UAAU,+DAA8D,gBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGtU",
9
+ "debugId": "75920B9F673124B264756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconControllerButtonSquare: React.FC<CentralIconBaseProps>;
4
+ export default IconControllerButtonSquare;
@@ -0,0 +1,3 @@
1
+ var k=Object.create;var{getPrototypeOf:w,defineProperty:l,getOwnPropertyNames:C,getOwnPropertyDescriptor:y}=Object,d=Object.prototype.hasOwnProperty;function h(r){return this[r]}var I,b,x=(r,e,o)=>{var t=r!=null&&typeof r==="object";if(t){var n=e?I??=new WeakMap:b??=new WeakMap,p=n.get(r);if(p)return p}o=r!=null?k(w(r)):{};let s=e||!r||!r.__esModule?l(o,"default",{value:r,enumerable:!0}):o;for(let i of C(r))if(!d.call(s,i))l(s,i,{get:h.bind(r,i),enumerable:!0});if(t)n.set(r,s);return s},f=(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(!d.call(e,t))l(e,t,{get:h.bind(r,t),enumerable:!(o=y(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 g=(r,e)=>{for(var o in e)l(r,o,{get:e[o],enumerable:!0,configurable:!0,set:v.bind(e,o)})};var L={};g(L,{CentralIconBase:()=>u});module.exports=f(L);var c=x(require("react")),u=({children:r,size:e=24,ariaLabel:o,color:t,ariaHidden:n=!0,style:p,...s})=>{return c.default.createElement("svg",{...s,"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&&c.default.createElement("title",null,o),r)};var S={};g(S,{default:()=>G,IconControllerButtonSquare:()=>B});module.exports=f(S);var a=x(require("react"));var B=(r)=>{return a.default.createElement(u,{...r,ariaLabel:"controller-button-square, view, panel"},a.default.createElement("circle",{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),a.default.createElement("rect",{x:"8",y:"8",width:"8",height:"8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},G=B;
2
+
3
+ //# debugId=5C0AB9ABF64271C164756E2164756E21
@@ -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\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><rect x=\"8\" y=\"8\" width=\"8\" height=\"8\" stroke=\"currentColor\" strokeWidth=\"2\" 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,wBAA6T,EAA7T,IAAqB,EAAO,UAAU,yCAAwC,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,IAAI,EAAE,IAAI,MAAM,IAAI,OAAO,IAAI,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGvT",
9
+ "debugId": "5C0AB9ABF64271C164756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import s from"react";var l=({children:e,size:r=24,ariaLabel:n,color:p,ariaHidden:o=!0,style:a,...i})=>{return s.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,...a}},n&&!o&&s.createElement("title",null,n),e)};import t from"react";var c=(e)=>{return t.createElement(l,{...e,ariaLabel:"controller-button-square, view, panel"},t.createElement("circle",{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement("rect",{x:"8",y:"8",width:"8",height:"8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},x=c;export{x as default,c as IconControllerButtonSquare};
2
+
3
+ //# debugId=0E2D1332CEACA4F064756E2164756E21
@@ -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\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><rect x=\"8\" y=\"8\" width=\"8\" height=\"8\" stroke=\"currentColor\" strokeWidth=\"2\" 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,gBAA6T,EAA7T,IAAqB,EAAO,UAAU,yCAAwC,gBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,IAAI,EAAE,IAAI,MAAM,IAAI,OAAO,IAAI,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGvT",
9
+ "debugId": "0E2D1332CEACA4F064756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconControllerButtonTriangle: React.FC<CentralIconBaseProps>;
4
+ export default IconControllerButtonTriangle;
@@ -0,0 +1,3 @@
1
+ var k=Object.create;var{getPrototypeOf:I,defineProperty:p,getOwnPropertyNames:d,getOwnPropertyDescriptor:y}=Object,C=Object.prototype.hasOwnProperty;function g(r){return this[r]}var L,b,x=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var n=o?L??=new WeakMap:b??=new WeakMap,s=n.get(r);if(s)return s}e=r!=null?k(I(r)):{};let l=o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e;for(let i of d(r))if(!C.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 d(r))if(!C.call(o,t))p(o,t,{get:g.bind(r,t),enumerable:!(e=y(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:s,...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,...s}},e&&!n&&c.default.createElement("title",null,e),r)};var G={};B(G,{default:()=>S,IconControllerButtonTriangle:()=>h});module.exports=f(G);var a=x(require("react"));var h=(r)=>{return a.default.createElement(u,{...r,ariaLabel:"controller-button-triangle, menu, options, action, more, expand"},a.default.createElement("circle",{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),a.default.createElement("path",{d:"M12 7.68896L16.5 14.9362H7.5L12 7.68896Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},S=h;
2
+
3
+ //# debugId=F9AA9886B52D75CE64756E2164756E21
@@ -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\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 7.68896L16.5 14.9362H7.5L12 7.68896Z\" stroke=\"currentColor\" strokeWidth=\"2\" 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,wBAAmW,EAAnW,IAAqB,EAAO,UAAU,mEAAkE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,2CAA2C,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG7V",
9
+ "debugId": "F9AA9886B52D75CE64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import l from"react";var p=({children:o,size:r=24,ariaLabel:n,color:s,ariaHidden:e=!0,style:a,...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:s,...a}},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",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement("path",{d:"M12 7.68896L16.5 14.9362H7.5L12 7.68896Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},x=c;export{x as default,c as IconControllerButtonTriangle};
2
+
3
+ //# debugId=373348AC9B7C219F64756E2164756E21
@@ -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\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 7.68896L16.5 14.9362H7.5L12 7.68896Z\" stroke=\"currentColor\" strokeWidth=\"2\" 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,gBAAmW,EAAnW,IAAqB,EAAO,UAAU,mEAAkE,gBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,2CAA2C,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG7V",
9
+ "debugId": "373348AC9B7C219F64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconControllerButtonX: React.FC<CentralIconBaseProps>;
4
+ export default IconControllerButtonX;
@@ -0,0 +1,3 @@
1
+ var k=Object.create;var{getPrototypeOf:I,defineProperty:l,getOwnPropertyNames:d,getOwnPropertyDescriptor:y}=Object,C=Object.prototype.hasOwnProperty;function x(r){return this[r]}var L,b,f=(r,e,o)=>{var t=r!=null&&typeof r==="object";if(t){var n=e?L??=new WeakMap:b??=new WeakMap,p=n.get(r);if(p)return p}o=r!=null?k(I(r)):{};let s=e||!r||!r.__esModule?l(o,"default",{value:r,enumerable:!0}):o;for(let c of d(r))if(!C.call(s,c))l(s,c,{get:x.bind(r,c),enumerable:!0});if(t)n.set(r,s);return s},B=(r)=>{var e=(u??=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 d(r))if(!C.call(e,t))l(e,t,{get:x.bind(r,t),enumerable:!(o=y(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)l(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,...s})=>{return i.default.createElement("svg",{...s,"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:()=>h});module.exports=B(G);var a=f(require("react"));var h=(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",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),a.default.createElement("path",{d:"M8.875 8.875L15.125 15.125M15.125 8.875L8.875 15.125",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},S=h;
2
+
3
+ //# debugId=311DBCA51550E41D64756E2164756E21
@@ -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\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8.875 8.875L15.125 15.125M15.125 8.875L8.875 15.125\" stroke=\"currentColor\" strokeWidth=\"2\" 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,wBAA2W,EAA3W,IAAqB,EAAO,UAAU,+DAA8D,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,uDAAuD,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGrW",
9
+ "debugId": "311DBCA51550E41D64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import s from"react";var l=({children:e,size:r=24,ariaLabel:n,color:p,ariaHidden:o=!0,style:a,...c})=>{return s.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&&s.createElement("title",null,n),e)};import t from"react";var i=(e)=>{return t.createElement(l,{...e,ariaLabel:"controller-button-x, dismiss, close, cancel, delete, remove"},t.createElement("circle",{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement("path",{d:"M8.875 8.875L15.125 15.125M15.125 8.875L8.875 15.125",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},f=i;export{f as default,i as IconControllerButtonX};
2
+
3
+ //# debugId=66C13BA42C86519864756E2164756E21
@@ -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\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8.875 8.875L15.125 15.125M15.125 8.875L8.875 15.125\" stroke=\"currentColor\" strokeWidth=\"2\" 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,gBAA2W,EAA3W,IAAqB,EAAO,UAAU,+DAA8D,gBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,uDAAuD,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGrW",
9
+ "debugId": "66C13BA42C86519864756E2164756E21",
10
+ "names": []
11
+ }
package/IconPipe/index.js CHANGED
@@ -1,3 +1,3 @@
1
- var g=Object.create;var{getPrototypeOf:x,defineProperty:p,getOwnPropertyNames:c,getOwnPropertyDescriptor:B}=Object,h=Object.prototype.hasOwnProperty;function m(r){return this[r]}var I,P,C=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var s=o?I??=new WeakMap:P??=new WeakMap,a=s.get(r);if(a)return a}e=r!=null?g(x(r)):{};let i=o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e;for(let d of c(r))if(!h.call(i,d))p(i,d,{get:m.bind(r,d),enumerable:!0});if(t)s.set(r,i);return i},L=(r)=>{var o=(l??=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(!h.call(o,t))p(o,t,{get:m.bind(r,t),enumerable:!(e=B(r,t))||e.enumerable})}return l.set(r,o),o},l;var j=(r)=>r;function w(r,o){this[r]=j.bind(null,o)}var V=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0,configurable:!0,set:w.bind(o,e)})};var y={};V(y,{CentralIconBase:()=>k});module.exports=L(y);var u=C(require("react")),k=({children:r,size:o=24,ariaLabel:e,color:t,ariaHidden:s=!0,style:a,...i})=>{return u.default.createElement("svg",{...i,"aria-hidden":s,role:s?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&&!s&&u.default.createElement("title",null,e),r)};var M={};V(M,{default:()=>W,IconPipe:()=>f});module.exports=L(M);var n=C(require("react"));var f=(r)=>{return n.default.createElement(k,{...r,ariaLabel:"pipe, super mario"},n.default.createElement("path",{d:"M4 20H20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M18 10.5V19.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M6 19.5V10.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M4 4H20V10H4V4Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M8 4.5V9.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M10 10.5V19.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},W=f;
1
+ var g=Object.create;var{getPrototypeOf:x,defineProperty:i,getOwnPropertyNames:c,getOwnPropertyDescriptor:B}=Object,h=Object.prototype.hasOwnProperty;function m(r){return this[r]}var I,P,C=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var s=o?I??=new WeakMap:P??=new WeakMap,a=s.get(r);if(a)return a}e=r!=null?g(x(r)):{};let p=o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e;for(let d of c(r))if(!h.call(p,d))i(p,d,{get:m.bind(r,d),enumerable:!0});if(t)s.set(r,p);return p},L=(r)=>{var o=(l??=new WeakMap).get(r),e;if(o)return o;if(o=i({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of c(r))if(!h.call(o,t))i(o,t,{get:m.bind(r,t),enumerable:!(e=B(r,t))||e.enumerable})}return l.set(r,o),o},l;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:()=>k});module.exports=L(y);var u=C(require("react")),k=({children:r,size:o=24,ariaLabel:e,color:t,ariaHidden:s=!0,style:a,...p})=>{return u.default.createElement("svg",{...p,"aria-hidden":s,role:s?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&&!s&&u.default.createElement("title",null,e),r)};var M={};V(M,{default:()=>W,IconPipe:()=>f});module.exports=L(M);var n=C(require("react"));var f=(r)=>{return n.default.createElement(k,{...r,ariaLabel:"pipe, super mario, vpn"},n.default.createElement("path",{d:"M4 20H20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M18 10.5V19.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M6 19.5V10.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M4 4H20V10H4V4Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M8 4.5V9.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M10 10.5V19.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},W=f;
2
2
 
3
- //# debugId=5FAD39D09AF2BD2C64756E2164756E21
3
+ //# debugId=DCD3634873A276ED64756E2164756E21
@@ -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=\"M4 20H20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M18 10.5V19.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6 19.5V10.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4 4H20V10H4V4Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8 4.5V9.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M10 10.5V19.5\" stroke=\"currentColor\" strokeWidth=\"2\" 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=\"M4 20H20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M18 10.5V19.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6 19.5V10.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4 4H20V10H4V4Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8 4.5V9.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M10 10.5V19.5\" stroke=\"currentColor\" strokeWidth=\"2\" 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,wBAA6rB,EAA7rB,IAAqB,EAAO,UAAU,qBAAoB,wBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,eAAe,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,kBAAkB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGvrB",
9
- "debugId": "5FAD39D09AF2BD2C64756E2164756E21",
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,wBAAksB,EAAlsB,IAAqB,EAAO,UAAU,0BAAyB,wBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,eAAe,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,kBAAkB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG5rB",
9
+ "debugId": "DCD3634873A276ED64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import s from"react";var i=({children:e,size:o=24,ariaLabel:n,color:p,ariaHidden:t=!0,style:a,...d})=>{return s.createElement("svg",{...d,"aria-hidden":t,role:t?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:p,...a}},n&&!t&&s.createElement("title",null,n),e)};import r from"react";var u=(e)=>{return r.createElement(i,{...e,ariaLabel:"pipe, super mario"},r.createElement("path",{d:"M4 20H20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M18 10.5V19.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M6 19.5V10.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M4 4H20V10H4V4Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M8 4.5V9.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M10 10.5V19.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},C=u;export{C as default,u as IconPipe};
1
+ import s from"react";var p=({children:e,size:o=24,ariaLabel:n,color:i,ariaHidden:t=!0,style:a,...d})=>{return s.createElement("svg",{...d,"aria-hidden":t,role:t?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}},n&&!t&&s.createElement("title",null,n),e)};import r from"react";var u=(e)=>{return r.createElement(p,{...e,ariaLabel:"pipe, super mario, vpn"},r.createElement("path",{d:"M4 20H20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M18 10.5V19.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M6 19.5V10.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M4 4H20V10H4V4Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M8 4.5V9.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M10 10.5V19.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},C=u;export{C as default,u as IconPipe};
2
2
 
3
- //# debugId=110D53334F818C8364756E2164756E21
3
+ //# debugId=C7CF2066322FCE1E64756E2164756E21
@@ -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=\"M4 20H20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M18 10.5V19.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6 19.5V10.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4 4H20V10H4V4Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8 4.5V9.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M10 10.5V19.5\" stroke=\"currentColor\" strokeWidth=\"2\" 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=\"M4 20H20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M18 10.5V19.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6 19.5V10.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4 4H20V10H4V4Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8 4.5V9.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M10 10.5V19.5\" stroke=\"currentColor\" strokeWidth=\"2\" 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,gBAA6rB,EAA7rB,IAAqB,EAAO,UAAU,qBAAoB,gBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,eAAe,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,kBAAkB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGvrB",
9
- "debugId": "110D53334F818C8364756E2164756E21",
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,gBAAksB,EAAlsB,IAAqB,EAAO,UAAU,0BAAyB,gBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,eAAe,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,kBAAkB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG5rB",
9
+ "debugId": "C7CF2066322FCE1E64756E2164756E21",
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