@central-icons-react-native/round-outlined-radius-2-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.
Files changed (43) hide show
  1. package/IconFullScreen/index.d.ts +4 -0
  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/index.d.ts +4 -0
  7. package/IconFullscreen1/index.js +2 -0
  8. package/{IconFullScreen1 → IconFullscreen1}/index.js.map +1 -1
  9. package/IconFullscreen1/index.mjs +2 -0
  10. package/{IconFullScreen1 → IconFullscreen1}/index.mjs.map +1 -1
  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/IconRemix/index.d.ts +4 -0
  17. package/IconRemix/index.js +2 -0
  18. package/IconRemix/index.js.map +1 -0
  19. package/IconRemix/index.mjs +2 -0
  20. package/IconRemix/index.mjs.map +1 -0
  21. package/README.md +4 -3
  22. package/filtered-icons.json +36 -22
  23. package/icons/index.d.ts +4 -3
  24. package/icons-index.json +13 -11
  25. package/index.d.ts +4 -3
  26. package/index.js +1 -1
  27. package/index.js.map +1 -1
  28. package/index.mjs +1 -1
  29. package/index.mjs.map +1 -1
  30. package/license-check.js +1 -1
  31. package/package.json +1 -1
  32. package/tsx-icons.json +22 -15
  33. package/IconClapperboard/index.d.ts +0 -4
  34. package/IconClapperboard/index.js +0 -2
  35. package/IconClapperboard/index.js.map +0 -1
  36. package/IconClapperboard/index.mjs +0 -2
  37. package/IconClapperboard/index.mjs.map +0 -1
  38. package/IconFullScreen1/index.d.ts +0 -4
  39. package/IconFullScreen1/index.js +0 -2
  40. package/IconFullscreen/index.d.ts +0 -4
  41. package/IconFullscreen/index.js +0 -2
  42. package/IconFullscreen/index.js.map +0 -1
  43. package/IconFullscreen/index.mjs.map +0 -1
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconFullScreen: FC<CentralIconBaseProps>;
4
+ export default IconFullScreen;
@@ -0,0 +1,2 @@
1
+ "use strict";var f=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},s=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(a=B(o,t))||a.enumerable});return r};var C=(r,o,e)=>(e=r!=null?f(x(r)):{},s(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>s(n({},"__esModule",{value:!0}),r);var v={};d(v,{IconFullScreen:()=>u,default:()=>h});module.exports=g(v);var p=C(require("react"));var l=C(require("react")),m=require("react-native-svg"),c=({children:r,size:o=24,...e})=>l.default.createElement(m.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var i=require("react-native-svg"),u=r=>p.default.createElement(c,{...r},p.default.createElement(i.Path,{d:"M8 4H6C4.89543 4 4 4.89543 4 6V8M16 4H18C19.1046 4 20 4.89543 20 6V8M20 16V18C20 19.1046 19.1046 20 18 20H16M8 20H6C4.89543 20 4 19.1046 4 18V16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),h=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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFullScreen: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8 4H6C4.89543 4 4 4.89543 4 6V8M16 4H18C19.1046 4 20 4.89543 20 6V8M20 16V18C20 19.1046 19.1046 20 18 20H16M8 20H6C4.89543 20 4 19.1046 4 18V16\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFullScreen;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,oBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,mJACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconFullScreen_exports","__export","IconFullScreen","IconFullScreen_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFullScreen","props","React","CentralIconBase","IconFullScreen_default"]}
@@ -1,2 +1,2 @@
1
- import t from"react";import p from"react";import{Svg as a}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(a,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as s}from"react-native-svg";var C=o=>t.createElement(e,{...o},t.createElement(s,{d:"M8 4H6C4.89543 4 4 4.89543 4 6V8M16 4H18C19.1046 4 20 4.89543 20 6V8M20 16V18C20 19.1046 19.1046 20 18 20H16M8 20H6C4.89543 20 4 19.1046 4 18V16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),P=C;export{C as IconFullScreen1,P as default};
1
+ import t from"react";import p from"react";import{Svg as a}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(a,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as s}from"react-native-svg";var C=o=>t.createElement(e,{...o},t.createElement(s,{d:"M8 4H6C4.89543 4 4 4.89543 4 6V8M16 4H18C19.1046 4 20 4.89543 20 6V8M20 16V18C20 19.1046 19.1046 20 18 20H16M8 20H6C4.89543 20 4 19.1046 4 18V16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),P=C;export{C as IconFullScreen,P 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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFullScreen: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8 4H6C4.89543 4 4 4.89543 4 6V8M16 4H18C19.1046 4 20 4.89543 20 6V8M20 16V18C20 19.1046 19.1046 20 18 20H16M8 20H6C4.89543 20 4 19.1046 4 18V16\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFullScreen;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,mJACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFullScreen","props","React","CentralIconBase","IconFullScreen_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconFullscreen1: FC<CentralIconBaseProps>;
4
+ export default IconFullscreen1;
@@ -0,0 +1,2 @@
1
+ "use strict";var f=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(s=B(o,t))||s.enumerable});return r};var C=(r,o,e)=>(e=r!=null?f(x(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>a(n({},"__esModule",{value:!0}),r);var v={};d(v,{IconFullscreen1:()=>u,default:()=>h});module.exports=g(v);var p=C(require("react"));var l=C(require("react")),m=require("react-native-svg"),c=({children:r,size:o=24,...e})=>l.default.createElement(m.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var i=require("react-native-svg"),u=r=>p.default.createElement(c,{...r},p.default.createElement(i.Path,{d:"M7 5H5C3.89543 5 3 5.89543 3 7V9M17 5H19C20.1046 5 21 5.89543 21 7V9M21 15V17C21 18.1046 20.1046 19 19 19H17M7 19H5C3.89543 19 3 18.1046 3 17V15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),h=u;0&&(module.exports={IconFullscreen1});
2
+ //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconFullScreen1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFullScreen1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8 4H6C4.89543 4 4 4.89543 4 6V8M16 4H18C19.1046 4 20 4.89543 20 6V8M20 16V18C20 19.1046 19.1046 20 18 20H16M8 20H6C4.89543 20 4 19.1046 4 18V16\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFullScreen1;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,qBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,mJACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconFullScreen1_exports","__export","IconFullScreen1","IconFullScreen1_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFullScreen1","props","React","CentralIconBase","IconFullScreen1_default"]}
1
+ {"version":3,"sources":["../src/IconFullscreen1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFullscreen1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7 5H5C3.89543 5 3 5.89543 3 7V9M17 5H19C20.1046 5 21 5.89543 21 7V9M21 15V17C21 18.1046 20.1046 19 19 19H17M7 19H5C3.89543 19 3 18.1046 3 17V15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFullscreen1;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,qBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,mJACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconFullscreen1_exports","__export","IconFullscreen1","IconFullscreen1_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFullscreen1","props","React","CentralIconBase","IconFullscreen1_default"]}
@@ -0,0 +1,2 @@
1
+ import t from"react";import p from"react";import{Svg as s}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(s,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as a}from"react-native-svg";var C=o=>t.createElement(e,{...o},t.createElement(a,{d:"M7 5H5C3.89543 5 3 5.89543 3 7V9M17 5H19C20.1046 5 21 5.89543 21 7V9M21 15V17C21 18.1046 20.1046 19 19 19H17M7 19H5C3.89543 19 3 18.1046 3 17V15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),P=C;export{C as IconFullscreen1,P as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconFullScreen1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFullScreen1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8 4H6C4.89543 4 4 4.89543 4 6V8M16 4H18C19.1046 4 20 4.89543 20 6V8M20 16V18C20 19.1046 19.1046 20 18 20H16M8 20H6C4.89543 20 4 19.1046 4 18V16\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFullScreen1;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,mJACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFullScreen1","props","React","CentralIconBase","IconFullScreen1_default"]}
1
+ {"version":3,"sources":["../src/IconFullscreen1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFullscreen1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7 5H5C3.89543 5 3 5.89543 3 7V9M17 5H19C20.1046 5 21 5.89543 21 7V9M21 15V17C21 18.1046 20.1046 19 19 19H17M7 19H5C3.89543 19 3 18.1046 3 17V15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFullscreen1;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,mJACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFullscreen1","props","React","CentralIconBase","IconFullscreen1_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconFullscreen2: FC<CentralIconBaseProps>;
4
+ export default IconFullscreen2;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(s=B(o,t))||s.enumerable});return r};var a=(r,o,e)=>(e=r!=null?u(x(r)):{},C(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),d=r=>C(n({},"__esModule",{value:!0}),r);var v={};g(v,{IconFullscreen2:()=>i,default:()=>h});module.exports=d(v);var p=a(require("react"));var l=a(require("react")),m=require("react-native-svg"),c=({children:r,size:o=24,...e})=>l.default.createElement(m.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),i=r=>p.default.createElement(c,{...r},p.default.createElement(f.Path,{d:"M19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19H19C20.1046 19 21 18.1046 21 17V7C21 5.89543 20.1046 5 19 5Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"})),h=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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFullscreen2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19H19C20.1046 19 21 18.1046 21 17V7C21 5.89543 20.1046 5 19 5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFullscreen2;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,qBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,2HACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconFullscreen2_exports","__export","IconFullscreen2","IconFullscreen2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFullscreen2","props","React","CentralIconBase","IconFullscreen2_default"]}
@@ -1,2 +1,2 @@
1
- import t from"react";import p from"react";import{Svg as s}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(s,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as C}from"react-native-svg";var a=o=>t.createElement(e,{...o},t.createElement(C,{d:"M19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19H19C20.1046 19 21 18.1046 21 17V7C21 5.89543 20.1046 5 19 5Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"})),P=a;export{a as IconFullscreen,P as default};
1
+ import t from"react";import p from"react";import{Svg as s}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(s,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as C}from"react-native-svg";var a=o=>t.createElement(e,{...o},t.createElement(C,{d:"M19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19H19C20.1046 19 21 18.1046 21 17V7C21 5.89543 20.1046 5 19 5Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"})),P=a;export{a as IconFullscreen2,P 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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFullscreen2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19H19C20.1046 19 21 18.1046 21 17V7C21 5.89543 20.1046 5 19 5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFullscreen2;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,2HACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFullscreen2","props","React","CentralIconBase","IconFullscreen2_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconRemix: FC<CentralIconBaseProps>;
4
+ export default IconRemix;
@@ -0,0 +1,2 @@
1
+ "use strict";var c=Object.create;var i=Object.defineProperty;var l=Object.getOwnPropertyDescriptor;var m=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,f=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0})},d=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of m(o))!f.call(r,s)&&s!==e&&i(r,s,{get:()=>o[s],enumerable:!(p=l(o,s))||p.enumerable});return r};var k=(r,o,e)=>(e=r!=null?c(h(r)):{},d(o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e,r)),B=r=>d(i({},"__esModule",{value:!0}),r);var P={};x(P,{IconRemix:()=>a,default:()=>I});module.exports=B(P);var n=k(require("react"));var u=k(require("react")),C=require("react-native-svg"),L=({children:r,size:o=24,...e})=>u.default.createElement(C.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var t=require("react-native-svg"),a=r=>n.default.createElement(L,{...r},n.default.createElement(t.Path,{d:"M4 13V7C4 5.89543 4.89543 5 6 5H19",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M17.5 2.5L20 5L17.5 7.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M6.5 21.5L4 19L6.5 16.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M5 19H18C19.1046 19 20 18.1046 20 17V11",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M12 9V15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M9 12L15 12",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),I=a;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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconRemix: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4 13V7C4 5.89543 4.89543 5 6 5H19\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17.5 2.5L20 5L17.5 7.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M6.5 21.5L4 19L6.5 16.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M5 19H18C19.1046 19 20 18.1046 20 17V11\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 9V15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9 12L15 12\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRemix;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,eAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAuCC,GAEhD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,qCACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0BACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0BACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0CACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,cACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconRemix_exports","__export","IconRemix","IconRemix_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconRemix","props","React","CentralIconBase","IconRemix_default"]}
@@ -0,0 +1,2 @@
1
+ import r from"react";import i from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:o=24,...s})=>i.createElement(p,{...s,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},n);import{Path as e}from"react-native-svg";var d=n=>r.createElement(t,{...n},r.createElement(e,{d:"M4 13V7C4 5.89543 4.89543 5 6 5H19",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M17.5 2.5L20 5L17.5 7.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M6.5 21.5L4 19L6.5 16.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M5 19H18C19.1046 19 20 18.1046 20 17V11",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M12 9V15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M9 12L15 12",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),f=d;export{d as IconRemix,f 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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconRemix: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4 13V7C4 5.89543 4.89543 5 6 5H19\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17.5 2.5L20 5L17.5 7.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M6.5 21.5L4 19L6.5 16.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M5 19H18C19.1046 19 20 18.1046 20 17V11\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 9V15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9 12L15 12\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRemix;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAuCC,GAEhDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,qCACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0BACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0BACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0CACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,cACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconRemix","props","React","CentralIconBase","IconRemix_default"]}
package/README.md CHANGED
@@ -330,6 +330,7 @@ Below is a complete list of available icons:
330
330
  - IconMinimize45
331
331
  - IconOngoing
332
332
  - IconRandom
333
+ - IconRemix
333
334
  - IconRotate360Left
334
335
  - IconRotate360Right
335
336
  - IconShareArrowDown
@@ -547,7 +548,8 @@ Below is a complete list of available icons:
547
548
  - IconConnectors1
548
549
  - IconConnectors2
549
550
  - IconDevices
550
- - IconFullscreen
551
+ - IconFullscreen1
552
+ - IconFullscreen2
551
553
  - IconHaptic
552
554
  - IconImac
553
555
  - IconKeyboardCable
@@ -1234,7 +1236,6 @@ Below is a complete list of available icons:
1234
1236
  - IconCameraOff1
1235
1237
  - IconCapture
1236
1238
  - IconCat
1237
- - IconClapperboard
1238
1239
  - IconClosedCaptioning
1239
1240
  - IconContrast
1240
1241
  - IconCrop
@@ -1253,7 +1254,7 @@ Below is a complete list of available icons:
1253
1254
  - IconFocusSquare
1254
1255
  - IconFocusZoomIn
1255
1256
  - IconFocusZoomOut
1256
- - IconFullScreen1
1257
+ - IconFullScreen
1257
1258
  - IconGif
1258
1259
  - IconGifSquare
1259
1260
  - IconHd
@@ -6146,20 +6146,6 @@
6146
6146
  "packageName": "round-outlined-radius-2-stroke-2",
6147
6147
  "componentName": "IconCircleX"
6148
6148
  },
6149
- {
6150
- "category": "Photography & Video",
6151
- "svg": "<path d=\"M3 10H21M3 10V17C3 18.1046 3.89543 19 5 19H19C20.1046 19 21 18.1046 21 17V10M3 10V7C3 5.89543 3.89543 5 5 5H19C20.1046 5 21 5.89543 21 7V10M7.9 5.5L7.1 9.5M12.4 5.5L11.6 9.5M16.9 5.5L16.1 9.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
6152
- "iconName": "clapperboard",
6153
- "variant": {
6154
- "join": "round",
6155
- "filled": "off",
6156
- "radius": "2",
6157
- "stroke": "2"
6158
- },
6159
- "createdAt": "2025-02-15T21:11:33.782983+00:00",
6160
- "packageName": "round-outlined-radius-2-stroke-2",
6161
- "componentName": "IconClapperboard"
6162
- },
6163
6149
  {
6164
6150
  "category": "Social Media & Brands",
6165
6151
  "svg": "<path d=\"M5.92405 15.2962L9.85823 13.0903L9.92405 12.8981L9.85823 12.7918H9.66582L9.0076 12.7513L6.75949 12.6906L4.81013 12.6097L2.92152 12.5085L2.44557 12.4073L2 11.8204L2.04557 11.5269L2.44557 11.2588L3.01772 11.3094L4.28354 11.3954L6.18228 11.5269L7.55949 11.6079L9.6 11.8204H9.92405L9.96962 11.6888L9.85823 11.6079L9.77215 11.5269L7.8076 10.1963L5.68101 8.78978L4.56709 7.98027L3.96456 7.57045L3.66076 7.18594L3.52911 6.34607L4.07595 5.74399L4.81013 5.79459L4.99747 5.84518L5.74177 6.4169L7.33165 7.64635L9.4076 9.1743L9.71139 9.42727L9.83291 9.34126L9.8481 9.28055L9.71139 9.05287L8.58228 7.01391L7.37722 4.93954L6.84051 4.07943L6.69873 3.56337C6.6481 3.35087 6.61266 3.17379 6.61266 2.95624L7.23544 2.11131L7.57975 2L8.41013 2.11131L8.75949 2.41487L9.27595 3.59373L10.1114 5.45054L11.4076 7.97521L11.7873 8.72401L11.9899 9.41715L12.0658 9.62965H12.1975V9.50822L12.3038 8.08652L12.5013 6.34101L12.6937 4.09461L12.7595 3.46218L13.0734 2.70326L13.6962 2.29345L14.1823 2.52618L14.5823 3.0979L14.5266 3.46724L14.2886 5.01037L13.8228 7.42879L13.519 9.04781H13.6962L13.8987 8.84543L14.719 7.75765L16.0962 6.03744L16.7038 5.35441L17.4127 4.60056L17.8684 4.24134H18.7291L19.362 5.18239L19.0785 6.15381L18.1924 7.27701L17.4582 8.22818L16.4051 9.64483L15.7468 10.7781L15.8076 10.8692L15.9646 10.854L18.3443 10.3481L19.6304 10.1154L21.1646 9.85226L21.8582 10.1761L21.9342 10.5049L21.6608 11.1778L20.0203 11.5826L18.0962 11.9671L15.2304 12.6451L15.1949 12.6704L15.2354 12.721L16.5266 12.8424L17.0785 12.8728H18.4304L20.9468 13.06L21.6051 13.4951L22 14.0263L21.9342 14.4311L20.9215 14.9471L19.5544 14.6233L16.3646 13.8644L15.2709 13.5912H15.119V13.6823L16.0304 14.5727L17.7013 16.0804L19.7924 18.0233L19.8987 18.5039L19.6304 18.8834L19.3468 18.8429L17.5089 17.4617L16.8 16.8394L15.1949 15.4885H15.0886V15.6302L15.4582 16.1715L17.4127 19.106L17.5139 20.0066L17.3722 20.3L16.8658 20.4771L16.3089 20.3759L15.1646 18.7721L13.9848 16.9658L13.0329 15.3468L12.9165 15.4126L12.3544 21.4586L12.0911 21.7673L11.4835 22L10.9772 21.6155L10.7089 20.9932L10.9772 19.7637L11.3013 18.1599L11.5646 16.8849L11.8025 15.3013L11.9443 14.7751L11.9342 14.7397L11.8177 14.7549L10.6228 16.3941L8.80506 18.848L7.36709 20.386L7.02279 20.5226L6.42532 20.214L6.48101 19.6625L6.81519 19.1718L8.80506 16.642L10.0051 15.0736L10.7797 14.168L10.7747 14.0364H10.7291L5.44304 17.4667L4.50127 17.5882L4.0962 17.2087L4.14684 16.5864L4.33924 16.384L5.92911 15.2912L5.92405 15.2962Z\" fill=\"currentColor\"/>",
@@ -10599,9 +10585,9 @@
10599
10585
  "componentName": "IconFrisbeeGolf"
10600
10586
  },
10601
10587
  {
10602
- "category": "Devices & Signals",
10603
- "svg": "<path d=\"M19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19H19C20.1046 19 21 18.1046 21 17V7C21 5.89543 20.1046 5 19 5Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/>",
10604
- "iconName": "fullscreen",
10588
+ "category": "Photography & Video",
10589
+ "svg": "<path d=\"M8 4H6C4.89543 4 4 4.89543 4 6V8M16 4H18C19.1046 4 20 4.89543 20 6V8M20 16V18C20 19.1046 19.1046 20 18 20H16M8 20H6C4.89543 20 4 19.1046 4 18V16\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
10590
+ "iconName": "full-screen, focus",
10605
10591
  "variant": {
10606
10592
  "join": "round",
10607
10593
  "filled": "off",
@@ -10610,12 +10596,26 @@
10610
10596
  },
10611
10597
  "createdAt": "2025-02-15T21:11:33.738336+00:00",
10612
10598
  "packageName": "round-outlined-radius-2-stroke-2",
10613
- "componentName": "IconFullscreen"
10599
+ "componentName": "IconFullScreen"
10614
10600
  },
10615
10601
  {
10616
- "category": "Photography & Video",
10617
- "svg": "<path d=\"M8 4H6C4.89543 4 4 4.89543 4 6V8M16 4H18C19.1046 4 20 4.89543 20 6V8M20 16V18C20 19.1046 19.1046 20 18 20H16M8 20H6C4.89543 20 4 19.1046 4 18V16\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
10618
- "iconName": "full-screen, focus",
10602
+ "category": "Devices & Signals",
10603
+ "svg": "<path d=\"M7 5H5C3.89543 5 3 5.89543 3 7V9M17 5H19C20.1046 5 21 5.89543 21 7V9M21 15V17C21 18.1046 20.1046 19 19 19H17M7 19H5C3.89543 19 3 18.1046 3 17V15\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
10604
+ "iconName": "fullscreen-1",
10605
+ "variant": {
10606
+ "join": "round",
10607
+ "filled": "off",
10608
+ "radius": "2",
10609
+ "stroke": "2"
10610
+ },
10611
+ "createdAt": "2025-12-18T11:02:05.461637+00:00",
10612
+ "packageName": "round-outlined-radius-2-stroke-2",
10613
+ "componentName": "IconFullscreen1"
10614
+ },
10615
+ {
10616
+ "category": "Devices & Signals",
10617
+ "svg": "<path d=\"M19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19H19C20.1046 19 21 18.1046 21 17V7C21 5.89543 20.1046 5 19 5Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/>",
10618
+ "iconName": "fullscreen-2",
10619
10619
  "variant": {
10620
10620
  "join": "round",
10621
10621
  "filled": "off",
@@ -10624,7 +10624,7 @@
10624
10624
  },
10625
10625
  "createdAt": "2025-02-15T21:11:33.738336+00:00",
10626
10626
  "packageName": "round-outlined-radius-2-stroke-2",
10627
- "componentName": "IconFullScreen1"
10627
+ "componentName": "IconFullscreen2"
10628
10628
  },
10629
10629
  {
10630
10630
  "category": "Things",
@@ -17038,6 +17038,20 @@
17038
17038
  "packageName": "round-outlined-radius-2-stroke-2",
17039
17039
  "componentName": "IconReddit"
17040
17040
  },
17041
+ {
17042
+ "category": "Arrows",
17043
+ "svg": "<path d=\"M4 13V7C4 5.89543 4.89543 5 6 5H19\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.5 2.5L20 5L17.5 7.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.5 21.5L4 19L6.5 16.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5 19H18C19.1046 19 20 18.1046 20 17V11\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 9V15\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9 12L15 12\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
17044
+ "iconName": "remix, new-try, repeat",
17045
+ "variant": {
17046
+ "join": "round",
17047
+ "filled": "off",
17048
+ "radius": "2",
17049
+ "stroke": "2"
17050
+ },
17051
+ "createdAt": "2025-12-18T09:02:26.493379+00:00",
17052
+ "packageName": "round-outlined-radius-2-stroke-2",
17053
+ "componentName": "IconRemix"
17054
+ },
17041
17055
  {
17042
17056
  "category": "Photography & Video",
17043
17057
  "svg": "<path d=\"M18 4H6C4.89543 4 4 4.89543 4 6V18C4 19.1046 4.89543 20 6 20H18C19.1046 20 20 19.1046 20 18V6C20 4.89543 19.1046 4 18 4Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"12\" cy=\"12\" r=\"3\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.5 9.5L19 5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.5 14.5L5 19\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4 11L11 4\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13 20L20 13\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
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"
@@ -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"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/round-outlined-radius-2-stroke-2",
3
- "version": "1.1.72",
3
+ "version": "1.1.75",
4
4
  "style": "round-outlined-radius-2-stroke-2",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-2-stroke-2/IconHome';",
@@ -11,7 +11,7 @@
11
11
  "withProps": "<IconHome size={32} color=\"#007AFF\" />",
12
12
  "central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
13
13
  },
14
- "totalIcons": 1647,
14
+ "totalIcons": 1648,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
17
  "count": 63,
@@ -96,7 +96,7 @@
96
96
  ]
97
97
  },
98
98
  "Arrows": {
99
- "count": 119,
99
+ "count": 120,
100
100
  "icons": [
101
101
  "IconArrow",
102
102
  "IconArrowBottomTop",
@@ -204,6 +204,7 @@
204
204
  "IconMinimize45",
205
205
  "IconOngoing",
206
206
  "IconRandom",
207
+ "IconRemix",
207
208
  "IconRotate360Left",
208
209
  "IconRotate360Right",
209
210
  "IconShareArrowDown",
@@ -414,7 +415,7 @@
414
415
  ]
415
416
  },
416
417
  "Devices & Signals": {
417
- "count": 69,
418
+ "count": 70,
418
419
  "icons": [
419
420
  "IconAirdrop",
420
421
  "IconAirplay",
@@ -435,7 +436,8 @@
435
436
  "IconConnectors1",
436
437
  "IconConnectors2",
437
438
  "IconDevices",
438
- "IconFullscreen",
439
+ "IconFullscreen1",
440
+ "IconFullscreen2",
439
441
  "IconHaptic",
440
442
  "IconImac",
441
443
  "IconKeyboardCable",
@@ -1124,7 +1126,7 @@
1124
1126
  ]
1125
1127
  },
1126
1128
  "Photography & Video": {
1127
- "count": 80,
1129
+ "count": 79,
1128
1130
  "icons": [
1129
1131
  "Icon4k",
1130
1132
  "IconAdjustPhoto",
@@ -1150,7 +1152,6 @@
1150
1152
  "IconCameraOff1",
1151
1153
  "IconCapture",
1152
1154
  "IconCat",
1153
- "IconClapperboard",
1154
1155
  "IconClosedCaptioning",
1155
1156
  "IconContrast",
1156
1157
  "IconCrop",
@@ -1169,7 +1170,7 @@
1169
1170
  "IconFocusSquare",
1170
1171
  "IconFocusZoomIn",
1171
1172
  "IconFocusZoomOut",
1172
- "IconFullScreen1",
1173
+ "IconFullScreen",
1173
1174
  "IconGif",
1174
1175
  "IconGifSquare",
1175
1176
  "IconHd",
@@ -2276,7 +2277,6 @@
2276
2277
  "IconCircleRecord": "circle-record, voicemail, band, tape",
2277
2278
  "IconCirclesThree": "circles-three, bubbles",
2278
2279
  "IconCircleX": "circle-x, close, checkbox, remove",
2279
- "IconClapperboard": "clapperboard",
2280
2280
  "IconClaudeai": "claudeai",
2281
2281
  "IconClipboard": "clipboard, copy, list",
2282
2282
  "IconClipboard2": "clipboard-2, copy, list",
@@ -2594,8 +2594,9 @@
2594
2594
  "IconFridge": "fridge",
2595
2595
  "IconFrisbee": "frisbee",
2596
2596
  "IconFrisbeeGolf": "frisbee-golf",
2597
- "IconFullscreen": "fullscreen",
2598
- "IconFullScreen1": "full-screen, focus",
2597
+ "IconFullScreen": "full-screen, focus",
2598
+ "IconFullscreen1": "fullscreen-1",
2599
+ "IconFullscreen2": "fullscreen-2",
2599
2600
  "IconGalaxy": "galaxy, dark-hole",
2600
2601
  "IconGamepad": "gamepad, gaming, joystick",
2601
2602
  "IconGamepadControls": "gamepad-controls, joystick",
@@ -3054,6 +3055,7 @@
3054
3055
  "IconRecord": "record",
3055
3056
  "IconRecraft": "recraft",
3056
3057
  "IconReddit": "reddit",
3058
+ "IconRemix": "remix, new-try, repeat",
3057
3059
  "IconRemoveBackground": "remove-background",
3058
3060
  "IconRemoveBackground2": "remove-background-2",
3059
3061
  "IconRemoveFromBasket": "remove-from-basket",
package/index.d.ts CHANGED
@@ -437,7 +437,6 @@ export { IconCircleQuestionmark, default as IconCircleQuestionmarkDefault, } fro
437
437
  export { IconCircleRecord, default as IconCircleRecordDefault, } from "./IconCircleRecord";
438
438
  export { IconCircleX, default as IconCircleXDefault } from "./IconCircleX";
439
439
  export { IconCirclesThree, default as IconCirclesThreeDefault, } from "./IconCirclesThree";
440
- export { IconClapperboard, default as IconClapperboardDefault, } from "./IconClapperboard";
441
440
  export { IconClaudeai, default as IconClaudeaiDefault } from "./IconClaudeai";
442
441
  export { IconClipboard, default as IconClipboardDefault, } from "./IconClipboard";
443
442
  export { IconClipboard2, default as IconClipboard2Default, } from "./IconClipboard2";
@@ -755,8 +754,9 @@ export { IconFramer, default as IconFramerDefault } from "./IconFramer";
755
754
  export { IconFridge, default as IconFridgeDefault } from "./IconFridge";
756
755
  export { IconFrisbee, default as IconFrisbeeDefault } from "./IconFrisbee";
757
756
  export { IconFrisbeeGolf, default as IconFrisbeeGolfDefault, } from "./IconFrisbeeGolf";
758
- export { IconFullScreen1, default as IconFullScreen1Default, } from "./IconFullScreen1";
759
- export { IconFullscreen, default as IconFullscreenDefault, } from "./IconFullscreen";
757
+ export { IconFullScreen, default as IconFullScreenDefault, } from "./IconFullScreen";
758
+ export { IconFullscreen1, default as IconFullscreen1Default, } from "./IconFullscreen1";
759
+ export { IconFullscreen2, default as IconFullscreen2Default, } from "./IconFullscreen2";
760
760
  export { IconGalaxy, default as IconGalaxyDefault } from "./IconGalaxy";
761
761
  export { IconGamepad, default as IconGamepadDefault } from "./IconGamepad";
762
762
  export { IconGamepadControls, default as IconGamepadControlsDefault, } from "./IconGamepadControls";
@@ -1215,6 +1215,7 @@ export { IconReceiptionBell, default as IconReceiptionBellDefault, } from "./Ico
1215
1215
  export { IconRecord, default as IconRecordDefault } from "./IconRecord";
1216
1216
  export { IconRecraft, default as IconRecraftDefault } from "./IconRecraft";
1217
1217
  export { IconReddit, default as IconRedditDefault } from "./IconReddit";
1218
+ export { IconRemix, default as IconRemixDefault } from "./IconRemix";
1218
1219
  export { IconRemoveBackground, default as IconRemoveBackgroundDefault, } from "./IconRemoveBackground";
1219
1220
  export { IconRemoveBackground2, default as IconRemoveBackground2Default, } from "./IconRemoveBackground2";
1220
1221
  export { IconRemoveFromBasket, default as IconRemoveFromBasketDefault, } from "./IconRemoveFromBasket";