@central-icons-react-native/round-filled-radius-3-stroke-1 1.1.22 → 1.1.23

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.
@@ -1,2 +1,2 @@
1
- "use strict";var B=Object.create;var n=Object.defineProperty;var u=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})},a=(r,o,e,l)=>{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:!(l=u(o,t))||l.enumerable});return r};var m=(r,o,e)=>(e=r!=null?B(x(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),d=r=>a(n({},"__esModule",{value:!0}),r);var F={};g(F,{IconFileBend:()=>i,default:()=>v});module.exports=d(F);var p=m(require("react"));var s=m(require("react")),f=require("react-native-svg"),c=({children:r,size:o=24,...e})=>s.default.createElement(f.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 C=require("react-native-svg"),i=r=>p.default.createElement(c,{...r},p.default.createElement(C.Path,{d:"M4 5.5C4 3.567 5.567 2 7.5 2H12.5V7C12.5 8.38071 13.6193 9.5 15 9.5H20V18.5C20 20.433 18.433 22 16.5 22H7.5C5.567 22 4 20.433 4 18.5V5.5Z",fill:"currentColor"}),p.default.createElement(C.Path,{d:"M19.6892 8.5C19.6498 8.44873 19.6069 8.39979 19.5607 8.35355L13.6464 2.43934C13.6002 2.39311 13.5513 2.3502 13.5 2.31079V7C13.5 7.82843 14.1716 8.5 15 8.5H19.6892Z",fill:"currentColor"})),v=i;0&&(module.exports={IconFileBend});
1
+ "use strict";var B=Object.create;var n=Object.defineProperty;var u=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})},a=(r,o,e,l)=>{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:!(l=u(o,t))||l.enumerable});return r};var m=(r,o,e)=>(e=r!=null?B(x(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),d=r=>a(n({},"__esModule",{value:!0}),r);var F={};g(F,{IconFileBend:()=>i,default:()=>v});module.exports=d(F);var p=m(require("react"));var s=m(require("react")),f=require("react-native-svg"),c=({children:r,size:o=24,...e})=>s.default.createElement(f.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 C=require("react-native-svg"),i=r=>p.default.createElement(c,{...r},p.default.createElement(C.Path,{d:"M4 5.5C4 3.567 5.567 2 7.5 2H12.5V7C12.5 8.38071 13.6193 9.5 15 9.5H20V18.5C20 20.433 18.433 22 16.5 22H7.5C5.567 22 4 20.433 4 18.5V5.5Z",fill:"currentColor"}),p.default.createElement(C.Path,{d:"M19.6892 8.50001C19.6498 8.44873 19.6069 8.39979 19.5607 8.35356L13.6464 2.43935C13.6002 2.39311 13.5513 2.35021 13.5 2.31079V7.00001C13.5 7.82843 14.1716 8.50001 15 8.50001H19.6892Z",fill:"currentColor"})),v=i;0&&(module.exports={IconFileBend});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconFileBend/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 IconFileBend: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4 5.5C4 3.567 5.567 2 7.5 2H12.5V7C12.5 8.38071 13.6193 9.5 15 9.5H20V18.5C20 20.433 18.433 22 16.5 22H7.5C5.567 22 4 20.433 4 18.5V5.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.6892 8.5C19.6498 8.44873 19.6069 8.39979 19.5607 8.35355L13.6464 2.43934C13.6002 2.39311 13.5513 2.3502 13.5 2.31079V7C13.5 7.82843 14.1716 8.5 15 8.5H19.6892Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFileBend;\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,kBAAAE,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,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,4IACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sKACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconFileBend_exports","__export","IconFileBend","IconFileBend_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFileBend","props","React","CentralIconBase","IconFileBend_default"]}
1
+ {"version":3,"sources":["../src/IconFileBend/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 IconFileBend: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4 5.5C4 3.567 5.567 2 7.5 2H12.5V7C12.5 8.38071 13.6193 9.5 15 9.5H20V18.5C20 20.433 18.433 22 16.5 22H7.5C5.567 22 4 20.433 4 18.5V5.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.6892 8.50001C19.6498 8.44873 19.6069 8.39979 19.5607 8.35356L13.6464 2.43935C13.6002 2.39311 13.5513 2.35021 13.5 2.31079V7.00001C13.5 7.82843 14.1716 8.50001 15 8.50001H19.6892Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFileBend;\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,kBAAAE,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,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,4IACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yLACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconFileBend_exports","__export","IconFileBend","IconFileBend_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFileBend","props","React","CentralIconBase","IconFileBend_default"]}
@@ -1,2 +1,2 @@
1
- import e from"react";import C from"react";import{Svg as l}from"react-native-svg";var t=({children:o,size:r=24,...p})=>C.createElement(l,{...p,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 n}from"react-native-svg";var a=o=>e.createElement(t,{...o},e.createElement(n,{d:"M4 5.5C4 3.567 5.567 2 7.5 2H12.5V7C12.5 8.38071 13.6193 9.5 15 9.5H20V18.5C20 20.433 18.433 22 16.5 22H7.5C5.567 22 4 20.433 4 18.5V5.5Z",fill:"currentColor"}),e.createElement(n,{d:"M19.6892 8.5C19.6498 8.44873 19.6069 8.39979 19.5607 8.35355L13.6464 2.43934C13.6002 2.39311 13.5513 2.3502 13.5 2.31079V7C13.5 7.82843 14.1716 8.5 15 8.5H19.6892Z",fill:"currentColor"})),P=a;export{a as IconFileBend,P as default};
1
+ import e from"react";import C from"react";import{Svg as l}from"react-native-svg";var t=({children:o,size:r=24,...p})=>C.createElement(l,{...p,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 n}from"react-native-svg";var a=o=>e.createElement(t,{...o},e.createElement(n,{d:"M4 5.5C4 3.567 5.567 2 7.5 2H12.5V7C12.5 8.38071 13.6193 9.5 15 9.5H20V18.5C20 20.433 18.433 22 16.5 22H7.5C5.567 22 4 20.433 4 18.5V5.5Z",fill:"currentColor"}),e.createElement(n,{d:"M19.6892 8.50001C19.6498 8.44873 19.6069 8.39979 19.5607 8.35356L13.6464 2.43935C13.6002 2.39311 13.5513 2.35021 13.5 2.31079V7.00001C13.5 7.82843 14.1716 8.50001 15 8.50001H19.6892Z",fill:"currentColor"})),P=a;export{a as IconFileBend,P as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconFileBend/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 IconFileBend: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4 5.5C4 3.567 5.567 2 7.5 2H12.5V7C12.5 8.38071 13.6193 9.5 15 9.5H20V18.5C20 20.433 18.433 22 16.5 22H7.5C5.567 22 4 20.433 4 18.5V5.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.6892 8.5C19.6498 8.44873 19.6069 8.39979 19.5607 8.35355L13.6464 2.43934C13.6002 2.39311 13.5513 2.3502 13.5 2.31079V7C13.5 7.82843 14.1716 8.5 15 8.5H19.6892Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFileBend;\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,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,4IACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sKACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFileBend","props","React","CentralIconBase","IconFileBend_default"]}
1
+ {"version":3,"sources":["../src/IconFileBend/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 IconFileBend: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4 5.5C4 3.567 5.567 2 7.5 2H12.5V7C12.5 8.38071 13.6193 9.5 15 9.5H20V18.5C20 20.433 18.433 22 16.5 22H7.5C5.567 22 4 20.433 4 18.5V5.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.6892 8.50001C19.6498 8.44873 19.6069 8.39979 19.5607 8.35356L13.6464 2.43935C13.6002 2.39311 13.5513 2.35021 13.5 2.31079V7.00001C13.5 7.82843 14.1716 8.50001 15 8.50001H19.6892Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFileBend;\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,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,4IACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,yLACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFileBend","props","React","CentralIconBase","IconFileBend_default"]}
@@ -1,2 +1,2 @@
1
- "use strict";var u=Object.create;var n=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,H=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of x(o))!H.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(p=d(o,t))||p.enumerable});return r};var m=(r,o,e)=>(e=r!=null?u(B(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>a(n({},"__esModule",{value:!0}),r);var g={};I(g,{IconFileText:()=>i,default:()=>P});module.exports=v(g);var C=m(require("react"));var f=m(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...e})=>f.default.createElement(s.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 l=require("react-native-svg"),i=r=>C.default.createElement(c,{...r},C.default.createElement(l.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M4 5.5C4 3.567 5.567 2 7.5 2H12.5V7C12.5 8.38071 13.6193 9.5 15 9.5H20V18.5C20 20.433 18.433 22 16.5 22H7.5C5.567 22 4 20.433 4 18.5V5.5ZM8 13.5C8 13.2239 8.22386 13 8.5 13H12.5C12.7761 13 13 13.2239 13 13.5C13 13.7761 12.7761 14 12.5 14H8.5C8.22386 14 8 13.7761 8 13.5ZM8.5 17C8.22386 17 8 17.2239 8 17.5C8 17.7761 8.22386 18 8.5 18H15.5C15.7761 18 16 17.7761 16 17.5C16 17.2239 15.7761 17 15.5 17H8.5Z",fill:"currentColor"}),C.default.createElement(l.Path,{d:"M19.6892 8.5C19.6498 8.44873 19.6069 8.39979 19.5607 8.35355L13.6464 2.43934C13.6002 2.39311 13.5513 2.3502 13.5 2.31079V7C13.5 7.82843 14.1716 8.5 15 8.5H19.6892Z",fill:"currentColor"})),P=i;0&&(module.exports={IconFileText});
1
+ "use strict";var u=Object.create;var n=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,H=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of x(o))!H.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(p=d(o,t))||p.enumerable});return r};var m=(r,o,e)=>(e=r!=null?u(B(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>a(n({},"__esModule",{value:!0}),r);var g={};I(g,{IconFileText:()=>i,default:()=>P});module.exports=v(g);var C=m(require("react"));var f=m(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...e})=>f.default.createElement(s.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 l=require("react-native-svg"),i=r=>C.default.createElement(c,{...r},C.default.createElement(l.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12.5 7C12.5 8.38071 13.6193 9.5 15 9.5H20V18.5C20 20.433 18.433 22 16.5 22H7.5C5.567 22 4 20.433 4 18.5V5.5C4 3.567 5.567 2 7.5 2H12.5V7ZM8.5 17C8.22386 17 8 17.2239 8 17.5C8 17.7761 8.22386 18 8.5 18H15.5C15.7761 18 16 17.7761 16 17.5C16 17.2239 15.7761 17 15.5 17H8.5ZM8.5 13C8.22386 13 8 13.2239 8 13.5C8 13.7761 8.22386 14 8.5 14H12.5C12.7761 14 13 13.7761 13 13.5C13 13.2239 12.7761 13 12.5 13H8.5Z",fill:"currentColor"}),C.default.createElement(l.Path,{d:"M13.6465 2.43945L19.5605 8.35352C19.6068 8.39975 19.65 8.44873 19.6895 8.5H15C14.1716 8.5 13.5 7.82843 13.5 7V2.31055C13.5513 2.34997 13.6003 2.39322 13.6465 2.43945Z",fill:"currentColor"})),P=i;0&&(module.exports={IconFileText});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconFileText/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 IconFileText: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M4 5.5C4 3.567 5.567 2 7.5 2H12.5V7C12.5 8.38071 13.6193 9.5 15 9.5H20V18.5C20 20.433 18.433 22 16.5 22H7.5C5.567 22 4 20.433 4 18.5V5.5ZM8 13.5C8 13.2239 8.22386 13 8.5 13H12.5C12.7761 13 13 13.2239 13 13.5C13 13.7761 12.7761 14 12.5 14H8.5C8.22386 14 8 13.7761 8 13.5ZM8.5 17C8.22386 17 8 17.2239 8 17.5C8 17.7761 8.22386 18 8.5 18H15.5C15.7761 18 16 17.7761 16 17.5C16 17.2239 15.7761 17 15.5 17H8.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.6892 8.5C19.6498 8.44873 19.6069 8.39979 19.5607 8.35355L13.6464 2.43934C13.6002 2.39311 13.5513 2.3502 13.5 2.31079V7C13.5 7.82843 14.1716 8.5 15 8.5H19.6892Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFileText;\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,kBAAAE,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,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,sZACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sKACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconFileText_exports","__export","IconFileText","IconFileText_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFileText","props","React","CentralIconBase","IconFileText_default"]}
1
+ {"version":3,"sources":["../src/IconFileText/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 IconFileText: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12.5 7C12.5 8.38071 13.6193 9.5 15 9.5H20V18.5C20 20.433 18.433 22 16.5 22H7.5C5.567 22 4 20.433 4 18.5V5.5C4 3.567 5.567 2 7.5 2H12.5V7ZM8.5 17C8.22386 17 8 17.2239 8 17.5C8 17.7761 8.22386 18 8.5 18H15.5C15.7761 18 16 17.7761 16 17.5C16 17.2239 15.7761 17 15.5 17H8.5ZM8.5 13C8.22386 13 8 13.2239 8 13.5C8 13.7761 8.22386 14 8.5 14H12.5C12.7761 14 13 13.7761 13 13.5C13 13.2239 12.7761 13 12.5 13H8.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.6465 2.43945L19.5605 8.35352C19.6068 8.39975 19.65 8.44873 19.6895 8.5H15C14.1716 8.5 13.5 7.82843 13.5 7V2.31055C13.5513 2.34997 13.6003 2.39322 13.6465 2.43945Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFileText;\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,kBAAAE,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,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,uZACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yKACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconFileText_exports","__export","IconFileText","IconFileText_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFileText","props","React","CentralIconBase","IconFileText_default"]}
@@ -1,2 +1,2 @@
1
- import e from"react";import l from"react";import{Svg as p}from"react-native-svg";var t=({children:o,size:r=24,...C})=>l.createElement(p,{...C,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 n}from"react-native-svg";var a=o=>e.createElement(t,{...o},e.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M4 5.5C4 3.567 5.567 2 7.5 2H12.5V7C12.5 8.38071 13.6193 9.5 15 9.5H20V18.5C20 20.433 18.433 22 16.5 22H7.5C5.567 22 4 20.433 4 18.5V5.5ZM8 13.5C8 13.2239 8.22386 13 8.5 13H12.5C12.7761 13 13 13.2239 13 13.5C13 13.7761 12.7761 14 12.5 14H8.5C8.22386 14 8 13.7761 8 13.5ZM8.5 17C8.22386 17 8 17.2239 8 17.5C8 17.7761 8.22386 18 8.5 18H15.5C15.7761 18 16 17.7761 16 17.5C16 17.2239 15.7761 17 15.5 17H8.5Z",fill:"currentColor"}),e.createElement(n,{d:"M19.6892 8.5C19.6498 8.44873 19.6069 8.39979 19.5607 8.35355L13.6464 2.43934C13.6002 2.39311 13.5513 2.3502 13.5 2.31079V7C13.5 7.82843 14.1716 8.5 15 8.5H19.6892Z",fill:"currentColor"})),H=a;export{a as IconFileText,H as default};
1
+ import e from"react";import l from"react";import{Svg as p}from"react-native-svg";var t=({children:o,size:r=24,...C})=>l.createElement(p,{...C,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 n}from"react-native-svg";var a=o=>e.createElement(t,{...o},e.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M12.5 7C12.5 8.38071 13.6193 9.5 15 9.5H20V18.5C20 20.433 18.433 22 16.5 22H7.5C5.567 22 4 20.433 4 18.5V5.5C4 3.567 5.567 2 7.5 2H12.5V7ZM8.5 17C8.22386 17 8 17.2239 8 17.5C8 17.7761 8.22386 18 8.5 18H15.5C15.7761 18 16 17.7761 16 17.5C16 17.2239 15.7761 17 15.5 17H8.5ZM8.5 13C8.22386 13 8 13.2239 8 13.5C8 13.7761 8.22386 14 8.5 14H12.5C12.7761 14 13 13.7761 13 13.5C13 13.2239 12.7761 13 12.5 13H8.5Z",fill:"currentColor"}),e.createElement(n,{d:"M13.6465 2.43945L19.5605 8.35352C19.6068 8.39975 19.65 8.44873 19.6895 8.5H15C14.1716 8.5 13.5 7.82843 13.5 7V2.31055C13.5513 2.34997 13.6003 2.39322 13.6465 2.43945Z",fill:"currentColor"})),H=a;export{a as IconFileText,H as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconFileText/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 IconFileText: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M4 5.5C4 3.567 5.567 2 7.5 2H12.5V7C12.5 8.38071 13.6193 9.5 15 9.5H20V18.5C20 20.433 18.433 22 16.5 22H7.5C5.567 22 4 20.433 4 18.5V5.5ZM8 13.5C8 13.2239 8.22386 13 8.5 13H12.5C12.7761 13 13 13.2239 13 13.5C13 13.7761 12.7761 14 12.5 14H8.5C8.22386 14 8 13.7761 8 13.5ZM8.5 17C8.22386 17 8 17.2239 8 17.5C8 17.7761 8.22386 18 8.5 18H15.5C15.7761 18 16 17.7761 16 17.5C16 17.2239 15.7761 17 15.5 17H8.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.6892 8.5C19.6498 8.44873 19.6069 8.39979 19.5607 8.35355L13.6464 2.43934C13.6002 2.39311 13.5513 2.3502 13.5 2.31079V7C13.5 7.82843 14.1716 8.5 15 8.5H19.6892Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFileText;\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,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,sZACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sKACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFileText","props","React","CentralIconBase","IconFileText_default"]}
1
+ {"version":3,"sources":["../src/IconFileText/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 IconFileText: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12.5 7C12.5 8.38071 13.6193 9.5 15 9.5H20V18.5C20 20.433 18.433 22 16.5 22H7.5C5.567 22 4 20.433 4 18.5V5.5C4 3.567 5.567 2 7.5 2H12.5V7ZM8.5 17C8.22386 17 8 17.2239 8 17.5C8 17.7761 8.22386 18 8.5 18H15.5C15.7761 18 16 17.7761 16 17.5C16 17.2239 15.7761 17 15.5 17H8.5ZM8.5 13C8.22386 13 8 13.2239 8 13.5C8 13.7761 8.22386 14 8.5 14H12.5C12.7761 14 13 13.7761 13 13.5C13 13.2239 12.7761 13 12.5 13H8.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.6465 2.43945L19.5605 8.35352C19.6068 8.39975 19.65 8.44873 19.6895 8.5H15C14.1716 8.5 13.5 7.82843 13.5 7V2.31055C13.5513 2.34997 13.6003 2.39322 13.6465 2.43945Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFileText;\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,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,uZACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,yKACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFileText","props","React","CentralIconBase","IconFileText_default"]}
@@ -8976,7 +8976,7 @@
8976
8976
  },
8977
8977
  {
8978
8978
  "category": "Folders & Files",
8979
- "svg": "<path d=\"M4 5.5C4 3.567 5.567 2 7.5 2H12.5V7C12.5 8.38071 13.6193 9.5 15 9.5H20V18.5C20 20.433 18.433 22 16.5 22H7.5C5.567 22 4 20.433 4 18.5V5.5Z\" fill=\"currentColor\"/><path d=\"M19.6892 8.5C19.6498 8.44873 19.6069 8.39979 19.5607 8.35355L13.6464 2.43934C13.6002 2.39311 13.5513 2.3502 13.5 2.31079V7C13.5 7.82843 14.1716 8.5 15 8.5H19.6892Z\" fill=\"currentColor\"/>",
8979
+ "svg": "<path d=\"M4 5.5C4 3.567 5.567 2 7.5 2H12.5V7C12.5 8.38071 13.6193 9.5 15 9.5H20V18.5C20 20.433 18.433 22 16.5 22H7.5C5.567 22 4 20.433 4 18.5V5.5Z\" fill=\"currentColor\"/><path d=\"M19.6892 8.50001C19.6498 8.44873 19.6069 8.39979 19.5607 8.35356L13.6464 2.43935C13.6002 2.39311 13.5513 2.35021 13.5 2.31079V7.00001C13.5 7.82843 14.1716 8.50001 15 8.50001H19.6892Z\" fill=\"currentColor\"/>",
8980
8980
  "iconName": "file-bend, document",
8981
8981
  "variant": {
8982
8982
  "join": "round",
@@ -9130,7 +9130,7 @@
9130
9130
  },
9131
9131
  {
9132
9132
  "category": "Folders & Files",
9133
- "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 5.5C4 3.567 5.567 2 7.5 2H12.5V7C12.5 8.38071 13.6193 9.5 15 9.5H20V18.5C20 20.433 18.433 22 16.5 22H7.5C5.567 22 4 20.433 4 18.5V5.5ZM8 13.5C8 13.2239 8.22386 13 8.5 13H12.5C12.7761 13 13 13.2239 13 13.5C13 13.7761 12.7761 14 12.5 14H8.5C8.22386 14 8 13.7761 8 13.5ZM8.5 17C8.22386 17 8 17.2239 8 17.5C8 17.7761 8.22386 18 8.5 18H15.5C15.7761 18 16 17.7761 16 17.5C16 17.2239 15.7761 17 15.5 17H8.5Z\" fill=\"currentColor\"/><path d=\"M19.6892 8.5C19.6498 8.44873 19.6069 8.39979 19.5607 8.35355L13.6464 2.43934C13.6002 2.39311 13.5513 2.3502 13.5 2.31079V7C13.5 7.82843 14.1716 8.5 15 8.5H19.6892Z\" fill=\"currentColor\"/>",
9133
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.5 7C12.5 8.38071 13.6193 9.5 15 9.5H20V18.5C20 20.433 18.433 22 16.5 22H7.5C5.567 22 4 20.433 4 18.5V5.5C4 3.567 5.567 2 7.5 2H12.5V7ZM8.5 17C8.22386 17 8 17.2239 8 17.5C8 17.7761 8.22386 18 8.5 18H15.5C15.7761 18 16 17.7761 16 17.5C16 17.2239 15.7761 17 15.5 17H8.5ZM8.5 13C8.22386 13 8 13.2239 8 13.5C8 13.7761 8.22386 14 8.5 14H12.5C12.7761 14 13 13.7761 13 13.5C13 13.2239 12.7761 13 12.5 13H8.5Z\" fill=\"currentColor\"/><path d=\"M13.6465 2.43945L19.5605 8.35352C19.6068 8.39975 19.65 8.44873 19.6895 8.5H15C14.1716 8.5 13.5 7.82843 13.5 7V2.31055C13.5513 2.34997 13.6003 2.39322 13.6465 2.43945Z\" fill=\"currentColor\"/>",
9134
9134
  "iconName": "file-text, document",
9135
9135
  "variant": {
9136
9136
  "join": "round",
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/round-filled-radius-3-stroke-1",
3
- "version": "1.1.22",
3
+ "version": "1.1.23",
4
4
  "style": "round-filled-radius-3-stroke-1",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-3-stroke-1/IconHome';",