@central-icons-react/square-filled-radius-0-stroke-1 0.0.48 → 0.0.49
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/IconRandom/index.d.ts +4 -0
- package/IconRandom/index.js +2 -0
- package/IconRandom/index.js.map +1 -0
- package/IconRandom/index.mjs +2 -0
- package/IconRandom/index.mjs.map +1 -0
- package/README.md +1 -0
- package/icons/index.d.ts +1 -0
- package/icons/index.js +1 -1
- package/icons/index.js.map +1 -1
- package/icons/index.mjs +1 -1
- package/icons/index.mjs.map +1 -1
- package/icons-index.json +5 -3
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var L=Object.create;var p=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,V=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},i=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of d(o))!V.call(r,e)&&e!==t&&p(r,e,{get:()=>o[e],enumerable:!(l=c(o,e))||l.enumerable});return r};var s=(r,o,t)=>(t=r!=null?L(h(r)):{},i(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),x=r=>i(p({},"__esModule",{value:!0}),r);var I={};g(I,{IconRandom:()=>f,default:()=>B});module.exports=x(I);var n=s(require("react"));var a=s(require("react")),m=({children:r,size:o=24,ariaLabel:t,color:l,ariaHidden:e=!0,style:u,...C})=>a.default.createElement("svg",{...C,"aria-hidden":e,role:e?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:l,...u}},t&&!e&&a.default.createElement("title",null,t),r);var f=r=>n.default.createElement(m,{...r,ariaLabel:"random, productivity, smart"},n.default.createElement("path",{d:"M12.5 22H11.5V17H12.5V22Z",fill:"currentColor"}),n.default.createElement("path",{d:"M12.708 12L5.2832 19.4248L4.57617 18.7168L10.792 12.5H2V11.5H10.7939L4.57617 5.28223L5.2832 4.5752L12.708 12Z",fill:"currentColor"}),n.default.createElement("path",{d:"M19.4258 18.7178L18.7178 19.4248L15.1826 15.8887L15.8896 15.1816L19.4258 18.7178Z",fill:"currentColor"}),n.default.createElement("path",{d:"M22 12.5H17V11.5H22V12.5Z",fill:"currentColor"}),n.default.createElement("path",{d:"M19.4258 5.28223L15.8896 8.81738L15.1826 8.11035L18.7188 4.5752L19.4258 5.28223Z",fill:"currentColor"}),n.default.createElement("path",{d:"M12.5 7H11.5V2H12.5V7Z",fill:"currentColor"})),B=f;0&&(module.exports={IconRandom});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRandom/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRandom: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"random, productivity, smart\">\n <path d=\"M12.5 22H11.5V17H12.5V22Z\" fill=\"currentColor\" />\n <path\n d=\"M12.708 12L5.2832 19.4248L4.57617 18.7168L10.792 12.5H2V11.5H10.7939L4.57617 5.28223L5.2832 4.5752L12.708 12Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M19.4258 18.7178L18.7178 19.4248L15.1826 15.8887L15.8896 15.1816L19.4258 18.7178Z\"\n fill=\"currentColor\"\n />\n <path d=\"M22 12.5H17V11.5H22V12.5Z\" fill=\"currentColor\" />\n <path\n d=\"M19.4258 5.28223L15.8896 8.81738L15.1826 8.11035L18.7188 4.5752L19.4258 5.28223Z\"\n fill=\"currentColor\"\n />\n <path d=\"M12.5 7H11.5V2H12.5V7Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconRandom;\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,gBAAAE,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,EAA8CC,GAEvD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,+BACpC,EAAAC,QAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,EACxD,EAAAA,QAAA,cAAC,QACC,EAAE,gHACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,EACxD,EAAAA,QAAA,cAAC,QACC,EAAE,mFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,yBAAyB,KAAK,eAAe,CACvD,EAIGE,EAAQJ","names":["IconRandom_exports","__export","IconRandom","IconRandom_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconRandom","props","React","CentralIconBase","IconRandom_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import l from"react";var p=({children:t,size:o=24,ariaLabel:n,color:a,ariaHidden:e=!0,style:i,...s})=>l.createElement("svg",{...s,"aria-hidden":e,role:e?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:a,...i}},n&&!e&&l.createElement("title",null,n),t);var m=t=>r.createElement(p,{...t,ariaLabel:"random, productivity, smart"},r.createElement("path",{d:"M12.5 22H11.5V17H12.5V22Z",fill:"currentColor"}),r.createElement("path",{d:"M12.708 12L5.2832 19.4248L4.57617 18.7168L10.792 12.5H2V11.5H10.7939L4.57617 5.28223L5.2832 4.5752L12.708 12Z",fill:"currentColor"}),r.createElement("path",{d:"M19.4258 18.7178L18.7178 19.4248L15.1826 15.8887L15.8896 15.1816L19.4258 18.7178Z",fill:"currentColor"}),r.createElement("path",{d:"M22 12.5H17V11.5H22V12.5Z",fill:"currentColor"}),r.createElement("path",{d:"M19.4258 5.28223L15.8896 8.81738L15.1826 8.11035L18.7188 4.5752L19.4258 5.28223Z",fill:"currentColor"}),r.createElement("path",{d:"M12.5 7H11.5V2H12.5V7Z",fill:"currentColor"})),c=m;export{m as IconRandom,c as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRandom/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRandom: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"random, productivity, smart\">\n <path d=\"M12.5 22H11.5V17H12.5V22Z\" fill=\"currentColor\" />\n <path\n d=\"M12.708 12L5.2832 19.4248L4.57617 18.7168L10.792 12.5H2V11.5H10.7939L4.57617 5.28223L5.2832 4.5752L12.708 12Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M19.4258 18.7178L18.7178 19.4248L15.1826 15.8887L15.8896 15.1816L19.4258 18.7178Z\"\n fill=\"currentColor\"\n />\n <path d=\"M22 12.5H17V11.5H22V12.5Z\" fill=\"currentColor\" />\n <path\n d=\"M19.4258 5.28223L15.8896 8.81738L15.1826 8.11035L18.7188 4.5752L19.4258 5.28223Z\"\n fill=\"currentColor\"\n />\n <path d=\"M12.5 7H11.5V2H12.5V7Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconRandom;\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,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,+BACpCC,EAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,EACxDA,EAAA,cAAC,QACC,EAAE,gHACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,EACxDA,EAAA,cAAC,QACC,EAAE,mFACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,yBAAyB,KAAK,eAAe,CACvD,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRandom","props","React","CentralIconBase","IconRandom_default"]}
|
package/README.md
CHANGED