@central-icons-react/square-filled-radius-0-stroke-2 1.1.72 → 1.1.75
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/{IconFullscreen → IconFullScreen}/index.d.ts +2 -2
- package/IconFullScreen/index.js +2 -0
- package/IconFullScreen/index.js.map +1 -0
- package/{IconFullScreen1 → IconFullScreen}/index.mjs +1 -1
- package/IconFullScreen/index.mjs.map +1 -0
- package/{IconFullScreen1 → IconFullscreen1}/index.d.ts +2 -2
- package/IconFullscreen1/index.js +2 -0
- package/{IconFullScreen1 → IconFullscreen1}/index.js.map +1 -1
- package/IconFullscreen1/index.mjs +2 -0
- package/{IconFullScreen1 → IconFullscreen1}/index.mjs.map +1 -1
- package/IconFullscreen2/index.d.ts +4 -0
- package/IconFullscreen2/index.js +2 -0
- package/IconFullscreen2/index.js.map +1 -0
- package/{IconFullscreen → IconFullscreen2}/index.mjs +1 -1
- package/IconFullscreen2/index.mjs.map +1 -0
- package/IconRemix/index.d.ts +4 -0
- package/IconRemix/index.js +2 -0
- package/IconRemix/index.js.map +1 -0
- package/IconRemix/index.mjs +2 -0
- package/IconRemix/index.mjs.map +1 -0
- package/README.md +4 -3
- package/icons/index.d.ts +4 -3
- 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 +13 -11
- package/index.d.ts +11 -10
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/IconClapperboard/index.d.ts +0 -4
- package/IconClapperboard/index.js +0 -2
- package/IconClapperboard/index.js.map +0 -1
- package/IconClapperboard/index.mjs +0 -2
- package/IconClapperboard/index.mjs.map +0 -1
- package/IconFullScreen1/index.js +0 -2
- package/IconFullscreen/index.js +0 -2
- package/IconFullscreen/index.js.map +0 -1
- package/IconFullscreen/index.mjs.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { type CentralIconBaseProps } from "../CentralIconBase";
|
|
3
|
-
export declare const
|
|
4
|
-
export default
|
|
3
|
+
export declare const IconFullScreen: React.FC<CentralIconBaseProps>;
|
|
4
|
+
export default IconFullScreen;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var l=Object.defineProperty;var H=Object.getOwnPropertyDescriptor;var C=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var x=(e,r)=>{for(var o in r)l(e,o,{get:r[o],enumerable:!0})},s=(e,r,o,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of C(r))!g.call(e,t)&&t!==o&&l(e,t,{get:()=>r[t],enumerable:!(n=H(r,t))||n.enumerable});return e};var c=(e,r,o)=>(o=e!=null?f(d(e)):{},s(r||!e||!e.__esModule?l(o,"default",{value:e,enumerable:!0}):o,e)),B=e=>s(l({},"__esModule",{value:!0}),e);var h={};x(h,{IconFullScreen:()=>i,default:()=>I});module.exports=B(h);var a=c(require("react"));var p=c(require("react")),V=({children:e,size:r=24,ariaLabel:o,color:n,ariaHidden:t=!0,style:m,...u})=>p.default.createElement("svg",{...u,"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:n,...m}},o&&!t&&p.default.createElement("title",null,o),e);var i=e=>a.default.createElement(V,{...e,ariaLabel:"full-screen, focus"},a.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 3H9V5H5V9H3V3ZM15 3H21V9H19V5H15V3ZM5 15V19H9V21H3V15H5ZM21 15V21H15V19H19V15H21Z",fill:"currentColor"})),I=i;0&&(module.exports={IconFullScreen});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFullScreen/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFullScreen: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"full-screen, focus\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M3 3H9V5H5V9H3V3ZM15 3H21V9H19V5H15V3ZM5 15V19H9V21H3V15H5ZM21 15V21H15V19H19V15H21Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFullScreen;\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,oBAAAE,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,EAAkDC,GAE3D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,sBACpC,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,uFACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconFullScreen_exports","__export","IconFullScreen","IconFullScreen_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconFullScreen","props","React","CentralIconBase","IconFullScreen_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import p from"react";import n from"react";var l=({children:r,size:e=24,ariaLabel:t,color:a,ariaHidden:o=!0,style:s,...c})=>n.createElement("svg",{...c,"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,...s}},t&&!o&&n.createElement("title",null,t),r);var V=r=>p.createElement(l,{...r,ariaLabel:"full-screen, focus"},p.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 3H9V5H5V9H3V3ZM15 3H21V9H19V5H15V3ZM5 15V19H9V21H3V15H5ZM21 15V21H15V19H19V15H21Z",fill:"currentColor"})),H=V;export{V as
|
|
1
|
+
import p from"react";import n from"react";var l=({children:r,size:e=24,ariaLabel:t,color:a,ariaHidden:o=!0,style:s,...c})=>n.createElement("svg",{...c,"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,...s}},t&&!o&&n.createElement("title",null,t),r);var V=r=>p.createElement(l,{...r,ariaLabel:"full-screen, focus"},p.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 3H9V5H5V9H3V3ZM15 3H21V9H19V5H15V3ZM5 15V19H9V21H3V15H5ZM21 15V21H15V19H19V15H21Z",fill:"currentColor"})),H=V;export{V as IconFullScreen,H as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFullScreen/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFullScreen: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"full-screen, focus\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M3 3H9V5H5V9H3V3ZM15 3H21V9H19V5H15V3ZM5 15V19H9V21H3V15H5ZM21 15V21H15V19H19V15H21Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFullScreen;\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,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,sBACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,uFACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFullScreen","props","React","CentralIconBase","IconFullScreen_default"]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { type CentralIconBaseProps } from "../CentralIconBase";
|
|
3
|
-
export declare const
|
|
4
|
-
export default
|
|
3
|
+
export declare const IconFullscreen1: React.FC<CentralIconBaseProps>;
|
|
4
|
+
export default IconFullscreen1;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var l=Object.defineProperty;var H=Object.getOwnPropertyDescriptor;var C=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(e,r)=>{for(var t in r)l(e,t,{get:r[t],enumerable:!0})},s=(e,r,t,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let o of C(r))!x.call(e,o)&&o!==t&&l(e,o,{get:()=>r[o],enumerable:!(n=H(r,o))||n.enumerable});return e};var V=(e,r,t)=>(t=e!=null?u(g(e)):{},s(r||!e||!e.__esModule?l(t,"default",{value:e,enumerable:!0}):t,e)),I=e=>s(l({},"__esModule",{value:!0}),e);var w={};B(w,{IconFullscreen1:()=>m,default:()=>h});module.exports=I(w);var a=V(require("react"));var p=V(require("react")),c=({children:e,size:r=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:i,...f})=>p.default.createElement("svg",{...f,"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:n,...i}},t&&!o&&p.default.createElement("title",null,t),e);var m=e=>a.default.createElement(c,{...e,ariaLabel:"fullscreen-1"},a.default.createElement("path",{d:"M4 14V18H8V20H2V14H4ZM22 14V20H16V18H20V14H22ZM8 4V6H4V10H2V4H8ZM22 4V10H20V6H16V4H22Z",fill:"currentColor"})),h=m;0&&(module.exports={IconFullscreen1});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/
|
|
1
|
+
{"version":3,"sources":["../src/IconFullscreen1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFullscreen1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"fullscreen-1\">\n <path\n d=\"M4 14V18H8V20H2V14H4ZM22 14V20H16V18H20V14H22ZM8 4V6H4V10H2V4H8ZM22 4V10H20V6H16V4H22Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFullscreen1;\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,qBAAAE,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,EAAmDC,GAE5D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,gBACpC,EAAAC,QAAA,cAAC,QACC,EAAE,yFACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconFullscreen1_exports","__export","IconFullscreen1","IconFullscreen1_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconFullscreen1","props","React","CentralIconBase","IconFullscreen1_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import p from"react";import n from"react";var l=({children:r,size:e=24,ariaLabel:o,color:a,ariaHidden:t=!0,style:s,...V})=>n.createElement("svg",{...V,"aria-hidden":t,role:t?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,...s}},o&&!t&&n.createElement("title",null,o),r);var c=r=>p.createElement(l,{...r,ariaLabel:"fullscreen-1"},p.createElement("path",{d:"M4 14V18H8V20H2V14H4ZM22 14V20H16V18H20V14H22ZM8 4V6H4V10H2V4H8ZM22 4V10H20V6H16V4H22Z",fill:"currentColor"})),H=c;export{c as IconFullscreen1,H as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/
|
|
1
|
+
{"version":3,"sources":["../src/IconFullscreen1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFullscreen1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"fullscreen-1\">\n <path\n d=\"M4 14V18H8V20H2V14H4ZM22 14V20H16V18H20V14H22ZM8 4V6H4V10H2V4H8ZM22 4V10H20V6H16V4H22Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFullscreen1;\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,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,gBACpCC,EAAA,cAAC,QACC,EAAE,yFACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFullscreen1","props","React","CentralIconBase","IconFullscreen1_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var C=Object.create;var l=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var h=(e,r)=>{for(var t in r)l(e,t,{get:r[t],enumerable:!0})},s=(e,r,t,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let o of x(r))!I.call(e,o)&&o!==t&&l(e,o,{get:()=>r[o],enumerable:!(n=g(r,o))||n.enumerable});return e};var c=(e,r,t)=>(t=e!=null?C(B(e)):{},s(r||!e||!e.__esModule?l(t,"default",{value:e,enumerable:!0}):t,e)),w=e=>s(l({},"__esModule",{value:!0}),e);var P={};h(P,{IconFullscreen2:()=>i,default:()=>y});module.exports=w(P);var a=c(require("react"));var p=c(require("react")),m=({children:e,size:r=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:f,...u})=>p.default.createElement("svg",{...u,"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:n,...f}},t&&!o&&p.default.createElement("title",null,t),e);var i=e=>a.default.createElement(m,{...e,ariaLabel:"fullscreen-2"},a.default.createElement("path",{d:"M2 4V20H22V4H2Z",fill:"currentColor"})),y=i;0&&(module.exports={IconFullscreen2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFullscreen2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFullscreen2: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"fullscreen-2\">\n <path d=\"M2 4V20H22V4H2Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconFullscreen2;\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,qBAAAE,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,EAAmDC,GAE5D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,gBACpC,EAAAC,QAAA,cAAC,QAAK,EAAE,kBAAkB,KAAK,eAAe,CAChD,EAIGE,EAAQJ","names":["IconFullscreen2_exports","__export","IconFullscreen2","IconFullscreen2_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconFullscreen2","props","React","CentralIconBase","IconFullscreen2_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import p from"react";import n from"react";var l=({children:r,size:e=24,ariaLabel:o,color:a,ariaHidden:t=!0,style:s,...c})=>n.createElement("svg",{...c,"aria-hidden":t,role:t?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,...s}},o&&!t&&n.createElement("title",null,o),r);var m=r=>p.createElement(l,{...r,ariaLabel:"fullscreen"},p.createElement("path",{d:"M2 4V20H22V4H2Z",fill:"currentColor"})),g=m;export{m as
|
|
1
|
+
import p from"react";import n from"react";var l=({children:r,size:e=24,ariaLabel:o,color:a,ariaHidden:t=!0,style:s,...c})=>n.createElement("svg",{...c,"aria-hidden":t,role:t?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,...s}},o&&!t&&n.createElement("title",null,o),r);var m=r=>p.createElement(l,{...r,ariaLabel:"fullscreen-2"},p.createElement("path",{d:"M2 4V20H22V4H2Z",fill:"currentColor"})),g=m;export{m as IconFullscreen2,g as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFullscreen2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFullscreen2: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"fullscreen-2\">\n <path d=\"M2 4V20H22V4H2Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconFullscreen2;\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,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,gBACpCC,EAAA,cAAC,QAAK,EAAE,kBAAkB,KAAK,eAAe,CAChD,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFullscreen2","props","React","CentralIconBase","IconFullscreen2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var p=Object.defineProperty;var C=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var H=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var g=(r,e)=>{for(var t in e)p(r,t,{get:e[t],enumerable:!0})},s=(r,e,t,l)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of u(e))!x.call(r,o)&&o!==t&&p(r,o,{get:()=>e[o],enumerable:!(l=C(e,o))||l.enumerable});return r};var i=(r,e,t)=>(t=r!=null?f(H(r)):{},s(e||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),h=r=>s(p({},"__esModule",{value:!0}),r);var I={};g(I,{IconRemix:()=>V,default:()=>B});module.exports=h(I);var n=i(require("react"));var a=i(require("react")),m=({children:r,size:e=24,ariaLabel:t,color:l,ariaHidden:o=!0,style:L,...c})=>a.default.createElement("svg",{...c,"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:l,...L}},t&&!o&&a.default.createElement("title",null,t),r);var V=r=>n.default.createElement(m,{...r,ariaLabel:"remix, new-try, repeat"},n.default.createElement("path",{d:"M21 20H6.41406L7.70703 21.293L6.29297 22.707L2.58594 19L6.29297 15.293L7.70703 16.707L6.41406 18H19V11H21V20Z",fill:"currentColor"}),n.default.createElement("path",{d:"M13 11H16V13H13V16H11V13H8V11H11V8H13V11Z",fill:"currentColor"}),n.default.createElement("path",{d:"M21.4141 5L17.707 8.70703L16.293 7.29297L17.5859 6H5V13H3V4H17.5859L16.293 2.70703L17.707 1.29297L21.4141 5Z",fill:"currentColor"})),B=V;0&&(module.exports={IconRemix});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRemix/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRemix: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"remix, new-try, repeat\">\n <path\n d=\"M21 20H6.41406L7.70703 21.293L6.29297 22.707L2.58594 19L6.29297 15.293L7.70703 16.707L6.41406 18H19V11H21V20Z\"\n fill=\"currentColor\"\n />\n <path d=\"M13 11H16V13H13V16H11V13H8V11H11V8H13V11Z\" fill=\"currentColor\" />\n <path\n d=\"M21.4141 5L17.707 8.70703L16.293 7.29297L17.5859 6H5V13H3V4H17.5859L16.293 2.70703L17.707 1.29297L21.4141 5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRemix;\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,eAAAE,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,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,0BACpC,EAAAC,QAAA,cAAC,QACC,EAAE,gHACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,4CAA4C,KAAK,eAAe,EACxE,EAAAA,QAAA,cAAC,QACC,EAAE,+GACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconRemix_exports","__export","IconRemix","IconRemix_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconRemix","props","React","CentralIconBase","IconRemix_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import l from"react";var p=({children:t,size:r=24,ariaLabel:n,color:a,ariaHidden:o=!0,style:s,...i})=>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:a,...s}},n&&!o&&l.createElement("title",null,n),t);var m=t=>e.createElement(p,{...t,ariaLabel:"remix, new-try, repeat"},e.createElement("path",{d:"M21 20H6.41406L7.70703 21.293L6.29297 22.707L2.58594 19L6.29297 15.293L7.70703 16.707L6.41406 18H19V11H21V20Z",fill:"currentColor"}),e.createElement("path",{d:"M13 11H16V13H13V16H11V13H8V11H11V8H13V11Z",fill:"currentColor"}),e.createElement("path",{d:"M21.4141 5L17.707 8.70703L16.293 7.29297L17.5859 6H5V13H3V4H17.5859L16.293 2.70703L17.707 1.29297L21.4141 5Z",fill:"currentColor"})),C=m;export{m as IconRemix,C as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRemix/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRemix: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"remix, new-try, repeat\">\n <path\n d=\"M21 20H6.41406L7.70703 21.293L6.29297 22.707L2.58594 19L6.29297 15.293L7.70703 16.707L6.41406 18H19V11H21V20Z\"\n fill=\"currentColor\"\n />\n <path d=\"M13 11H16V13H13V16H11V13H8V11H11V8H13V11Z\" fill=\"currentColor\" />\n <path\n d=\"M21.4141 5L17.707 8.70703L16.293 7.29297L17.5859 6H5V13H3V4H17.5859L16.293 2.70703L17.707 1.29297L21.4141 5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRemix;\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,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,0BACpCC,EAAA,cAAC,QACC,EAAE,gHACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,4CAA4C,KAAK,eAAe,EACxEA,EAAA,cAAC,QACC,EAAE,+GACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRemix","props","React","CentralIconBase","IconRemix_default"]}
|
package/README.md
CHANGED
|
@@ -364,6 +364,7 @@ Below is a complete list of available icons:
|
|
|
364
364
|
- IconMinimize45
|
|
365
365
|
- IconOngoing
|
|
366
366
|
- IconRandom
|
|
367
|
+
- IconRemix
|
|
367
368
|
- IconRotate360Left
|
|
368
369
|
- IconRotate360Right
|
|
369
370
|
- IconShareArrowDown
|
|
@@ -581,7 +582,8 @@ Below is a complete list of available icons:
|
|
|
581
582
|
- IconConnectors1
|
|
582
583
|
- IconConnectors2
|
|
583
584
|
- IconDevices
|
|
584
|
-
-
|
|
585
|
+
- IconFullscreen1
|
|
586
|
+
- IconFullscreen2
|
|
585
587
|
- IconHaptic
|
|
586
588
|
- IconImac
|
|
587
589
|
- IconKeyboardCable
|
|
@@ -1268,7 +1270,6 @@ Below is a complete list of available icons:
|
|
|
1268
1270
|
- IconCameraOff1
|
|
1269
1271
|
- IconCapture
|
|
1270
1272
|
- IconCat
|
|
1271
|
-
- IconClapperboard
|
|
1272
1273
|
- IconClosedCaptioning
|
|
1273
1274
|
- IconContrast
|
|
1274
1275
|
- IconCrop
|
|
@@ -1287,7 +1288,7 @@ Below is a complete list of available icons:
|
|
|
1287
1288
|
- IconFocusSquare
|
|
1288
1289
|
- IconFocusZoomIn
|
|
1289
1290
|
- IconFocusZoomOut
|
|
1290
|
-
-
|
|
1291
|
+
- IconFullScreen
|
|
1291
1292
|
- IconGif
|
|
1292
1293
|
- IconGifSquare
|
|
1293
1294
|
- IconHd
|
package/icons/index.d.ts
CHANGED
|
@@ -438,7 +438,6 @@ export type CentralIconName =
|
|
|
438
438
|
| "IconCircleRecord"
|
|
439
439
|
| "IconCirclesThree"
|
|
440
440
|
| "IconCircleX"
|
|
441
|
-
| "IconClapperboard"
|
|
442
441
|
| "IconClaudeai"
|
|
443
442
|
| "IconClipboard"
|
|
444
443
|
| "IconClipboard2"
|
|
@@ -756,8 +755,9 @@ export type CentralIconName =
|
|
|
756
755
|
| "IconFridge"
|
|
757
756
|
| "IconFrisbee"
|
|
758
757
|
| "IconFrisbeeGolf"
|
|
759
|
-
| "
|
|
760
|
-
| "
|
|
758
|
+
| "IconFullScreen"
|
|
759
|
+
| "IconFullscreen1"
|
|
760
|
+
| "IconFullscreen2"
|
|
761
761
|
| "IconGalaxy"
|
|
762
762
|
| "IconGamepad"
|
|
763
763
|
| "IconGamepadControls"
|
|
@@ -1216,6 +1216,7 @@ export type CentralIconName =
|
|
|
1216
1216
|
| "IconRecord"
|
|
1217
1217
|
| "IconRecraft"
|
|
1218
1218
|
| "IconReddit"
|
|
1219
|
+
| "IconRemix"
|
|
1219
1220
|
| "IconRemoveBackground"
|
|
1220
1221
|
| "IconRemoveBackground2"
|
|
1221
1222
|
| "IconRemoveFromBasket"
|