@central-icons-react/square-filled-radius-0-stroke-1.5 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.75 22H11.25V17H12.75V22Z",fill:"currentColor"}),n.default.createElement("path",{d:"M13.0615 12L5.45996 19.6016L4.39941 18.54L10.1885 12.75H2V11.25H10.1904L4.39941 5.45898L5.45996 4.39844L13.0615 12Z",fill:"currentColor"}),n.default.createElement("path",{d:"M19.6016 18.54L18.541 19.6006L15.0059 16.0654L16.0664 15.0049L19.6016 18.54Z",fill:"currentColor"}),n.default.createElement("path",{d:"M22 12.75H17V11.25H22V12.75Z",fill:"currentColor"}),n.default.createElement("path",{d:"M19.6016 5.45898L16.0664 8.99414L15.0059 7.93359L18.541 4.39844L19.6016 5.45898Z",fill:"currentColor"}),n.default.createElement("path",{d:"M12.75 7H11.25V2H12.75V7Z",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.75 22H11.25V17H12.75V22Z\" fill=\"currentColor\" />\n <path\n d=\"M13.0615 12L5.45996 19.6016L4.39941 18.54L10.1885 12.75H2V11.25H10.1904L4.39941 5.45898L5.45996 4.39844L13.0615 12Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M19.6016 18.54L18.541 19.6006L15.0059 16.0654L16.0664 15.0049L19.6016 18.54Z\"\n fill=\"currentColor\"\n />\n <path d=\"M22 12.75H17V11.25H22V12.75Z\" fill=\"currentColor\" />\n <path\n d=\"M19.6016 5.45898L16.0664 8.99414L15.0059 7.93359L18.541 4.39844L19.6016 5.45898Z\"\n fill=\"currentColor\"\n />\n <path d=\"M12.75 7H11.25V2H12.75V7Z\" 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,+BAA+B,KAAK,eAAe,EAC3D,EAAAA,QAAA,cAAC,QACC,EAAE,sHACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+EACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,+BAA+B,KAAK,eAAe,EAC3D,EAAAA,QAAA,cAAC,QACC,EAAE,mFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,CAC1D,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.75 22H11.25V17H12.75V22Z",fill:"currentColor"}),r.createElement("path",{d:"M13.0615 12L5.45996 19.6016L4.39941 18.54L10.1885 12.75H2V11.25H10.1904L4.39941 5.45898L5.45996 4.39844L13.0615 12Z",fill:"currentColor"}),r.createElement("path",{d:"M19.6016 18.54L18.541 19.6006L15.0059 16.0654L16.0664 15.0049L19.6016 18.54Z",fill:"currentColor"}),r.createElement("path",{d:"M22 12.75H17V11.25H22V12.75Z",fill:"currentColor"}),r.createElement("path",{d:"M19.6016 5.45898L16.0664 8.99414L15.0059 7.93359L18.541 4.39844L19.6016 5.45898Z",fill:"currentColor"}),r.createElement("path",{d:"M12.75 7H11.25V2H12.75V7Z",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.75 22H11.25V17H12.75V22Z\" fill=\"currentColor\" />\n <path\n d=\"M13.0615 12L5.45996 19.6016L4.39941 18.54L10.1885 12.75H2V11.25H10.1904L4.39941 5.45898L5.45996 4.39844L13.0615 12Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M19.6016 18.54L18.541 19.6006L15.0059 16.0654L16.0664 15.0049L19.6016 18.54Z\"\n fill=\"currentColor\"\n />\n <path d=\"M22 12.75H17V11.25H22V12.75Z\" fill=\"currentColor\" />\n <path\n d=\"M19.6016 5.45898L16.0664 8.99414L15.0059 7.93359L18.541 4.39844L19.6016 5.45898Z\"\n fill=\"currentColor\"\n />\n <path d=\"M12.75 7H11.25V2H12.75V7Z\" 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,+BAA+B,KAAK,eAAe,EAC3DA,EAAA,cAAC,QACC,EAAE,sHACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,+EACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,+BAA+B,KAAK,eAAe,EAC3DA,EAAA,cAAC,QACC,EAAE,mFACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,CAC1D,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRandom","props","React","CentralIconBase","IconRandom_default"]}
|
package/README.md
CHANGED