@central-icons-react/square-outlined-radius-0-stroke-1 1.1.73 → 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.
Files changed (40) hide show
  1. package/{IconFullscreen → IconFullScreen}/index.d.ts +2 -2
  2. package/IconFullScreen/index.js +2 -0
  3. package/IconFullScreen/index.js.map +1 -0
  4. package/{IconFullScreen1 → IconFullScreen}/index.mjs +1 -1
  5. package/IconFullScreen/index.mjs.map +1 -0
  6. package/{IconFullScreen1 → IconFullscreen1}/index.d.ts +2 -2
  7. package/IconFullscreen1/index.js +2 -0
  8. package/IconFullscreen1/index.js.map +1 -0
  9. package/IconFullscreen1/index.mjs +2 -0
  10. package/IconFullscreen1/index.mjs.map +1 -0
  11. package/IconFullscreen2/index.d.ts +4 -0
  12. package/IconFullscreen2/index.js +2 -0
  13. package/IconFullscreen2/index.js.map +1 -0
  14. package/{IconFullscreen → IconFullscreen2}/index.mjs +1 -1
  15. package/IconFullscreen2/index.mjs.map +1 -0
  16. package/README.md +3 -3
  17. package/icons/index.d.ts +3 -3
  18. package/icons/index.js +1 -1
  19. package/icons/index.js.map +1 -1
  20. package/icons/index.mjs +1 -1
  21. package/icons/index.mjs.map +1 -1
  22. package/icons-index.json +9 -9
  23. package/index.d.ts +10 -10
  24. package/index.js +1 -1
  25. package/index.js.map +1 -1
  26. package/index.mjs +1 -1
  27. package/index.mjs.map +1 -1
  28. package/license-check.js +1 -1
  29. package/package.json +1 -1
  30. package/IconClapperboard/index.d.ts +0 -4
  31. package/IconClapperboard/index.js +0 -2
  32. package/IconClapperboard/index.js.map +0 -1
  33. package/IconClapperboard/index.mjs +0 -2
  34. package/IconClapperboard/index.mjs.map +0 -1
  35. package/IconFullScreen1/index.js +0 -2
  36. package/IconFullScreen1/index.js.map +0 -1
  37. package/IconFullScreen1/index.mjs.map +0 -1
  38. package/IconFullscreen/index.js +0 -2
  39. package/IconFullscreen/index.js.map +0 -1
  40. 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 IconFullscreen: React.FC<CentralIconBaseProps>;
4
- export default IconFullscreen;
3
+ export declare const IconFullScreen: React.FC<CentralIconBaseProps>;
4
+ export default IconFullScreen;
@@ -0,0 +1,2 @@
1
+ "use strict";var C=Object.create;var p=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var V=(e,r)=>{for(var t in r)p(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&&p(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?p(t,"default",{value:e,enumerable:!0}):t,e)),h=e=>s(p({},"__esModule",{value:!0}),e);var y={};V(y,{IconFullScreen:()=>u,default:()=>w});module.exports=h(y);var l=c(require("react"));var a=c(require("react")),m=({children:e,size:r=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:i,...f})=>a.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&&a.default.createElement("title",null,t),e);var u=e=>l.default.createElement(m,{...e,ariaLabel:"full-screen, focus"},l.default.createElement("path",{d:"M8.5 3.5H3.5V8.5M15.5 3.5H20.5V8.5M20.5 15.5V20.5H15.5M8.5 20.5H3.5V15.5",stroke:"currentColor",strokeLinecap:"square"})),w=u;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 d=\"M8.5 3.5H3.5V8.5M15.5 3.5H20.5V8.5M20.5 15.5V20.5H15.5M8.5 20.5H3.5V15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\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,EAAE,2EACF,OAAO,eACP,cAAc,SAChB,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 a from"react";import n from"react";var p=({children:r,size:e=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 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,...s}},o&&!t&&n.createElement("title",null,o),r);var m=r=>a.createElement(p,{...r,ariaLabel:"full-screen, focus"},a.createElement("path",{d:"M8.5 3.5H3.5V8.5M15.5 3.5H20.5V8.5M20.5 15.5V20.5H15.5M8.5 20.5H3.5V15.5",stroke:"currentColor",strokeLinecap:"square"})),g=m;export{m as IconFullScreen1,g as default};
1
+ import a from"react";import n from"react";var p=({children:r,size:e=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 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,...s}},o&&!t&&n.createElement("title",null,o),r);var m=r=>a.createElement(p,{...r,ariaLabel:"full-screen, focus"},a.createElement("path",{d:"M8.5 3.5H3.5V8.5M15.5 3.5H20.5V8.5M20.5 15.5V20.5H15.5M8.5 20.5H3.5V15.5",stroke:"currentColor",strokeLinecap:"square"})),g=m;export{m as IconFullScreen,g 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 d=\"M8.5 3.5H3.5V8.5M15.5 3.5H20.5V8.5M20.5 15.5V20.5H15.5M8.5 20.5H3.5V15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\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,EAAE,2EACF,OAAO,eACP,cAAc,SAChB,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 IconFullScreen1: React.FC<CentralIconBaseProps>;
4
- export default IconFullScreen1;
3
+ export declare const IconFullscreen1: React.FC<CentralIconBaseProps>;
4
+ export default IconFullscreen1;
@@ -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 V=(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)),h=e=>s(l({},"__esModule",{value:!0}),e);var y={};V(y,{IconFullscreen1:()=>i,default:()=>w});module.exports=h(y);var a=c(require("react"));var p=c(require("react")),m=({children:e,size:r=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:u,...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,...u}},t&&!o&&p.default.createElement("title",null,t),e);var i=e=>a.default.createElement(m,{...e,ariaLabel:"fullscreen-1"},a.default.createElement("path",{d:"M8 4.5H2.5V10M16 4.5H21.5V10M21.5 14V19.5H16M8 19.5H2.5V14",stroke:"currentColor"})),w=i;0&&(module.exports={IconFullscreen1});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
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=\"M8 4.5H2.5V10M16 4.5H21.5V10M21.5 14V19.5H16M8 19.5H2.5V14\"\n stroke=\"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,6DACF,OAAO,eACT,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,...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-1"},p.createElement("path",{d:"M8 4.5H2.5V10M16 4.5H21.5V10M21.5 14V19.5H16M8 19.5H2.5V14",stroke:"currentColor"})),g=m;export{m as IconFullscreen1,g as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
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=\"M8 4.5H2.5V10M16 4.5H21.5V10M21.5 14V19.5H16M8 19.5H2.5V14\"\n stroke=\"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,6DACF,OAAO,eACT,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFullscreen1","props","React","CentralIconBase","IconFullscreen1_default"]}
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconFullscreen2: React.FC<CentralIconBaseProps>;
4
+ export default IconFullscreen2;
@@ -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:u,...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,...u}},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:"M21.5 4.5H2.5V19.5H21.5V4.5Z",stroke:"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=\"M21.5 4.5H2.5V19.5H21.5V4.5Z\" stroke=\"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,+BAA+B,OAAO,eAAe,CAC/D,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:"M21.5 4.5H2.5V19.5H21.5V4.5Z",stroke:"currentColor"})),g=m;export{m as IconFullscreen,g as default};
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:"M21.5 4.5H2.5V19.5H21.5V4.5Z",stroke:"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=\"M21.5 4.5H2.5V19.5H21.5V4.5Z\" stroke=\"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,+BAA+B,OAAO,eAAe,CAC/D,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFullscreen2","props","React","CentralIconBase","IconFullscreen2_default"]}
package/README.md CHANGED
@@ -582,7 +582,8 @@ Below is a complete list of available icons:
582
582
  - IconConnectors1
583
583
  - IconConnectors2
584
584
  - IconDevices
585
- - IconFullscreen
585
+ - IconFullscreen1
586
+ - IconFullscreen2
586
587
  - IconHaptic
587
588
  - IconImac
588
589
  - IconKeyboardCable
@@ -1269,7 +1270,6 @@ Below is a complete list of available icons:
1269
1270
  - IconCameraOff1
1270
1271
  - IconCapture
1271
1272
  - IconCat
1272
- - IconClapperboard
1273
1273
  - IconClosedCaptioning
1274
1274
  - IconContrast
1275
1275
  - IconCrop
@@ -1288,7 +1288,7 @@ Below is a complete list of available icons:
1288
1288
  - IconFocusSquare
1289
1289
  - IconFocusZoomIn
1290
1290
  - IconFocusZoomOut
1291
- - IconFullScreen1
1291
+ - IconFullScreen
1292
1292
  - IconGif
1293
1293
  - IconGifSquare
1294
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
- | "IconFullscreen"
760
- | "IconFullScreen1"
758
+ | "IconFullScreen"
759
+ | "IconFullscreen1"
760
+ | "IconFullscreen2"
761
761
  | "IconGalaxy"
762
762
  | "IconGamepad"
763
763
  | "IconGamepadControls"