@central-icons-react/square-outlined-radius-0-stroke-1 1.1.75 → 1.1.76

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.
@@ -1,2 +1,2 @@
1
- "use strict";var u=Object.create;var a=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var w=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(r,e)=>{for(var t in e)a(r,t,{get:e[t],enumerable:!0})},s=(r,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of h(e))!x.call(r,o)&&o!==t&&a(r,o,{get:()=>e[o],enumerable:!(n=f(e,o))||n.enumerable});return r};var c=(r,e,t)=>(t=r!=null?u(w(r)):{},s(e||!r||!r.__esModule?a(t,"default",{value:r,enumerable:!0}):t,r)),I=r=>s(a({},"__esModule",{value:!0}),r);var P={};B(P,{IconArrowRightCircle:()=>C,default:()=>y});module.exports=I(P);var l=c(require("react"));var p=c(require("react")),i=({children:r,size:e=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:m,...g})=>p.default.createElement("svg",{...g,"aria-hidden":o,role:o?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:n,...m}},t&&!o&&p.default.createElement("title",null,t),r);var C=r=>l.default.createElement(i,{...r,ariaLabel:"arrow-right-circle"},l.default.createElement("path",{d:"M7.5 12H16M13 8.5L16.5 12L13 15.5M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z",stroke:"currentColor",strokeLinecap:"square"})),y=C;0&&(module.exports={IconArrowRightCircle});
1
+ "use strict";var g=Object.create;var p=Object.defineProperty;var h=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var w=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(r,e)=>{for(var t in e)p(r,t,{get:e[t],enumerable:!0})},l=(r,e,t,a)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of f(e))!x.call(r,o)&&o!==t&&p(r,o,{get:()=>e[o],enumerable:!(a=h(e,o))||a.enumerable});return r};var c=(r,e,t)=>(t=r!=null?g(w(r)):{},l(e||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),I=r=>l(p({},"__esModule",{value:!0}),r);var k={};B(k,{IconArrowRightCircle:()=>C,default:()=>d});module.exports=I(k);var n=c(require("react"));var s=c(require("react")),i=({children:r,size:e=24,ariaLabel:t,color:a,ariaHidden:o=!0,style:m,...u})=>s.default.createElement("svg",{...u,"aria-hidden":o,role:o?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:a,...m}},t&&!o&&s.default.createElement("title",null,t),r);var C=r=>n.default.createElement(i,{...r,ariaLabel:"arrow-right-circle"},n.default.createElement("path",{d:"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M13 8.5L16.5 12L13 15.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M7.5 12H16",stroke:"currentColor",strokeLinecap:"square"})),d=C;0&&(module.exports={IconArrowRightCircle});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconArrowRightCircle/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowRightCircle: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"arrow-right-circle\">\n <path\n d=\"M7.5 12H16M13 8.5L16.5 12L13 15.5M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowRightCircle;\n","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"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,0BAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAAkB,oBCAlB,IAAAC,EAAkB,oBAQLC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAc,EAAAG,QAAA,cAAC,aAAOL,CAAU,EAC9CF,CACH,ED9BG,IAAMQ,EAAwDC,GAEjE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,sBACpC,EAAAC,QAAA,cAAC,QACC,EAAE,+KACF,OAAO,eACP,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconArrowRightCircle_exports","__export","IconArrowRightCircle","IconArrowRightCircle_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconArrowRightCircle","props","React","CentralIconBase","IconArrowRightCircle_default"]}
1
+ {"version":3,"sources":["../src/IconArrowRightCircle/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowRightCircle: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"arrow-right-circle\">\n <path\n d=\"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M13 8.5L16.5 12L13 15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path d=\"M7.5 12H16\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowRightCircle;\n","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"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,0BAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAAkB,oBCAlB,IAAAC,EAAkB,oBAQLC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAc,EAAAG,QAAA,cAAC,aAAOL,CAAU,EAC9CF,CACH,ED9BG,IAAMQ,EAAwDC,GAEjE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,sBACpC,EAAAC,QAAA,cAAC,QACC,EAAE,8IACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0BACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,aAAa,OAAO,eAAe,cAAc,SAAS,CACpE,EAIGE,EAAQJ","names":["IconArrowRightCircle_exports","__export","IconArrowRightCircle","IconArrowRightCircle_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconArrowRightCircle","props","React","CentralIconBase","IconArrowRightCircle_default"]}
@@ -1,2 +1,2 @@
1
- import p from"react";import n from"react";var a=({children:e,size:r=24,ariaLabel:o,color:l,ariaHidden:t=!0,style:s,...c})=>n.createElement("svg",{...c,"aria-hidden":t,role:t?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:l,...s}},o&&!t&&n.createElement("title",null,o),e);var i=e=>p.createElement(a,{...e,ariaLabel:"arrow-right-circle"},p.createElement("path",{d:"M7.5 12H16M13 8.5L16.5 12L13 15.5M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z",stroke:"currentColor",strokeLinecap:"square"})),f=i;export{i as IconArrowRightCircle,f as default};
1
+ import e from"react";import a from"react";var p=({children:t,size:r=24,ariaLabel:n,color:s,ariaHidden:o=!0,style:l,...c})=>a.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:s,...l}},n&&!o&&a.createElement("title",null,n),t);var i=t=>e.createElement(p,{...t,ariaLabel:"arrow-right-circle"},e.createElement("path",{d:"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z",stroke:"currentColor",strokeLinecap:"square"}),e.createElement("path",{d:"M13 8.5L16.5 12L13 15.5",stroke:"currentColor",strokeLinecap:"square"}),e.createElement("path",{d:"M7.5 12H16",stroke:"currentColor",strokeLinecap:"square"})),h=i;export{i as IconArrowRightCircle,h as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconArrowRightCircle/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowRightCircle: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"arrow-right-circle\">\n <path\n d=\"M7.5 12H16M13 8.5L16.5 12L13 15.5M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowRightCircle;\n","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"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAwDC,GAEjEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,sBACpCC,EAAA,cAAC,QACC,EAAE,+KACF,OAAO,eACP,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconArrowRightCircle","props","React","CentralIconBase","IconArrowRightCircle_default"]}
1
+ {"version":3,"sources":["../src/IconArrowRightCircle/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowRightCircle: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"arrow-right-circle\">\n <path\n d=\"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M13 8.5L16.5 12L13 15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path d=\"M7.5 12H16\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowRightCircle;\n","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"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAwDC,GAEjEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,sBACpCC,EAAA,cAAC,QACC,EAAE,8IACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,0BACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QAAK,EAAE,aAAa,OAAO,eAAe,cAAc,SAAS,CACpE,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconArrowRightCircle","props","React","CentralIconBase","IconArrowRightCircle_default"]}