@central-icons-react-native/round-filled-radius-3-stroke-2 1.1.98 → 1.1.100

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.
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconClawdbot: FC<CentralIconBaseProps>;
4
+ export default IconClawdbot;
@@ -0,0 +1,2 @@
1
+ "use strict";var f=Object.create;var n=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0})},l=(o,r,e,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of u(r))!B.call(o,t)&&t!==e&&n(o,t,{get:()=>r[t],enumerable:!(p=i(r,t))||p.enumerable});return o};var V=(o,r,e)=>(e=o!=null?f(d(o)):{},l(r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e,o)),L=o=>l(n({},"__esModule",{value:!0}),o);var x={};I(x,{IconClawdbot:()=>c,default:()=>v});module.exports=L(x);var C=V(require("react"));var a=V(require("react")),m=require("react-native-svg"),s=({children:o,size:r=24,...e})=>a.default.createElement(m.Svg,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var H=require("react-native-svg"),c=o=>C.default.createElement(s,{...o},C.default.createElement(H.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M20.25 4C20.6642 4 21 4.33579 21 4.75V7H22.25C22.6642 7 23 7.33579 23 7.75V10.75C23 11.1642 22.6642 11.5 22.25 11.5H21V19.25C21 19.6642 20.6642 20 20.25 20H19.25C18.8358 20 18.5 19.6642 18.5 19.25V16.5H17V19.25C17 19.6642 16.6642 20 16.25 20H15.25C14.8358 20 14.5 19.6642 14.5 19.25V16.5H9.5V19.25C9.5 19.6642 9.16421 20 8.75 20H7.75C7.33579 20 7 19.6642 7 19.25V16.5H5.5V19.25C5.5 19.6642 5.16421 20 4.75 20H3.75C3.33579 20 3 19.6642 3 19.25V11.5H1.75C1.33579 11.5 1 11.1642 1 10.75V7.75C1 7.33579 1.33579 7 1.75 7H3V4.75C3 4.33579 3.33579 4 3.75 4H20.25ZM5.5 8.30957L6.88184 9L5.5 9.69141V10.8096L8.22363 9.44727V8.55273L5.5 7.19141V8.30957ZM15.7764 8.55273V9.44727L18.5 10.8096V9.69141L17.1182 9L18.5 8.30957V7.19141L15.7764 8.55273Z",fill:"currentColor"})),v=c;0&&(module.exports={IconClawdbot});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconClawdbot/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 IconClawdbot: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M20.25 4C20.6642 4 21 4.33579 21 4.75V7H22.25C22.6642 7 23 7.33579 23 7.75V10.75C23 11.1642 22.6642 11.5 22.25 11.5H21V19.25C21 19.6642 20.6642 20 20.25 20H19.25C18.8358 20 18.5 19.6642 18.5 19.25V16.5H17V19.25C17 19.6642 16.6642 20 16.25 20H15.25C14.8358 20 14.5 19.6642 14.5 19.25V16.5H9.5V19.25C9.5 19.6642 9.16421 20 8.75 20H7.75C7.33579 20 7 19.6642 7 19.25V16.5H5.5V19.25C5.5 19.6642 5.16421 20 4.75 20H3.75C3.33579 20 3 19.6642 3 19.25V11.5H1.75C1.33579 11.5 1 11.1642 1 10.75V7.75C1 7.33579 1.33579 7 1.75 7H3V4.75C3 4.33579 3.33579 4 3.75 4H20.25ZM5.5 8.30957L6.88184 9L5.5 9.69141V10.8096L8.22363 9.44727V8.55273L5.5 7.19141V8.30957ZM15.7764 8.55273V9.44727L18.5 10.8096V9.69141L17.1182 9L18.5 8.30957V7.19141L15.7764 8.55273Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconClawdbot;\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,muBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconClawdbot_exports","__export","IconClawdbot","IconClawdbot_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconClawdbot","props","React","CentralIconBase","IconClawdbot_default"]}
@@ -0,0 +1,2 @@
1
+ import t from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...n})=>C.createElement(p,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as l}from"react-native-svg";var V=r=>t.createElement(e,{...r},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M20.25 4C20.6642 4 21 4.33579 21 4.75V7H22.25C22.6642 7 23 7.33579 23 7.75V10.75C23 11.1642 22.6642 11.5 22.25 11.5H21V19.25C21 19.6642 20.6642 20 20.25 20H19.25C18.8358 20 18.5 19.6642 18.5 19.25V16.5H17V19.25C17 19.6642 16.6642 20 16.25 20H15.25C14.8358 20 14.5 19.6642 14.5 19.25V16.5H9.5V19.25C9.5 19.6642 9.16421 20 8.75 20H7.75C7.33579 20 7 19.6642 7 19.25V16.5H5.5V19.25C5.5 19.6642 5.16421 20 4.75 20H3.75C3.33579 20 3 19.6642 3 19.25V11.5H1.75C1.33579 11.5 1 11.1642 1 10.75V7.75C1 7.33579 1.33579 7 1.75 7H3V4.75C3 4.33579 3.33579 4 3.75 4H20.25ZM5.5 8.30957L6.88184 9L5.5 9.69141V10.8096L8.22363 9.44727V8.55273L5.5 7.19141V8.30957ZM15.7764 8.55273V9.44727L18.5 10.8096V9.69141L17.1182 9L18.5 8.30957V7.19141L15.7764 8.55273Z",fill:"currentColor"})),B=V;export{V as IconClawdbot,B as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconClawdbot/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 IconClawdbot: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M20.25 4C20.6642 4 21 4.33579 21 4.75V7H22.25C22.6642 7 23 7.33579 23 7.75V10.75C23 11.1642 22.6642 11.5 22.25 11.5H21V19.25C21 19.6642 20.6642 20 20.25 20H19.25C18.8358 20 18.5 19.6642 18.5 19.25V16.5H17V19.25C17 19.6642 16.6642 20 16.25 20H15.25C14.8358 20 14.5 19.6642 14.5 19.25V16.5H9.5V19.25C9.5 19.6642 9.16421 20 8.75 20H7.75C7.33579 20 7 19.6642 7 19.25V16.5H5.5V19.25C5.5 19.6642 5.16421 20 4.75 20H3.75C3.33579 20 3 19.6642 3 19.25V11.5H1.75C1.33579 11.5 1 11.1642 1 10.75V7.75C1 7.33579 1.33579 7 1.75 7H3V4.75C3 4.33579 3.33579 4 3.75 4H20.25ZM5.5 8.30957L6.88184 9L5.5 9.69141V10.8096L8.22363 9.44727V8.55273L5.5 7.19141V8.30957ZM15.7764 8.55273V9.44727L18.5 10.8096V9.69141L17.1182 9L18.5 8.30957V7.19141L15.7764 8.55273Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconClawdbot;\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,muBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconClawdbot","props","React","CentralIconBase","IconClawdbot_default"]}
@@ -1,2 +1,2 @@
1
- "use strict";var c=Object.create;var t=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let C of B(o))!v.call(r,C)&&C!==e&&t(r,C,{get:()=>o[C],enumerable:!(p=d(o,C))||p.enumerable});return r};var f=(r,o,e)=>(e=r!=null?c(I(r)):{},a(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),P=r=>a(t({},"__esModule",{value:!0}),r);var H={};x(H,{IconFileCloud:()=>u,default:()=>g});module.exports=P(H);var n=f(require("react"));var m=f(require("react")),i=require("react-native-svg"),s=({children:r,size:o=24,...e})=>m.default.createElement(i.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"),u=r=>n.default.createElement(s,{...r},n.default.createElement(l.Path,{d:"M12 2H8C5.79086 2 4 3.79086 4 6V11.9172C4.69814 11.6478 5.45682 11.5 6.25 11.5C7.92339 11.5 9.44209 12.1588 10.561 13.2252C12.8386 13.8985 14.5 16.0038 14.5 18.5C14.5 19.8296 14.0282 21.0491 13.2428 22H16C18.2091 22 20 20.2091 20 18V10H15C13.3431 10 12 8.65685 12 7V2Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M19.4142 8L14 2.58579V7C14 7.55228 14.4477 8 15 8H19.4142Z",fill:"currentColor"}),n.default.createElement(l.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M6.25 13.5C3.90279 13.5 2 15.4028 2 17.75C2 20.0972 3.90279 22 6.25 22H9C10.933 22 12.5 20.433 12.5 18.5C12.5 16.7446 11.2077 15.2911 9.52265 15.0388C8.74466 14.1005 7.56843 13.5 6.25 13.5ZM4 17.75C4 16.5074 5.00736 15.5 6.25 15.5C7.04608 15.5 7.74527 15.9122 8.14657 16.5391C8.33081 16.827 8.64927 17.0008 8.99101 17L9 17C9.82797 17.0005 10.5 17.6719 10.5 18.5C10.5 19.3284 9.82843 20 9 20H6.25C5.00736 20 4 18.9926 4 17.75Z",fill:"currentColor"})),g=u;0&&(module.exports={IconFileCloud});
1
+ "use strict";var c=Object.create;var C=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of B(o))!v.call(r,n)&&n!==e&&C(r,n,{get:()=>o[n],enumerable:!(p=d(o,n))||p.enumerable});return r};var f=(r,o,e)=>(e=r!=null?c(I(r)):{},a(o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e,r)),P=r=>a(C({},"__esModule",{value:!0}),r);var F={};x(F,{IconFileCloud:()=>u,default:()=>g});module.exports=P(F);var t=f(require("react"));var m=f(require("react")),i=require("react-native-svg"),s=({children:r,size:o=24,...e})=>m.default.createElement(i.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"),u=r=>t.default.createElement(s,{...r},t.default.createElement(l.Path,{d:"M12 2H8C5.79086 2 4 3.79086 4 6V11.9172C4.69814 11.6478 5.45682 11.5 6.25 11.5C7.92339 11.5 9.44209 12.1588 10.561 13.2252C12.8386 13.8985 14.5 16.0038 14.5 18.5C14.5 19.8296 14.0282 21.0491 13.2428 22H16C18.2091 22 20 20.2091 20 18V10H15C13.3431 10 12 8.65685 12 7V2Z",fill:"currentColor"}),t.default.createElement(l.Path,{d:"M19.4142 8L14 2.58579V7C14 7.55228 14.4477 8 15 8H19.4142Z",fill:"currentColor"}),t.default.createElement(l.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M6.25 13.5C3.90279 13.5 2 15.4028 2 17.75C2 20.0972 3.90279 22 6.25 22H9C10.933 22 12.5 20.433 12.5 18.5C12.5 16.7446 11.2077 15.2911 9.52265 15.0388C8.74466 14.1005 7.56843 13.5 6.25 13.5Z",fill:"currentColor"})),g=u;0&&(module.exports={IconFileCloud});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconFileCloud/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 IconFileCloud: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 2H8C5.79086 2 4 3.79086 4 6V11.9172C4.69814 11.6478 5.45682 11.5 6.25 11.5C7.92339 11.5 9.44209 12.1588 10.561 13.2252C12.8386 13.8985 14.5 16.0038 14.5 18.5C14.5 19.8296 14.0282 21.0491 13.2428 22H16C18.2091 22 20 20.2091 20 18V10H15C13.3431 10 12 8.65685 12 7V2Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.4142 8L14 2.58579V7C14 7.55228 14.4477 8 15 8H19.4142Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M6.25 13.5C3.90279 13.5 2 15.4028 2 17.75C2 20.0972 3.90279 22 6.25 22H9C10.933 22 12.5 20.433 12.5 18.5C12.5 16.7446 11.2077 15.2911 9.52265 15.0388C8.74466 14.1005 7.56843 13.5 6.25 13.5ZM4 17.75C4 16.5074 5.00736 15.5 6.25 15.5C7.04608 15.5 7.74527 15.9122 8.14657 16.5391C8.33081 16.827 8.64927 17.0008 8.99101 17L9 17C9.82797 17.0005 10.5 17.6719 10.5 18.5C10.5 19.3284 9.82843 20 9 20H6.25C5.00736 20 4 18.9926 4 17.75Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFileCloud;\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,mBAAAE,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,EAA2CC,GAEpD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,+QACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6DACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,4aACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconFileCloud_exports","__export","IconFileCloud","IconFileCloud_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFileCloud","props","React","CentralIconBase","IconFileCloud_default"]}
1
+ {"version":3,"sources":["../src/IconFileCloud/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 IconFileCloud: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 2H8C5.79086 2 4 3.79086 4 6V11.9172C4.69814 11.6478 5.45682 11.5 6.25 11.5C7.92339 11.5 9.44209 12.1588 10.561 13.2252C12.8386 13.8985 14.5 16.0038 14.5 18.5C14.5 19.8296 14.0282 21.0491 13.2428 22H16C18.2091 22 20 20.2091 20 18V10H15C13.3431 10 12 8.65685 12 7V2Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.4142 8L14 2.58579V7C14 7.55228 14.4477 8 15 8H19.4142Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M6.25 13.5C3.90279 13.5 2 15.4028 2 17.75C2 20.0972 3.90279 22 6.25 22H9C10.933 22 12.5 20.433 12.5 18.5C12.5 16.7446 11.2077 15.2911 9.52265 15.0388C8.74466 14.1005 7.56843 13.5 6.25 13.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFileCloud;\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,mBAAAE,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,EAA2CC,GAEpD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,+QACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6DACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,gMACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconFileCloud_exports","__export","IconFileCloud","IconFileCloud_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFileCloud","props","React","CentralIconBase","IconFileCloud_default"]}
@@ -1,2 +1,2 @@
1
- import o from"react";import l from"react";import{Svg as p}from"react-native-svg";var n=({children:e,size:r=24,...t})=>l.createElement(p,{...t,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as C}from"react-native-svg";var a=e=>o.createElement(n,{...e},o.createElement(C,{d:"M12 2H8C5.79086 2 4 3.79086 4 6V11.9172C4.69814 11.6478 5.45682 11.5 6.25 11.5C7.92339 11.5 9.44209 12.1588 10.561 13.2252C12.8386 13.8985 14.5 16.0038 14.5 18.5C14.5 19.8296 14.0282 21.0491 13.2428 22H16C18.2091 22 20 20.2091 20 18V10H15C13.3431 10 12 8.65685 12 7V2Z",fill:"currentColor"}),o.createElement(C,{d:"M19.4142 8L14 2.58579V7C14 7.55228 14.4477 8 15 8H19.4142Z",fill:"currentColor"}),o.createElement(C,{fillRule:"evenodd",clipRule:"evenodd",d:"M6.25 13.5C3.90279 13.5 2 15.4028 2 17.75C2 20.0972 3.90279 22 6.25 22H9C10.933 22 12.5 20.433 12.5 18.5C12.5 16.7446 11.2077 15.2911 9.52265 15.0388C8.74466 14.1005 7.56843 13.5 6.25 13.5ZM4 17.75C4 16.5074 5.00736 15.5 6.25 15.5C7.04608 15.5 7.74527 15.9122 8.14657 16.5391C8.33081 16.827 8.64927 17.0008 8.99101 17L9 17C9.82797 17.0005 10.5 17.6719 10.5 18.5C10.5 19.3284 9.82843 20 9 20H6.25C5.00736 20 4 18.9926 4 17.75Z",fill:"currentColor"})),v=a;export{a as IconFileCloud,v as default};
1
+ import o from"react";import l from"react";import{Svg as p}from"react-native-svg";var t=({children:e,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"},e);import{Path as n}from"react-native-svg";var a=e=>o.createElement(t,{...e},o.createElement(n,{d:"M12 2H8C5.79086 2 4 3.79086 4 6V11.9172C4.69814 11.6478 5.45682 11.5 6.25 11.5C7.92339 11.5 9.44209 12.1588 10.561 13.2252C12.8386 13.8985 14.5 16.0038 14.5 18.5C14.5 19.8296 14.0282 21.0491 13.2428 22H16C18.2091 22 20 20.2091 20 18V10H15C13.3431 10 12 8.65685 12 7V2Z",fill:"currentColor"}),o.createElement(n,{d:"M19.4142 8L14 2.58579V7C14 7.55228 14.4477 8 15 8H19.4142Z",fill:"currentColor"}),o.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M6.25 13.5C3.90279 13.5 2 15.4028 2 17.75C2 20.0972 3.90279 22 6.25 22H9C10.933 22 12.5 20.433 12.5 18.5C12.5 16.7446 11.2077 15.2911 9.52265 15.0388C8.74466 14.1005 7.56843 13.5 6.25 13.5Z",fill:"currentColor"})),v=a;export{a as IconFileCloud,v as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconFileCloud/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 IconFileCloud: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 2H8C5.79086 2 4 3.79086 4 6V11.9172C4.69814 11.6478 5.45682 11.5 6.25 11.5C7.92339 11.5 9.44209 12.1588 10.561 13.2252C12.8386 13.8985 14.5 16.0038 14.5 18.5C14.5 19.8296 14.0282 21.0491 13.2428 22H16C18.2091 22 20 20.2091 20 18V10H15C13.3431 10 12 8.65685 12 7V2Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.4142 8L14 2.58579V7C14 7.55228 14.4477 8 15 8H19.4142Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M6.25 13.5C3.90279 13.5 2 15.4028 2 17.75C2 20.0972 3.90279 22 6.25 22H9C10.933 22 12.5 20.433 12.5 18.5C12.5 16.7446 11.2077 15.2911 9.52265 15.0388C8.74466 14.1005 7.56843 13.5 6.25 13.5ZM4 17.75C4 16.5074 5.00736 15.5 6.25 15.5C7.04608 15.5 7.74527 15.9122 8.14657 16.5391C8.33081 16.827 8.64927 17.0008 8.99101 17L9 17C9.82797 17.0005 10.5 17.6719 10.5 18.5C10.5 19.3284 9.82843 20 9 20H6.25C5.00736 20 4 18.9926 4 17.75Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFileCloud;\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,EAA2CC,GAEpDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,+QACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6DACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,4aACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFileCloud","props","React","CentralIconBase","IconFileCloud_default"]}
1
+ {"version":3,"sources":["../src/IconFileCloud/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 IconFileCloud: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 2H8C5.79086 2 4 3.79086 4 6V11.9172C4.69814 11.6478 5.45682 11.5 6.25 11.5C7.92339 11.5 9.44209 12.1588 10.561 13.2252C12.8386 13.8985 14.5 16.0038 14.5 18.5C14.5 19.8296 14.0282 21.0491 13.2428 22H16C18.2091 22 20 20.2091 20 18V10H15C13.3431 10 12 8.65685 12 7V2Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.4142 8L14 2.58579V7C14 7.55228 14.4477 8 15 8H19.4142Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M6.25 13.5C3.90279 13.5 2 15.4028 2 17.75C2 20.0972 3.90279 22 6.25 22H9C10.933 22 12.5 20.433 12.5 18.5C12.5 16.7446 11.2077 15.2911 9.52265 15.0388C8.74466 14.1005 7.56843 13.5 6.25 13.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFileCloud;\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,EAA2CC,GAEpDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,+QACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6DACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,gMACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFileCloud","props","React","CentralIconBase","IconFileCloud_default"]}
@@ -1,2 +1,2 @@
1
- "use strict";var u=Object.create;var C=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,L=Object.prototype.hasOwnProperty;var v=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of B(o))!L.call(r,n)&&n!==e&&C(r,n,{get:()=>o[n],enumerable:!(p=d(o,n))||p.enumerable});return r};var f=(r,o,e)=>(e=r!=null?u(I(r)):{},a(o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>a(C({},"__esModule",{value:!0}),r);var V={};v(V,{IconFileEdit:()=>c,default:()=>P});module.exports=x(V);var t=f(require("react"));var i=f(require("react")),m=require("react-native-svg"),s=({children:r,size:o=24,...e})=>i.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 l=require("react-native-svg"),c=r=>t.default.createElement(s,{...r},t.default.createElement(l.Path,{d:"M8 2H12V7C12 8.65685 13.3431 10 15 10H20V18C20 20.2091 18.2091 22 16 22H8.74264L9.12132 21.6213C9.68393 21.0587 10 20.2957 10 19.5V13.5588C10 11.0736 7.98528 9.05884 5.5 9.05884C4.97405 9.05884 4.46917 9.14907 4 9.3149V6C4 3.79086 5.79086 2 8 2Z",fill:"currentColor"}),t.default.createElement(l.Path,{d:"M14 2.58579L19.4142 8H15C14.4477 8 14 7.55228 14 7V2.58579Z",fill:"currentColor"}),t.default.createElement(l.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M5.5 13.0588C5.22386 13.0588 5 13.2827 5 13.5588V19.0858L5.5 19.5858L6 19.0858L6 13.5588C6 13.2827 5.77614 13.0588 5.5 13.0588ZM3 13.5588C3 12.1781 4.11929 11.0588 5.5 11.0588C6.88071 11.0588 8 12.1781 8 13.5588V19.5C8 19.7652 7.89464 20.0196 7.70711 20.2071L6.20711 21.7071C6.01957 21.8946 5.76522 22 5.5 22C5.23478 22 4.98043 21.8946 4.79289 21.7071L3.29289 20.2071C3.10536 20.0196 3 19.7652 3 19.5L3 13.5588Z",fill:"currentColor"})),P=c;0&&(module.exports={IconFileEdit});
1
+ "use strict";var u=Object.create;var C=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of B(o))!v.call(r,n)&&n!==e&&C(r,n,{get:()=>o[n],enumerable:!(p=d(o,n))||p.enumerable});return r};var f=(r,o,e)=>(e=r!=null?u(I(r)):{},a(o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e,r)),P=r=>a(C({},"__esModule",{value:!0}),r);var V={};x(V,{IconFileEdit:()=>c,default:()=>g});module.exports=P(V);var t=f(require("react"));var i=f(require("react")),m=require("react-native-svg"),s=({children:r,size:o=24,...e})=>i.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 l=require("react-native-svg"),c=r=>t.default.createElement(s,{...r},t.default.createElement(l.Path,{d:"M8 2H12V7C12 8.65685 13.3431 10 15 10H20V18C20 20.2091 18.2091 22 16 22H8.74264L9.12132 21.6213C9.68393 21.0587 10 20.2957 10 19.5V13.5588C10 11.0736 7.98528 9.05884 5.5 9.05884C4.97405 9.05884 4.46917 9.14907 4 9.3149V6C4 3.79086 5.79086 2 8 2Z",fill:"currentColor"}),t.default.createElement(l.Path,{d:"M14 2.58579L19.4142 8H15C14.4477 8 14 7.55228 14 7V2.58579Z",fill:"currentColor"}),t.default.createElement(l.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M3 13.5588C3 12.1781 4.11929 11.0588 5.5 11.0588C6.88071 11.0588 8 12.1781 8 13.5588V19.5C8 19.7652 7.89464 20.0196 7.70711 20.2071L6.20711 21.7071C6.01957 21.8946 5.76522 22 5.5 22C5.23478 22 4.98043 21.8946 4.79289 21.7071L3.29289 20.2071C3.10536 20.0196 3 19.7652 3 19.5L3 13.5588Z",fill:"currentColor"})),g=c;0&&(module.exports={IconFileEdit});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconFileEdit/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 IconFileEdit: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8 2H12V7C12 8.65685 13.3431 10 15 10H20V18C20 20.2091 18.2091 22 16 22H8.74264L9.12132 21.6213C9.68393 21.0587 10 20.2957 10 19.5V13.5588C10 11.0736 7.98528 9.05884 5.5 9.05884C4.97405 9.05884 4.46917 9.14907 4 9.3149V6C4 3.79086 5.79086 2 8 2Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M14 2.58579L19.4142 8H15C14.4477 8 14 7.55228 14 7V2.58579Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M5.5 13.0588C5.22386 13.0588 5 13.2827 5 13.5588V19.0858L5.5 19.5858L6 19.0858L6 13.5588C6 13.2827 5.77614 13.0588 5.5 13.0588ZM3 13.5588C3 12.1781 4.11929 11.0588 5.5 11.0588C6.88071 11.0588 8 12.1781 8 13.5588V19.5C8 19.7652 7.89464 20.0196 7.70711 20.2071L6.20711 21.7071C6.01957 21.8946 5.76522 22 5.5 22C5.23478 22 4.98043 21.8946 4.79289 21.7071L3.29289 20.2071C3.10536 20.0196 3 19.7652 3 19.5L3 13.5588Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFileEdit;\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,wPACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8DACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,8ZACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconFileEdit_exports","__export","IconFileEdit","IconFileEdit_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFileEdit","props","React","CentralIconBase","IconFileEdit_default"]}
1
+ {"version":3,"sources":["../src/IconFileEdit/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 IconFileEdit: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8 2H12V7C12 8.65685 13.3431 10 15 10H20V18C20 20.2091 18.2091 22 16 22H8.74264L9.12132 21.6213C9.68393 21.0587 10 20.2957 10 19.5V13.5588C10 11.0736 7.98528 9.05884 5.5 9.05884C4.97405 9.05884 4.46917 9.14907 4 9.3149V6C4 3.79086 5.79086 2 8 2Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M14 2.58579L19.4142 8H15C14.4477 8 14 7.55228 14 7V2.58579Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M3 13.5588C3 12.1781 4.11929 11.0588 5.5 11.0588C6.88071 11.0588 8 12.1781 8 13.5588V19.5C8 19.7652 7.89464 20.0196 7.70711 20.2071L6.20711 21.7071C6.01957 21.8946 5.76522 22 5.5 22C5.23478 22 4.98043 21.8946 4.79289 21.7071L3.29289 20.2071C3.10536 20.0196 3 19.7652 3 19.5L3 13.5588Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFileEdit;\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,wPACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8DACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,+RACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconFileEdit_exports","__export","IconFileEdit","IconFileEdit_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFileEdit","props","React","CentralIconBase","IconFileEdit_default"]}
@@ -1,2 +1,2 @@
1
- import o from"react";import l from"react";import{Svg as p}from"react-native-svg";var t=({children:e,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"},e);import{Path as n}from"react-native-svg";var a=e=>o.createElement(t,{...e},o.createElement(n,{d:"M8 2H12V7C12 8.65685 13.3431 10 15 10H20V18C20 20.2091 18.2091 22 16 22H8.74264L9.12132 21.6213C9.68393 21.0587 10 20.2957 10 19.5V13.5588C10 11.0736 7.98528 9.05884 5.5 9.05884C4.97405 9.05884 4.46917 9.14907 4 9.3149V6C4 3.79086 5.79086 2 8 2Z",fill:"currentColor"}),o.createElement(n,{d:"M14 2.58579L19.4142 8H15C14.4477 8 14 7.55228 14 7V2.58579Z",fill:"currentColor"}),o.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M5.5 13.0588C5.22386 13.0588 5 13.2827 5 13.5588V19.0858L5.5 19.5858L6 19.0858L6 13.5588C6 13.2827 5.77614 13.0588 5.5 13.0588ZM3 13.5588C3 12.1781 4.11929 11.0588 5.5 11.0588C6.88071 11.0588 8 12.1781 8 13.5588V19.5C8 19.7652 7.89464 20.0196 7.70711 20.2071L6.20711 21.7071C6.01957 21.8946 5.76522 22 5.5 22C5.23478 22 4.98043 21.8946 4.79289 21.7071L3.29289 20.2071C3.10536 20.0196 3 19.7652 3 19.5L3 13.5588Z",fill:"currentColor"})),L=a;export{a as IconFileEdit,L as default};
1
+ import o from"react";import l from"react";import{Svg as p}from"react-native-svg";var t=({children:e,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"},e);import{Path as n}from"react-native-svg";var a=e=>o.createElement(t,{...e},o.createElement(n,{d:"M8 2H12V7C12 8.65685 13.3431 10 15 10H20V18C20 20.2091 18.2091 22 16 22H8.74264L9.12132 21.6213C9.68393 21.0587 10 20.2957 10 19.5V13.5588C10 11.0736 7.98528 9.05884 5.5 9.05884C4.97405 9.05884 4.46917 9.14907 4 9.3149V6C4 3.79086 5.79086 2 8 2Z",fill:"currentColor"}),o.createElement(n,{d:"M14 2.58579L19.4142 8H15C14.4477 8 14 7.55228 14 7V2.58579Z",fill:"currentColor"}),o.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M3 13.5588C3 12.1781 4.11929 11.0588 5.5 11.0588C6.88071 11.0588 8 12.1781 8 13.5588V19.5C8 19.7652 7.89464 20.0196 7.70711 20.2071L6.20711 21.7071C6.01957 21.8946 5.76522 22 5.5 22C5.23478 22 4.98043 21.8946 4.79289 21.7071L3.29289 20.2071C3.10536 20.0196 3 19.7652 3 19.5L3 13.5588Z",fill:"currentColor"})),v=a;export{a as IconFileEdit,v as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconFileEdit/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 IconFileEdit: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8 2H12V7C12 8.65685 13.3431 10 15 10H20V18C20 20.2091 18.2091 22 16 22H8.74264L9.12132 21.6213C9.68393 21.0587 10 20.2957 10 19.5V13.5588C10 11.0736 7.98528 9.05884 5.5 9.05884C4.97405 9.05884 4.46917 9.14907 4 9.3149V6C4 3.79086 5.79086 2 8 2Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M14 2.58579L19.4142 8H15C14.4477 8 14 7.55228 14 7V2.58579Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M5.5 13.0588C5.22386 13.0588 5 13.2827 5 13.5588V19.0858L5.5 19.5858L6 19.0858L6 13.5588C6 13.2827 5.77614 13.0588 5.5 13.0588ZM3 13.5588C3 12.1781 4.11929 11.0588 5.5 11.0588C6.88071 11.0588 8 12.1781 8 13.5588V19.5C8 19.7652 7.89464 20.0196 7.70711 20.2071L6.20711 21.7071C6.01957 21.8946 5.76522 22 5.5 22C5.23478 22 4.98043 21.8946 4.79289 21.7071L3.29289 20.2071C3.10536 20.0196 3 19.7652 3 19.5L3 13.5588Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFileEdit;\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,wPACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8DACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,8ZACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFileEdit","props","React","CentralIconBase","IconFileEdit_default"]}
1
+ {"version":3,"sources":["../src/IconFileEdit/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 IconFileEdit: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8 2H12V7C12 8.65685 13.3431 10 15 10H20V18C20 20.2091 18.2091 22 16 22H8.74264L9.12132 21.6213C9.68393 21.0587 10 20.2957 10 19.5V13.5588C10 11.0736 7.98528 9.05884 5.5 9.05884C4.97405 9.05884 4.46917 9.14907 4 9.3149V6C4 3.79086 5.79086 2 8 2Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M14 2.58579L19.4142 8H15C14.4477 8 14 7.55228 14 7V2.58579Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M3 13.5588C3 12.1781 4.11929 11.0588 5.5 11.0588C6.88071 11.0588 8 12.1781 8 13.5588V19.5C8 19.7652 7.89464 20.0196 7.70711 20.2071L6.20711 21.7071C6.01957 21.8946 5.76522 22 5.5 22C5.23478 22 4.98043 21.8946 4.79289 21.7071L3.29289 20.2071C3.10536 20.0196 3 19.7652 3 19.5L3 13.5588Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFileEdit;\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,wPACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8DACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,+RACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFileEdit","props","React","CentralIconBase","IconFileEdit_default"]}
@@ -1,2 +1,2 @@
1
- "use strict";var u=Object.create;var t=Object.defineProperty;var V=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,H=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of d(o))!H.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(p=V(o,n))||p.enumerable});return r};var f=(r,o,e)=>(e=r!=null?u(B(r)):{},a(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>a(t({},"__esModule",{value:!0}),r);var P={};I(P,{IconFileLock:()=>s,default:()=>x});module.exports=v(P);var C=f(require("react"));var m=f(require("react")),c=require("react-native-svg"),i=({children:r,size:o=24,...e})=>m.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 l=require("react-native-svg"),s=r=>C.default.createElement(i,{...r},C.default.createElement(l.Path,{d:"M8 2H12V7C12 8.65685 13.3431 10 15 10H20V18C20 20.2091 18.2091 22 16 22H11.8727C12.2681 21.4331 12.5 20.7436 12.5 20V18C12.5 17.0327 12.1072 16.1581 11.4753 15.5259C11.2384 13.2634 9.32514 11.5 7 11.5C5.84747 11.5 4.79613 11.9333 4 12.6458V6C4 3.79086 5.79086 2 8 2Z",fill:"currentColor"}),C.default.createElement(l.Path,{d:"M14 2.58579L19.4142 8H15C14.4477 8 14 7.55228 14 7V2.58579Z",fill:"currentColor"}),C.default.createElement(l.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M10 16.2676V16C10 14.3431 8.65685 13 7 13C5.34315 13 4 14.3431 4 16V16.2676C3.4022 16.6134 3 17.2597 3 18V20C3 21.1046 3.89543 22 5 22H9C10.1046 22 11 21.1046 11 20V18C11 17.2597 10.5978 16.6134 10 16.2676ZM6 16H8C8 15.4477 7.55228 15 7 15C6.44772 15 6 15.4477 6 16ZM9 18H5V20H9V18Z",fill:"currentColor"})),x=s;0&&(module.exports={IconFileLock});
1
+ "use strict";var u=Object.create;var t=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var V=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var v=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of V(o))!I.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(p=d(o,n))||p.enumerable});return r};var f=(r,o,e)=>(e=r!=null?u(B(r)):{},a(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>a(t({},"__esModule",{value:!0}),r);var g={};v(g,{IconFileLock:()=>s,default:()=>P});module.exports=x(g);var C=f(require("react"));var m=f(require("react")),c=require("react-native-svg"),i=({children:r,size:o=24,...e})=>m.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 l=require("react-native-svg"),s=r=>C.default.createElement(i,{...r},C.default.createElement(l.Path,{d:"M8 2H12V7C12 8.65685 13.3431 10 15 10H20V18C20 20.2091 18.2091 22 16 22H11.8727C12.2681 21.4331 12.5 20.7436 12.5 20V18C12.5 17.0327 12.1072 16.1581 11.4753 15.5259C11.2384 13.2634 9.32514 11.5 7 11.5C5.84747 11.5 4.79613 11.9333 4 12.6458V6C4 3.79086 5.79086 2 8 2Z",fill:"currentColor"}),C.default.createElement(l.Path,{d:"M14 2.58579L19.4142 8H15C14.4477 8 14 7.55228 14 7V2.58579Z",fill:"currentColor"}),C.default.createElement(l.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M10 16.2676V16C10 14.3431 8.65685 13 7 13C5.34315 13 4 14.3431 4 16V16.2676C3.4022 16.6134 3 17.2597 3 18V20C3 21.1046 3.89543 22 5 22H9C10.1046 22 11 21.1046 11 20V18C11 17.2597 10.5978 16.6134 10 16.2676ZM6 16H8C8 15.4477 7.55228 15 7 15C6.44772 15 6 15.4477 6 16Z",fill:"currentColor"})),P=s;0&&(module.exports={IconFileLock});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconFileLock/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 IconFileLock: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8 2H12V7C12 8.65685 13.3431 10 15 10H20V18C20 20.2091 18.2091 22 16 22H11.8727C12.2681 21.4331 12.5 20.7436 12.5 20V18C12.5 17.0327 12.1072 16.1581 11.4753 15.5259C11.2384 13.2634 9.32514 11.5 7 11.5C5.84747 11.5 4.79613 11.9333 4 12.6458V6C4 3.79086 5.79086 2 8 2Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M14 2.58579L19.4142 8H15C14.4477 8 14 7.55228 14 7V2.58579Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M10 16.2676V16C10 14.3431 8.65685 13 7 13C5.34315 13 4 14.3431 4 16V16.2676C3.4022 16.6134 3 17.2597 3 18V20C3 21.1046 3.89543 22 5 22H9C10.1046 22 11 21.1046 11 20V18C11 17.2597 10.5978 16.6134 10 16.2676ZM6 16H8C8 15.4477 7.55228 15 7 15C6.44772 15 6 15.4477 6 16ZM9 18H5V20H9V18Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFileLock;\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,6QACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8DACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,6RACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconFileLock_exports","__export","IconFileLock","IconFileLock_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFileLock","props","React","CentralIconBase","IconFileLock_default"]}
1
+ {"version":3,"sources":["../src/IconFileLock/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 IconFileLock: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8 2H12V7C12 8.65685 13.3431 10 15 10H20V18C20 20.2091 18.2091 22 16 22H11.8727C12.2681 21.4331 12.5 20.7436 12.5 20V18C12.5 17.0327 12.1072 16.1581 11.4753 15.5259C11.2384 13.2634 9.32514 11.5 7 11.5C5.84747 11.5 4.79613 11.9333 4 12.6458V6C4 3.79086 5.79086 2 8 2Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M14 2.58579L19.4142 8H15C14.4477 8 14 7.55228 14 7V2.58579Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M10 16.2676V16C10 14.3431 8.65685 13 7 13C5.34315 13 4 14.3431 4 16V16.2676C3.4022 16.6134 3 17.2597 3 18V20C3 21.1046 3.89543 22 5 22H9C10.1046 22 11 21.1046 11 20V18C11 17.2597 10.5978 16.6134 10 16.2676ZM6 16H8C8 15.4477 7.55228 15 7 15C6.44772 15 6 15.4477 6 16Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFileLock;\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,6QACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8DACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,6QACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconFileLock_exports","__export","IconFileLock","IconFileLock_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFileLock","props","React","CentralIconBase","IconFileLock_default"]}
@@ -1,2 +1,2 @@
1
- import o from"react";import l from"react";import{Svg as p}from"react-native-svg";var C=({children:e,size:r=24,...t})=>l.createElement(p,{...t,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as n}from"react-native-svg";var a=e=>o.createElement(C,{...e},o.createElement(n,{d:"M8 2H12V7C12 8.65685 13.3431 10 15 10H20V18C20 20.2091 18.2091 22 16 22H11.8727C12.2681 21.4331 12.5 20.7436 12.5 20V18C12.5 17.0327 12.1072 16.1581 11.4753 15.5259C11.2384 13.2634 9.32514 11.5 7 11.5C5.84747 11.5 4.79613 11.9333 4 12.6458V6C4 3.79086 5.79086 2 8 2Z",fill:"currentColor"}),o.createElement(n,{d:"M14 2.58579L19.4142 8H15C14.4477 8 14 7.55228 14 7V2.58579Z",fill:"currentColor"}),o.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M10 16.2676V16C10 14.3431 8.65685 13 7 13C5.34315 13 4 14.3431 4 16V16.2676C3.4022 16.6134 3 17.2597 3 18V20C3 21.1046 3.89543 22 5 22H9C10.1046 22 11 21.1046 11 20V18C11 17.2597 10.5978 16.6134 10 16.2676ZM6 16H8C8 15.4477 7.55228 15 7 15C6.44772 15 6 15.4477 6 16ZM9 18H5V20H9V18Z",fill:"currentColor"})),H=a;export{a as IconFileLock,H as default};
1
+ import o from"react";import l from"react";import{Svg as p}from"react-native-svg";var C=({children:e,size:r=24,...t})=>l.createElement(p,{...t,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as n}from"react-native-svg";var a=e=>o.createElement(C,{...e},o.createElement(n,{d:"M8 2H12V7C12 8.65685 13.3431 10 15 10H20V18C20 20.2091 18.2091 22 16 22H11.8727C12.2681 21.4331 12.5 20.7436 12.5 20V18C12.5 17.0327 12.1072 16.1581 11.4753 15.5259C11.2384 13.2634 9.32514 11.5 7 11.5C5.84747 11.5 4.79613 11.9333 4 12.6458V6C4 3.79086 5.79086 2 8 2Z",fill:"currentColor"}),o.createElement(n,{d:"M14 2.58579L19.4142 8H15C14.4477 8 14 7.55228 14 7V2.58579Z",fill:"currentColor"}),o.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M10 16.2676V16C10 14.3431 8.65685 13 7 13C5.34315 13 4 14.3431 4 16V16.2676C3.4022 16.6134 3 17.2597 3 18V20C3 21.1046 3.89543 22 5 22H9C10.1046 22 11 21.1046 11 20V18C11 17.2597 10.5978 16.6134 10 16.2676ZM6 16H8C8 15.4477 7.55228 15 7 15C6.44772 15 6 15.4477 6 16Z",fill:"currentColor"})),I=a;export{a as IconFileLock,I as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconFileLock/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 IconFileLock: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8 2H12V7C12 8.65685 13.3431 10 15 10H20V18C20 20.2091 18.2091 22 16 22H11.8727C12.2681 21.4331 12.5 20.7436 12.5 20V18C12.5 17.0327 12.1072 16.1581 11.4753 15.5259C11.2384 13.2634 9.32514 11.5 7 11.5C5.84747 11.5 4.79613 11.9333 4 12.6458V6C4 3.79086 5.79086 2 8 2Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M14 2.58579L19.4142 8H15C14.4477 8 14 7.55228 14 7V2.58579Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M10 16.2676V16C10 14.3431 8.65685 13 7 13C5.34315 13 4 14.3431 4 16V16.2676C3.4022 16.6134 3 17.2597 3 18V20C3 21.1046 3.89543 22 5 22H9C10.1046 22 11 21.1046 11 20V18C11 17.2597 10.5978 16.6134 10 16.2676ZM6 16H8C8 15.4477 7.55228 15 7 15C6.44772 15 6 15.4477 6 16ZM9 18H5V20H9V18Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFileLock;\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,6QACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8DACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,6RACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFileLock","props","React","CentralIconBase","IconFileLock_default"]}
1
+ {"version":3,"sources":["../src/IconFileLock/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 IconFileLock: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8 2H12V7C12 8.65685 13.3431 10 15 10H20V18C20 20.2091 18.2091 22 16 22H11.8727C12.2681 21.4331 12.5 20.7436 12.5 20V18C12.5 17.0327 12.1072 16.1581 11.4753 15.5259C11.2384 13.2634 9.32514 11.5 7 11.5C5.84747 11.5 4.79613 11.9333 4 12.6458V6C4 3.79086 5.79086 2 8 2Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M14 2.58579L19.4142 8H15C14.4477 8 14 7.55228 14 7V2.58579Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M10 16.2676V16C10 14.3431 8.65685 13 7 13C5.34315 13 4 14.3431 4 16V16.2676C3.4022 16.6134 3 17.2597 3 18V20C3 21.1046 3.89543 22 5 22H9C10.1046 22 11 21.1046 11 20V18C11 17.2597 10.5978 16.6134 10 16.2676ZM6 16H8C8 15.4477 7.55228 15 7 15C6.44772 15 6 15.4477 6 16Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFileLock;\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,6QACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8DACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,6QACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFileLock","props","React","CentralIconBase","IconFileLock_default"]}
@@ -1,2 +1,2 @@
1
- "use strict";var i=Object.create;var p=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},f=(r,o,t,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of u(o))!B.call(r,e)&&e!==t&&p(r,e,{get:()=>o[e],enumerable:!(C=c(o,e))||C.enumerable});return r};var m=(r,o,t)=>(t=r!=null?i(d(r)):{},f(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),x=r=>f(p({},"__esModule",{value:!0}),r);var g={};I(g,{IconListAdd:()=>V,default:()=>P});module.exports=x(g);var n=m(require("react"));var s=m(require("react")),a=require("react-native-svg"),H=({children:r,size:o=24,...t})=>s.default.createElement(a.Svg,{...t,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"),V=r=>n.default.createElement(H,{...r},n.default.createElement(l.Path,{d:"M11 19H3V17H11V19Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M19 14H22V16H19V19H17V16H14V14H17V11H19V14Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M11 13H3V11H11V13Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M21 7H3V5H21V7Z",fill:"currentColor"})),P=V;0&&(module.exports={IconListAdd});
1
+ "use strict";var u=Object.create;var l=Object.defineProperty;var H=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var C in o)l(r,C,{get:o[C],enumerable:!0})},f=(r,o,C,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of d(o))!I.call(r,n)&&n!==C&&l(r,n,{get:()=>o[n],enumerable:!(p=H(o,n))||p.enumerable});return r};var m=(r,o,C)=>(C=r!=null?u(B(r)):{},f(o||!r||!r.__esModule?l(C,"default",{value:r,enumerable:!0}):C,r)),P=r=>f(l({},"__esModule",{value:!0}),r);var v={};x(v,{IconListAdd:()=>c,default:()=>g});module.exports=P(v);var t=m(require("react"));var s=m(require("react")),a=require("react-native-svg"),i=({children:r,size:o=24,...C})=>s.default.createElement(a.Svg,{...C,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var e=require("react-native-svg"),c=r=>t.default.createElement(i,{...r},t.default.createElement(e.Path,{d:"M10 17C10.5523 17 11 17.4477 11 18C11 18.5523 10.5523 19 10 19H4C3.44772 19 3 18.5523 3 18C3 17.4477 3.44772 17 4 17H10Z",fill:"currentColor"}),t.default.createElement(e.Path,{d:"M18 11C18.5523 11 19 11.4477 19 12V14H21C21.5523 14 22 14.4477 22 15C22 15.5523 21.5523 16 21 16H19V18C19 18.5523 18.5523 19 18 19C17.4477 19 17 18.5523 17 18V16H15C14.4477 16 14 15.5523 14 15C14 14.4477 14.4477 14 15 14H17V12C17 11.4477 17.4477 11 18 11Z",fill:"currentColor"}),t.default.createElement(e.Path,{d:"M10 11C10.5523 11 11 11.4477 11 12C11 12.5523 10.5523 13 10 13H4C3.44772 13 3 12.5523 3 12C3 11.4477 3.44772 11 4 11H10Z",fill:"currentColor"}),t.default.createElement(e.Path,{d:"M20 5C20.5523 5 21 5.44772 21 6C21 6.55228 20.5523 7 20 7H4C3.44772 7 3 6.55228 3 6C3 5.44772 3.44772 5 4 5H20Z",fill:"currentColor"})),g=c;0&&(module.exports={IconListAdd});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconListAdd/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 IconListAdd: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M11 19H3V17H11V19Z\" fill=\"currentColor\" />\n <Path\n d=\"M19 14H22V16H19V19H17V16H14V14H17V11H19V14Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M11 13H3V11H11V13Z\" fill=\"currentColor\" />\n <Path d=\"M21 7H3V5H21V7Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconListAdd;\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,iBAAAE,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,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QAAK,EAAE,qBAAqB,KAAK,eAAe,EACjD,EAAAA,QAAA,cAAC,QACC,EAAE,8CACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,qBAAqB,KAAK,eAAe,EACjD,EAAAA,QAAA,cAAC,QAAK,EAAE,kBAAkB,KAAK,eAAe,CAChD,EAIGE,EAAQJ","names":["IconListAdd_exports","__export","IconListAdd","IconListAdd_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconListAdd","props","React","CentralIconBase","IconListAdd_default"]}
1
+ {"version":3,"sources":["../src/IconListAdd/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 IconListAdd: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10 17C10.5523 17 11 17.4477 11 18C11 18.5523 10.5523 19 10 19H4C3.44772 19 3 18.5523 3 18C3 17.4477 3.44772 17 4 17H10Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M18 11C18.5523 11 19 11.4477 19 12V14H21C21.5523 14 22 14.4477 22 15C22 15.5523 21.5523 16 21 16H19V18C19 18.5523 18.5523 19 18 19C17.4477 19 17 18.5523 17 18V16H15C14.4477 16 14 15.5523 14 15C14 14.4477 14.4477 14 15 14H17V12C17 11.4477 17.4477 11 18 11Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M10 11C10.5523 11 11 11.4477 11 12C11 12.5523 10.5523 13 10 13H4C3.44772 13 3 12.5523 3 12C3 11.4477 3.44772 11 4 11H10Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20 5C20.5523 5 21 5.44772 21 6C21 6.55228 20.5523 7 20 7H4C3.44772 7 3 6.55228 3 6C3 5.44772 3.44772 5 4 5H20Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconListAdd;\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,iBAAAE,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,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,2HACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kQACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2HACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kHACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconListAdd_exports","__export","IconListAdd","IconListAdd_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconListAdd","props","React","CentralIconBase","IconListAdd_default"]}
@@ -1,2 +1,2 @@
1
- import o from"react";import p from"react";import{Svg as C}from"react-native-svg";var e=({children:n,size:r=24,...l})=>p.createElement(C,{...l,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n);import{Path as t}from"react-native-svg";var f=n=>o.createElement(e,{...n},o.createElement(t,{d:"M11 19H3V17H11V19Z",fill:"currentColor"}),o.createElement(t,{d:"M19 14H22V16H19V19H17V16H14V14H17V11H19V14Z",fill:"currentColor"}),o.createElement(t,{d:"M11 13H3V11H11V13Z",fill:"currentColor"}),o.createElement(t,{d:"M21 7H3V5H21V7Z",fill:"currentColor"})),B=f;export{f as IconListAdd,B as default};
1
+ import o from"react";import l from"react";import{Svg as p}from"react-native-svg";var n=({children:t,size:r=24,...e})=>l.createElement(p,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Path as C}from"react-native-svg";var f=t=>o.createElement(n,{...t},o.createElement(C,{d:"M10 17C10.5523 17 11 17.4477 11 18C11 18.5523 10.5523 19 10 19H4C3.44772 19 3 18.5523 3 18C3 17.4477 3.44772 17 4 17H10Z",fill:"currentColor"}),o.createElement(C,{d:"M18 11C18.5523 11 19 11.4477 19 12V14H21C21.5523 14 22 14.4477 22 15C22 15.5523 21.5523 16 21 16H19V18C19 18.5523 18.5523 19 18 19C17.4477 19 17 18.5523 17 18V16H15C14.4477 16 14 15.5523 14 15C14 14.4477 14.4477 14 15 14H17V12C17 11.4477 17.4477 11 18 11Z",fill:"currentColor"}),o.createElement(C,{d:"M10 11C10.5523 11 11 11.4477 11 12C11 12.5523 10.5523 13 10 13H4C3.44772 13 3 12.5523 3 12C3 11.4477 3.44772 11 4 11H10Z",fill:"currentColor"}),o.createElement(C,{d:"M20 5C20.5523 5 21 5.44772 21 6C21 6.55228 20.5523 7 20 7H4C3.44772 7 3 6.55228 3 6C3 5.44772 3.44772 5 4 5H20Z",fill:"currentColor"})),I=f;export{f as IconListAdd,I as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconListAdd/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 IconListAdd: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M11 19H3V17H11V19Z\" fill=\"currentColor\" />\n <Path\n d=\"M19 14H22V16H19V19H17V16H14V14H17V11H19V14Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M11 13H3V11H11V13Z\" fill=\"currentColor\" />\n <Path d=\"M21 7H3V5H21V7Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconListAdd;\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,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CAAK,EAAE,qBAAqB,KAAK,eAAe,EACjDG,EAAA,cAACH,EAAA,CACC,EAAE,8CACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,qBAAqB,KAAK,eAAe,EACjDG,EAAA,cAACH,EAAA,CAAK,EAAE,kBAAkB,KAAK,eAAe,CAChD,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconListAdd","props","React","CentralIconBase","IconListAdd_default"]}
1
+ {"version":3,"sources":["../src/IconListAdd/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 IconListAdd: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10 17C10.5523 17 11 17.4477 11 18C11 18.5523 10.5523 19 10 19H4C3.44772 19 3 18.5523 3 18C3 17.4477 3.44772 17 4 17H10Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M18 11C18.5523 11 19 11.4477 19 12V14H21C21.5523 14 22 14.4477 22 15C22 15.5523 21.5523 16 21 16H19V18C19 18.5523 18.5523 19 18 19C17.4477 19 17 18.5523 17 18V16H15C14.4477 16 14 15.5523 14 15C14 14.4477 14.4477 14 15 14H17V12C17 11.4477 17.4477 11 18 11Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M10 11C10.5523 11 11 11.4477 11 12C11 12.5523 10.5523 13 10 13H4C3.44772 13 3 12.5523 3 12C3 11.4477 3.44772 11 4 11H10Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20 5C20.5523 5 21 5.44772 21 6C21 6.55228 20.5523 7 20 7H4C3.44772 7 3 6.55228 3 6C3 5.44772 3.44772 5 4 5H20Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconListAdd;\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,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,2HACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kQACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2HACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kHACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconListAdd","props","React","CentralIconBase","IconListAdd_default"]}
package/README.md CHANGED
@@ -1481,6 +1481,7 @@ Below is a complete list of available icons:
1481
1481
  - IconCentralIconSystem
1482
1482
  - IconChrome
1483
1483
  - IconClaudeai
1484
+ - IconClawdbot
1484
1485
  - IconCodepen
1485
1486
  - IconCopilot
1486
1487
  - IconCosmos
@@ -6454,6 +6454,20 @@
6454
6454
  "packageName": "round-filled-radius-3-stroke-2",
6455
6455
  "componentName": "IconClaudeai"
6456
6456
  },
6457
+ {
6458
+ "category": "Social Media & Brands",
6459
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.25 4C20.6642 4 21 4.33579 21 4.75V7H22.25C22.6642 7 23 7.33579 23 7.75V10.75C23 11.1642 22.6642 11.5 22.25 11.5H21V19.25C21 19.6642 20.6642 20 20.25 20H19.25C18.8358 20 18.5 19.6642 18.5 19.25V16.5H17V19.25C17 19.6642 16.6642 20 16.25 20H15.25C14.8358 20 14.5 19.6642 14.5 19.25V16.5H9.5V19.25C9.5 19.6642 9.16421 20 8.75 20H7.75C7.33579 20 7 19.6642 7 19.25V16.5H5.5V19.25C5.5 19.6642 5.16421 20 4.75 20H3.75C3.33579 20 3 19.6642 3 19.25V11.5H1.75C1.33579 11.5 1 11.1642 1 10.75V7.75C1 7.33579 1.33579 7 1.75 7H3V4.75C3 4.33579 3.33579 4 3.75 4H20.25ZM5.5 8.30957L6.88184 9L5.5 9.69141V10.8096L8.22363 9.44727V8.55273L5.5 7.19141V8.30957ZM15.7764 8.55273V9.44727L18.5 10.8096V9.69141L17.1182 9L18.5 8.30957V7.19141L15.7764 8.55273Z\" fill=\"currentColor\"/>",
6460
+ "iconName": "clawdbot",
6461
+ "variant": {
6462
+ "join": "round",
6463
+ "filled": "on",
6464
+ "radius": "3",
6465
+ "stroke": "2"
6466
+ },
6467
+ "createdAt": "2026-01-26T11:00:52.600029+00:00",
6468
+ "packageName": "round-filled-radius-3-stroke-2",
6469
+ "componentName": "IconClawdbot"
6470
+ },
6457
6471
  {
6458
6472
  "category": "Interface General",
6459
6473
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.4649 4H16C18.2091 4 20 5.79086 20 8V18C20 20.2091 18.2091 22 16 22H8C5.79086 22 4 20.2091 4 18V8C4 5.79086 5.79086 4 8 4H8.53513C9.22675 2.8044 10.5194 2 12 2C13.4806 2 14.7733 2.8044 15.4649 4ZM10 6H14C14 4.89543 13.1046 4 12 4C10.8954 4 10 4.89543 10 6Z\" fill=\"currentColor\"/>",
@@ -9928,7 +9942,7 @@
9928
9942
  },
9929
9943
  {
9930
9944
  "category": "Folders & Files",
9931
- "svg": "<path d=\"M12 2H8C5.79086 2 4 3.79086 4 6V11.9172C4.69814 11.6478 5.45682 11.5 6.25 11.5C7.92339 11.5 9.44209 12.1588 10.561 13.2252C12.8386 13.8985 14.5 16.0038 14.5 18.5C14.5 19.8296 14.0282 21.0491 13.2428 22H16C18.2091 22 20 20.2091 20 18V10H15C13.3431 10 12 8.65685 12 7V2Z\" fill=\"currentColor\"/><path d=\"M19.4142 8L14 2.58579V7C14 7.55228 14.4477 8 15 8H19.4142Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.25 13.5C3.90279 13.5 2 15.4028 2 17.75C2 20.0972 3.90279 22 6.25 22H9C10.933 22 12.5 20.433 12.5 18.5C12.5 16.7446 11.2077 15.2911 9.52265 15.0388C8.74466 14.1005 7.56843 13.5 6.25 13.5ZM4 17.75C4 16.5074 5.00736 15.5 6.25 15.5C7.04608 15.5 7.74527 15.9122 8.14657 16.5391C8.33081 16.827 8.64927 17.0008 8.99101 17L9 17C9.82797 17.0005 10.5 17.6719 10.5 18.5C10.5 19.3284 9.82843 20 9 20H6.25C5.00736 20 4 18.9926 4 17.75Z\" fill=\"currentColor\"/>",
9945
+ "svg": "<path d=\"M12 2H8C5.79086 2 4 3.79086 4 6V11.9172C4.69814 11.6478 5.45682 11.5 6.25 11.5C7.92339 11.5 9.44209 12.1588 10.561 13.2252C12.8386 13.8985 14.5 16.0038 14.5 18.5C14.5 19.8296 14.0282 21.0491 13.2428 22H16C18.2091 22 20 20.2091 20 18V10H15C13.3431 10 12 8.65685 12 7V2Z\" fill=\"currentColor\"/><path d=\"M19.4142 8L14 2.58579V7C14 7.55228 14.4477 8 15 8H19.4142Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.25 13.5C3.90279 13.5 2 15.4028 2 17.75C2 20.0972 3.90279 22 6.25 22H9C10.933 22 12.5 20.433 12.5 18.5C12.5 16.7446 11.2077 15.2911 9.52265 15.0388C8.74466 14.1005 7.56843 13.5 6.25 13.5Z\" fill=\"currentColor\"/>",
9932
9946
  "iconName": "file-cloud, document",
9933
9947
  "variant": {
9934
9948
  "join": "round",
@@ -9956,7 +9970,7 @@
9956
9970
  },
9957
9971
  {
9958
9972
  "category": "Folders & Files",
9959
- "svg": "<path d=\"M8 2H12V7C12 8.65685 13.3431 10 15 10H20V18C20 20.2091 18.2091 22 16 22H8.74264L9.12132 21.6213C9.68393 21.0587 10 20.2957 10 19.5V13.5588C10 11.0736 7.98528 9.05884 5.5 9.05884C4.97405 9.05884 4.46917 9.14907 4 9.3149V6C4 3.79086 5.79086 2 8 2Z\" fill=\"currentColor\"/><path d=\"M14 2.58579L19.4142 8H15C14.4477 8 14 7.55228 14 7V2.58579Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.5 13.0588C5.22386 13.0588 5 13.2827 5 13.5588V19.0858L5.5 19.5858L6 19.0858L6 13.5588C6 13.2827 5.77614 13.0588 5.5 13.0588ZM3 13.5588C3 12.1781 4.11929 11.0588 5.5 11.0588C6.88071 11.0588 8 12.1781 8 13.5588V19.5C8 19.7652 7.89464 20.0196 7.70711 20.2071L6.20711 21.7071C6.01957 21.8946 5.76522 22 5.5 22C5.23478 22 4.98043 21.8946 4.79289 21.7071L3.29289 20.2071C3.10536 20.0196 3 19.7652 3 19.5L3 13.5588Z\" fill=\"currentColor\"/>",
9973
+ "svg": "<path d=\"M8 2H12V7C12 8.65685 13.3431 10 15 10H20V18C20 20.2091 18.2091 22 16 22H8.74264L9.12132 21.6213C9.68393 21.0587 10 20.2957 10 19.5V13.5588C10 11.0736 7.98528 9.05884 5.5 9.05884C4.97405 9.05884 4.46917 9.14907 4 9.3149V6C4 3.79086 5.79086 2 8 2Z\" fill=\"currentColor\"/><path d=\"M14 2.58579L19.4142 8H15C14.4477 8 14 7.55228 14 7V2.58579Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 13.5588C3 12.1781 4.11929 11.0588 5.5 11.0588C6.88071 11.0588 8 12.1781 8 13.5588V19.5C8 19.7652 7.89464 20.0196 7.70711 20.2071L6.20711 21.7071C6.01957 21.8946 5.76522 22 5.5 22C5.23478 22 4.98043 21.8946 4.79289 21.7071L3.29289 20.2071C3.10536 20.0196 3 19.7652 3 19.5L3 13.5588Z\" fill=\"currentColor\"/>",
9960
9974
  "iconName": "file-edit, document, cloud, sync",
9961
9975
  "variant": {
9962
9976
  "join": "round",
@@ -9998,7 +10012,7 @@
9998
10012
  },
9999
10013
  {
10000
10014
  "category": "Folders & Files",
10001
- "svg": "<path d=\"M8 2H12V7C12 8.65685 13.3431 10 15 10H20V18C20 20.2091 18.2091 22 16 22H11.8727C12.2681 21.4331 12.5 20.7436 12.5 20V18C12.5 17.0327 12.1072 16.1581 11.4753 15.5259C11.2384 13.2634 9.32514 11.5 7 11.5C5.84747 11.5 4.79613 11.9333 4 12.6458V6C4 3.79086 5.79086 2 8 2Z\" fill=\"currentColor\"/><path d=\"M14 2.58579L19.4142 8H15C14.4477 8 14 7.55228 14 7V2.58579Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 16.2676V16C10 14.3431 8.65685 13 7 13C5.34315 13 4 14.3431 4 16V16.2676C3.4022 16.6134 3 17.2597 3 18V20C3 21.1046 3.89543 22 5 22H9C10.1046 22 11 21.1046 11 20V18C11 17.2597 10.5978 16.6134 10 16.2676ZM6 16H8C8 15.4477 7.55228 15 7 15C6.44772 15 6 15.4477 6 16ZM9 18H5V20H9V18Z\" fill=\"currentColor\"/>",
10015
+ "svg": "<path d=\"M8 2H12V7C12 8.65685 13.3431 10 15 10H20V18C20 20.2091 18.2091 22 16 22H11.8727C12.2681 21.4331 12.5 20.7436 12.5 20V18C12.5 17.0327 12.1072 16.1581 11.4753 15.5259C11.2384 13.2634 9.32514 11.5 7 11.5C5.84747 11.5 4.79613 11.9333 4 12.6458V6C4 3.79086 5.79086 2 8 2Z\" fill=\"currentColor\"/><path d=\"M14 2.58579L19.4142 8H15C14.4477 8 14 7.55228 14 7V2.58579Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 16.2676V16C10 14.3431 8.65685 13 7 13C5.34315 13 4 14.3431 4 16V16.2676C3.4022 16.6134 3 17.2597 3 18V20C3 21.1046 3.89543 22 5 22H9C10.1046 22 11 21.1046 11 20V18C11 17.2597 10.5978 16.6134 10 16.2676ZM6 16H8C8 15.4477 7.55228 15 7 15C6.44772 15 6 15.4477 6 16Z\" fill=\"currentColor\"/>",
10002
10016
  "iconName": "file-lock, document",
10003
10017
  "variant": {
10004
10018
  "join": "round",
@@ -13610,7 +13624,7 @@
13610
13624
  },
13611
13625
  {
13612
13626
  "category": "Interface General",
13613
- "svg": "<path d=\"M11 19H3V17H11V19Z\" fill=\"currentColor\"/><path d=\"M19 14H22V16H19V19H17V16H14V14H17V11H19V14Z\" fill=\"currentColor\"/><path d=\"M11 13H3V11H11V13Z\" fill=\"currentColor\"/><path d=\"M21 7H3V5H21V7Z\" fill=\"currentColor\"/>",
13627
+ "svg": "<path d=\"M10 17C10.5523 17 11 17.4477 11 18C11 18.5523 10.5523 19 10 19H4C3.44772 19 3 18.5523 3 18C3 17.4477 3.44772 17 4 17H10Z\" fill=\"currentColor\"/><path d=\"M18 11C18.5523 11 19 11.4477 19 12V14H21C21.5523 14 22 14.4477 22 15C22 15.5523 21.5523 16 21 16H19V18C19 18.5523 18.5523 19 18 19C17.4477 19 17 18.5523 17 18V16H15C14.4477 16 14 15.5523 14 15C14 14.4477 14.4477 14 15 14H17V12C17 11.4477 17.4477 11 18 11Z\" fill=\"currentColor\"/><path d=\"M10 11C10.5523 11 11 11.4477 11 12C11 12.5523 10.5523 13 10 13H4C3.44772 13 3 12.5523 3 12C3 11.4477 3.44772 11 4 11H10Z\" fill=\"currentColor\"/><path d=\"M20 5C20.5523 5 21 5.44772 21 6C21 6.55228 20.5523 7 20 7H4C3.44772 7 3 6.55228 3 6C3 5.44772 3.44772 5 4 5H20Z\" fill=\"currentColor\"/>",
13614
13628
  "iconName": "list-add, list-plus, new-list",
13615
13629
  "variant": {
13616
13630
  "join": "round",
package/icons/index.d.ts CHANGED
@@ -460,6 +460,7 @@ export type CentralIconName =
460
460
  | "IconClapboard"
461
461
  | "IconClapboardWide"
462
462
  | "IconClaudeai"
463
+ | "IconClawdbot"
463
464
  | "IconClipboard"
464
465
  | "IconClipboard2"
465
466
  | "IconClipboard2Sparkle"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/round-filled-radius-3-stroke-2",
3
- "version": "1.1.98",
3
+ "version": "1.1.100",
4
4
  "style": "round-filled-radius-3-stroke-2",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-3-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": 1705,
14
+ "totalIcons": 1706,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
17
  "count": 66,
@@ -1383,7 +1383,7 @@
1383
1383
  ]
1384
1384
  },
1385
1385
  "Social Media & Brands": {
1386
- "count": 118,
1386
+ "count": 119,
1387
1387
  "icons": [
1388
1388
  "IconAdobeAcrobat",
1389
1389
  "IconAffinity",
@@ -1405,6 +1405,7 @@
1405
1405
  "IconCentralIconSystem",
1406
1406
  "IconChrome",
1407
1407
  "IconClaudeai",
1408
+ "IconClawdbot",
1408
1409
  "IconCodepen",
1409
1410
  "IconCopilot",
1410
1411
  "IconCosmos",
@@ -2361,6 +2362,7 @@
2361
2362
  "IconClapboard": "clapboard, movie, film",
2362
2363
  "IconClapboardWide": "clapboard-wide, movie, film",
2363
2364
  "IconClaudeai": "claudeai",
2365
+ "IconClawdbot": "clawdbot",
2364
2366
  "IconClipboard": "clipboard, copy, list",
2365
2367
  "IconClipboard2": "clipboard-2, copy, list",
2366
2368
  "IconClipboard2Sparkle": "clipboard 2-sparkle, copy, list",
package/index.d.ts CHANGED
@@ -459,6 +459,7 @@ export { IconCirclesThree, default as IconCirclesThreeDefault, } from "./IconCir
459
459
  export { IconClapboard, default as IconClapboardDefault, } from "./IconClapboard";
460
460
  export { IconClapboardWide, default as IconClapboardWideDefault, } from "./IconClapboardWide";
461
461
  export { IconClaudeai, default as IconClaudeaiDefault } from "./IconClaudeai";
462
+ export { IconClawdbot, default as IconClawdbotDefault } from "./IconClawdbot";
462
463
  export { IconClipboard, default as IconClipboardDefault, } from "./IconClipboard";
463
464
  export { IconClipboard2, default as IconClipboard2Default, } from "./IconClipboard2";
464
465
  export { IconClipboard2Sparkle, default as IconClipboard2SparkleDefault, } from "./IconClipboard2Sparkle";