@central-icons-react-native/round-filled-radius-2-stroke-1 1.1.150 → 1.1.152

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 IconAddImage: FC<CentralIconBaseProps>;
4
+ export default IconAddImage;
@@ -0,0 +1,2 @@
1
+ "use strict";var i=Object.create;var n=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var v=(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 C of I(o))!g.call(r,C)&&C!==e&&n(r,C,{get:()=>o[C],enumerable:!(l=u(o,C))||l.enumerable});return r};var m=(r,o,e)=>(e=r!=null?i(B(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>a(n({},"__esModule",{value:!0}),r);var P={};v(P,{IconAddImage:()=>d,default:()=>H});module.exports=x(P);var t=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 p=require("react-native-svg"),d=r=>t.default.createElement(c,{...r},t.default.createElement(p.Path,{d:"M18.5 15C18.7761 15 19 15.2239 19 15.5V18H21.5C21.7761 18 22 18.2239 22 18.5C22 18.7761 21.7761 19 21.5 19H19V21.5C19 21.7761 18.7761 22 18.5 22C18.2239 22 18 21.7761 18 21.5V19H15.5C15.2239 19 15 18.7761 15 18.5C15 18.2239 15.2239 18 15.5 18H18V15.5C18 15.2239 18.2239 15 18.5 15Z",fill:"currentColor"}),t.default.createElement(p.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.5 3C19.8807 3 21 4.11929 21 5.5V14.1699C20.2645 13.7443 19.4109 13.5 18.5 13.5C16.0512 13.5 14.0149 15.2607 13.585 17.585L9.06055 13.0605C8.47479 12.4749 7.52521 12.4749 6.93945 13.0605L4 16V18.5C4 19.3284 4.67157 20 5.5 20H13.7285C13.8391 20.352 13.9894 20.6863 14.1709 21H5.5C4.11929 21 3 19.8807 3 18.5V5.5C3 4.11929 4.11929 3 5.5 3H18.5ZM15 7C13.8954 7 13 7.89543 13 9C13 10.1046 13.8954 11 15 11C16.1046 11 17 10.1046 17 9C17 7.89543 16.1046 7 15 7Z",fill:"currentColor"})),H=d;0&&(module.exports={IconAddImage});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconAddImage/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 IconAddImage: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M18.5 15C18.7761 15 19 15.2239 19 15.5V18H21.5C21.7761 18 22 18.2239 22 18.5C22 18.7761 21.7761 19 21.5 19H19V21.5C19 21.7761 18.7761 22 18.5 22C18.2239 22 18 21.7761 18 21.5V19H15.5C15.2239 19 15 18.7761 15 18.5C15 18.2239 15.2239 18 15.5 18H18V15.5C18 15.2239 18.2239 15 18.5 15Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M18.5 3C19.8807 3 21 4.11929 21 5.5V14.1699C20.2645 13.7443 19.4109 13.5 18.5 13.5C16.0512 13.5 14.0149 15.2607 13.585 17.585L9.06055 13.0605C8.47479 12.4749 7.52521 12.4749 6.93945 13.0605L4 16V18.5C4 19.3284 4.67157 20 5.5 20H13.7285C13.8391 20.352 13.9894 20.6863 14.1709 21H5.5C4.11929 21 3 19.8807 3 18.5V5.5C3 4.11929 4.11929 3 5.5 3H18.5ZM15 7C13.8954 7 13 7.89543 13 9C13 10.1046 13.8954 11 15 11C16.1046 11 17 10.1046 17 9C17 7.89543 16.1046 7 15 7Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAddImage;\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,4RACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,6cACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconAddImage_exports","__export","IconAddImage","IconAddImage_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconAddImage","props","React","CentralIconBase","IconAddImage_default"]}
@@ -0,0 +1,2 @@
1
+ import e from"react";import p from"react";import{Svg as l}from"react-native-svg";var C=({children:o,size:r=24,...t})=>p.createElement(l,{...t,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(C,{...o},e.createElement(n,{d:"M18.5 15C18.7761 15 19 15.2239 19 15.5V18H21.5C21.7761 18 22 18.2239 22 18.5C22 18.7761 21.7761 19 21.5 19H19V21.5C19 21.7761 18.7761 22 18.5 22C18.2239 22 18 21.7761 18 21.5V19H15.5C15.2239 19 15 18.7761 15 18.5C15 18.2239 15.2239 18 15.5 18H18V15.5C18 15.2239 18.2239 15 18.5 15Z",fill:"currentColor"}),e.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.5 3C19.8807 3 21 4.11929 21 5.5V14.1699C20.2645 13.7443 19.4109 13.5 18.5 13.5C16.0512 13.5 14.0149 15.2607 13.585 17.585L9.06055 13.0605C8.47479 12.4749 7.52521 12.4749 6.93945 13.0605L4 16V18.5C4 19.3284 4.67157 20 5.5 20H13.7285C13.8391 20.352 13.9894 20.6863 14.1709 21H5.5C4.11929 21 3 19.8807 3 18.5V5.5C3 4.11929 4.11929 3 5.5 3H18.5ZM15 7C13.8954 7 13 7.89543 13 9C13 10.1046 13.8954 11 15 11C16.1046 11 17 10.1046 17 9C17 7.89543 16.1046 7 15 7Z",fill:"currentColor"})),g=a;export{a as IconAddImage,g as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconAddImage/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 IconAddImage: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M18.5 15C18.7761 15 19 15.2239 19 15.5V18H21.5C21.7761 18 22 18.2239 22 18.5C22 18.7761 21.7761 19 21.5 19H19V21.5C19 21.7761 18.7761 22 18.5 22C18.2239 22 18 21.7761 18 21.5V19H15.5C15.2239 19 15 18.7761 15 18.5C15 18.2239 15.2239 18 15.5 18H18V15.5C18 15.2239 18.2239 15 18.5 15Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M18.5 3C19.8807 3 21 4.11929 21 5.5V14.1699C20.2645 13.7443 19.4109 13.5 18.5 13.5C16.0512 13.5 14.0149 15.2607 13.585 17.585L9.06055 13.0605C8.47479 12.4749 7.52521 12.4749 6.93945 13.0605L4 16V18.5C4 19.3284 4.67157 20 5.5 20H13.7285C13.8391 20.352 13.9894 20.6863 14.1709 21H5.5C4.11929 21 3 19.8807 3 18.5V5.5C3 4.11929 4.11929 3 5.5 3H18.5ZM15 7C13.8954 7 13 7.89543 13 9C13 10.1046 13.8954 11 15 11C16.1046 11 17 10.1046 17 9C17 7.89543 16.1046 7 15 7Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAddImage;\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,4RACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,6cACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconAddImage","props","React","CentralIconBase","IconAddImage_default"]}
@@ -1,2 +1,2 @@
1
- "use strict";var u=Object.create;var n=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var v=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var x=(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 C of v(o))!I.call(r,C)&&C!==e&&n(r,C,{get:()=>o[C],enumerable:!(l=d(o,C))||l.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)),P=r=>a(n({},"__esModule",{value:!0}),r);var H={};x(H,{IconArchive1:()=>i,default:()=>g});module.exports=P(H);var t=m(require("react"));var c=m(require("react")),f=require("react-native-svg"),s=({children:r,size:o=24,...e})=>c.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 p=require("react-native-svg"),i=r=>t.default.createElement(s,{...r},t.default.createElement(p.Path,{d:"M2.5 3C2.22386 3 2 3.22386 2 3.5V6.5C2 6.77614 2.22386 7 2.5 7H21.5C21.7761 7 22 6.77614 22 6.5V3.5C22 3.22386 21.7761 3 21.5 3H2.5Z",fill:"currentColor"}),t.default.createElement(p.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M20.75 8H3.25L3.25 17.0714C3.25 17.6133 3.24999 18.0504 3.27891 18.4043C3.30868 18.7687 3.37159 19.0888 3.52248 19.385C3.76217 19.8554 4.14462 20.2378 4.61502 20.4775C4.91117 20.6284 5.23126 20.6913 5.59569 20.7211C5.94956 20.75 6.38653 20.75 6.92827 20.75H17.0714C17.6132 20.75 18.0504 20.75 18.4043 20.7211C18.7687 20.6913 19.0888 20.6284 19.385 20.4775C19.8554 20.2378 20.2378 19.8554 20.4775 19.385C20.6284 19.0888 20.6913 18.7687 20.7211 18.4043C20.75 18.0504 20.75 17.6133 20.75 17.0714V8ZM9.5 11.5C9.5 11.2239 9.72386 11 10 11H14C14.2761 11 14.5 11.2239 14.5 11.5C14.5 11.7761 14.2761 12 14 12H10C9.72386 12 9.5 11.7761 9.5 11.5Z",fill:"currentColor"})),g=i;0&&(module.exports={IconArchive1});
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 x=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,l)=>{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:!(l=d(o,n))||l.enumerable});return r};var m=(r,o,e)=>(e=r!=null?u(B(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,{IconArchive1:()=>i,default:()=>g});module.exports=P(H);var C=m(require("react"));var c=m(require("react")),f=require("react-native-svg"),s=({children:r,size:o=24,...e})=>c.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 p=require("react-native-svg"),i=r=>C.default.createElement(s,{...r},C.default.createElement(p.Path,{d:"M2.5 3C2.22386 3 2 3.22386 2 3.5V6.5C2 6.77614 2.22386 7 2.5 7H21.5C21.7761 7 22 6.77614 22 6.5V3.5C22 3.22386 21.7761 3 21.5 3H2.5Z",fill:"currentColor"}),C.default.createElement(p.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 8H3V16.9291C3 18.3292 3 19.0293 3.27248 19.564C3.51217 20.0344 3.89462 20.4169 4.36502 20.6566C4.8998 20.9291 5.59987 20.9291 7 20.9291H17C18.4001 20.9291 19.1002 20.9291 19.635 20.6566C20.1054 20.4169 20.4878 20.0344 20.7275 19.564C21 19.0293 21 18.3292 21 16.9291V8ZM9.5 11.5C9.5 11.2239 9.72386 11 10 11H14C14.2761 11 14.5 11.2239 14.5 11.5C14.5 11.7761 14.2761 12 14 12H10C9.72386 12 9.5 11.7761 9.5 11.5Z",fill:"currentColor"})),g=i;0&&(module.exports={IconArchive1});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconArchive1/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 IconArchive1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M2.5 3C2.22386 3 2 3.22386 2 3.5V6.5C2 6.77614 2.22386 7 2.5 7H21.5C21.7761 7 22 6.77614 22 6.5V3.5C22 3.22386 21.7761 3 21.5 3H2.5Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M20.75 8H3.25L3.25 17.0714C3.25 17.6133 3.24999 18.0504 3.27891 18.4043C3.30868 18.7687 3.37159 19.0888 3.52248 19.385C3.76217 19.8554 4.14462 20.2378 4.61502 20.4775C4.91117 20.6284 5.23126 20.6913 5.59569 20.7211C5.94956 20.75 6.38653 20.75 6.92827 20.75H17.0714C17.6132 20.75 18.0504 20.75 18.4043 20.7211C18.7687 20.6913 19.0888 20.6284 19.385 20.4775C19.8554 20.2378 20.2378 19.8554 20.4775 19.385C20.6284 19.0888 20.6913 18.7687 20.7211 18.4043C20.75 18.0504 20.75 17.6133 20.75 17.0714V8ZM9.5 11.5C9.5 11.2239 9.72386 11 10 11H14C14.2761 11 14.5 11.2239 14.5 11.5C14.5 11.7761 14.2761 12 14 12H10C9.72386 12 9.5 11.7761 9.5 11.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArchive1;\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,uIACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,+nBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconArchive1_exports","__export","IconArchive1","IconArchive1_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconArchive1","props","React","CentralIconBase","IconArchive1_default"]}
1
+ {"version":3,"sources":["../src/IconArchive1/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 IconArchive1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M2.5 3C2.22386 3 2 3.22386 2 3.5V6.5C2 6.77614 2.22386 7 2.5 7H21.5C21.7761 7 22 6.77614 22 6.5V3.5C22 3.22386 21.7761 3 21.5 3H2.5Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M21 8H3V16.9291C3 18.3292 3 19.0293 3.27248 19.564C3.51217 20.0344 3.89462 20.4169 4.36502 20.6566C4.8998 20.9291 5.59987 20.9291 7 20.9291H17C18.4001 20.9291 19.1002 20.9291 19.635 20.6566C20.1054 20.4169 20.4878 20.0344 20.7275 19.564C21 19.0293 21 18.3292 21 16.9291V8ZM9.5 11.5C9.5 11.2239 9.72386 11 10 11H14C14.2761 11 14.5 11.2239 14.5 11.5C14.5 11.7761 14.2761 12 14 12H10C9.72386 12 9.5 11.7761 9.5 11.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArchive1;\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,uIACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,gaACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconArchive1_exports","__export","IconArchive1","IconArchive1_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconArchive1","props","React","CentralIconBase","IconArchive1_default"]}
@@ -1,2 +1,2 @@
1
- import e from"react";import p from"react";import{Svg as l}from"react-native-svg";var C=({children:o,size:r=24,...t})=>p.createElement(l,{...t,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(C,{...o},e.createElement(n,{d:"M2.5 3C2.22386 3 2 3.22386 2 3.5V6.5C2 6.77614 2.22386 7 2.5 7H21.5C21.7761 7 22 6.77614 22 6.5V3.5C22 3.22386 21.7761 3 21.5 3H2.5Z",fill:"currentColor"}),e.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M20.75 8H3.25L3.25 17.0714C3.25 17.6133 3.24999 18.0504 3.27891 18.4043C3.30868 18.7687 3.37159 19.0888 3.52248 19.385C3.76217 19.8554 4.14462 20.2378 4.61502 20.4775C4.91117 20.6284 5.23126 20.6913 5.59569 20.7211C5.94956 20.75 6.38653 20.75 6.92827 20.75H17.0714C17.6132 20.75 18.0504 20.75 18.4043 20.7211C18.7687 20.6913 19.0888 20.6284 19.385 20.4775C19.8554 20.2378 20.2378 19.8554 20.4775 19.385C20.6284 19.0888 20.6913 18.7687 20.7211 18.4043C20.75 18.0504 20.75 17.6133 20.75 17.0714V8ZM9.5 11.5C9.5 11.2239 9.72386 11 10 11H14C14.2761 11 14.5 11.2239 14.5 11.5C14.5 11.7761 14.2761 12 14 12H10C9.72386 12 9.5 11.7761 9.5 11.5Z",fill:"currentColor"})),I=a;export{a as IconArchive1,I as default};
1
+ import e from"react";import p from"react";import{Svg as l}from"react-native-svg";var n=({children:o,size:r=24,...C})=>p.createElement(l,{...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 t}from"react-native-svg";var a=o=>e.createElement(n,{...o},e.createElement(t,{d:"M2.5 3C2.22386 3 2 3.22386 2 3.5V6.5C2 6.77614 2.22386 7 2.5 7H21.5C21.7761 7 22 6.77614 22 6.5V3.5C22 3.22386 21.7761 3 21.5 3H2.5Z",fill:"currentColor"}),e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 8H3V16.9291C3 18.3292 3 19.0293 3.27248 19.564C3.51217 20.0344 3.89462 20.4169 4.36502 20.6566C4.8998 20.9291 5.59987 20.9291 7 20.9291H17C18.4001 20.9291 19.1002 20.9291 19.635 20.6566C20.1054 20.4169 20.4878 20.0344 20.7275 19.564C21 19.0293 21 18.3292 21 16.9291V8ZM9.5 11.5C9.5 11.2239 9.72386 11 10 11H14C14.2761 11 14.5 11.2239 14.5 11.5C14.5 11.7761 14.2761 12 14 12H10C9.72386 12 9.5 11.7761 9.5 11.5Z",fill:"currentColor"})),I=a;export{a as IconArchive1,I as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconArchive1/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 IconArchive1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M2.5 3C2.22386 3 2 3.22386 2 3.5V6.5C2 6.77614 2.22386 7 2.5 7H21.5C21.7761 7 22 6.77614 22 6.5V3.5C22 3.22386 21.7761 3 21.5 3H2.5Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M20.75 8H3.25L3.25 17.0714C3.25 17.6133 3.24999 18.0504 3.27891 18.4043C3.30868 18.7687 3.37159 19.0888 3.52248 19.385C3.76217 19.8554 4.14462 20.2378 4.61502 20.4775C4.91117 20.6284 5.23126 20.6913 5.59569 20.7211C5.94956 20.75 6.38653 20.75 6.92827 20.75H17.0714C17.6132 20.75 18.0504 20.75 18.4043 20.7211C18.7687 20.6913 19.0888 20.6284 19.385 20.4775C19.8554 20.2378 20.2378 19.8554 20.4775 19.385C20.6284 19.0888 20.6913 18.7687 20.7211 18.4043C20.75 18.0504 20.75 17.6133 20.75 17.0714V8ZM9.5 11.5C9.5 11.2239 9.72386 11 10 11H14C14.2761 11 14.5 11.2239 14.5 11.5C14.5 11.7761 14.2761 12 14 12H10C9.72386 12 9.5 11.7761 9.5 11.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArchive1;\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,uIACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,+nBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconArchive1","props","React","CentralIconBase","IconArchive1_default"]}
1
+ {"version":3,"sources":["../src/IconArchive1/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 IconArchive1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M2.5 3C2.22386 3 2 3.22386 2 3.5V6.5C2 6.77614 2.22386 7 2.5 7H21.5C21.7761 7 22 6.77614 22 6.5V3.5C22 3.22386 21.7761 3 21.5 3H2.5Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M21 8H3V16.9291C3 18.3292 3 19.0293 3.27248 19.564C3.51217 20.0344 3.89462 20.4169 4.36502 20.6566C4.8998 20.9291 5.59987 20.9291 7 20.9291H17C18.4001 20.9291 19.1002 20.9291 19.635 20.6566C20.1054 20.4169 20.4878 20.0344 20.7275 19.564C21 19.0293 21 18.3292 21 16.9291V8ZM9.5 11.5C9.5 11.2239 9.72386 11 10 11H14C14.2761 11 14.5 11.2239 14.5 11.5C14.5 11.7761 14.2761 12 14 12H10C9.72386 12 9.5 11.7761 9.5 11.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArchive1;\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,uIACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,gaACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconArchive1","props","React","CentralIconBase","IconArchive1_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconArchiveJunk: FC<CentralIconBaseProps>;
4
+ export default IconArchiveJunk;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var n=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var v=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var L=(r,o)=>{for(var C in o)n(r,C,{get:o[C],enumerable:!0})},a=(r,o,C,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of v(o))!I.call(r,e)&&e!==C&&n(r,e,{get:()=>o[e],enumerable:!(l=d(o,e))||l.enumerable});return r};var m=(r,o,C)=>(C=r!=null?u(B(r)):{},a(o||!r||!r.__esModule?n(C,"default",{value:r,enumerable:!0}):C,r)),x=r=>a(n({},"__esModule",{value:!0}),r);var g={};L(g,{IconArchiveJunk:()=>i,default:()=>P});module.exports=x(g);var t=m(require("react"));var c=m(require("react")),f=require("react-native-svg"),s=({children:r,size:o=24,...C})=>c.default.createElement(f.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 p=require("react-native-svg"),i=r=>t.default.createElement(s,{...r},t.default.createElement(p.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 17C21 18.4 20.9999 19.1 20.7275 19.6348C20.4879 20.1052 20.1052 20.4879 19.6348 20.7275C19.1 20.9999 18.4 21 17 21H7C5.60002 21 4.89999 20.9999 4.36523 20.7275C3.89483 20.4879 3.51214 20.1052 3.27246 19.6348C3.00007 19.1 3 18.4 3 17V8H21V17ZM14.8535 11.6465C14.6583 11.4512 14.3417 11.4512 14.1465 11.6465L12 13.793L9.85352 11.6465C9.65825 11.4512 9.34175 11.4512 9.14648 11.6465C8.95122 11.8417 8.95122 12.1583 9.14648 12.3535L11.293 14.5L9.14648 16.6465C8.95122 16.8417 8.95122 17.1583 9.14648 17.3535C9.34175 17.5488 9.65825 17.5488 9.85352 17.3535L12 15.207L14.1465 17.3535C14.3417 17.5488 14.6583 17.5488 14.8535 17.3535C15.0488 17.1583 15.0488 16.8417 14.8535 16.6465L12.707 14.5L14.8535 12.3535C15.0488 12.1583 15.0488 11.8417 14.8535 11.6465Z",fill:"currentColor"}),t.default.createElement(p.Path,{d:"M21.2002 3C21.4799 3 21.6197 3.00034 21.7266 3.05469C21.8206 3.10262 21.8974 3.17936 21.9453 3.27344C21.9997 3.38033 22 3.52014 22 3.7998V6.2002C22 6.47986 21.9997 6.61967 21.9453 6.72656C21.8974 6.82064 21.8206 6.89738 21.7266 6.94531C21.6197 6.99966 21.4799 7 21.2002 7H2.7998C2.52014 7 2.38033 6.99966 2.27344 6.94531C2.17936 6.89738 2.10262 6.82064 2.05469 6.72656C2.00034 6.61967 2 6.47986 2 6.2002V3.7998C2 3.52014 2.00034 3.38033 2.05469 3.27344C2.10262 3.17936 2.17936 3.10262 2.27344 3.05469C2.38033 3.00034 2.52014 3 2.7998 3H21.2002Z",fill:"currentColor"})),P=i;0&&(module.exports={IconArchiveJunk});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconArchiveJunk/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 IconArchiveJunk: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M21 17C21 18.4 20.9999 19.1 20.7275 19.6348C20.4879 20.1052 20.1052 20.4879 19.6348 20.7275C19.1 20.9999 18.4 21 17 21H7C5.60002 21 4.89999 20.9999 4.36523 20.7275C3.89483 20.4879 3.51214 20.1052 3.27246 19.6348C3.00007 19.1 3 18.4 3 17V8H21V17ZM14.8535 11.6465C14.6583 11.4512 14.3417 11.4512 14.1465 11.6465L12 13.793L9.85352 11.6465C9.65825 11.4512 9.34175 11.4512 9.14648 11.6465C8.95122 11.8417 8.95122 12.1583 9.14648 12.3535L11.293 14.5L9.14648 16.6465C8.95122 16.8417 8.95122 17.1583 9.14648 17.3535C9.34175 17.5488 9.65825 17.5488 9.85352 17.3535L12 15.207L14.1465 17.3535C14.3417 17.5488 14.6583 17.5488 14.8535 17.3535C15.0488 17.1583 15.0488 16.8417 14.8535 16.6465L12.707 14.5L14.8535 12.3535C15.0488 12.1583 15.0488 11.8417 14.8535 11.6465Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.2002 3C21.4799 3 21.6197 3.00034 21.7266 3.05469C21.8206 3.10262 21.8974 3.17936 21.9453 3.27344C21.9997 3.38033 22 3.52014 22 3.7998V6.2002C22 6.47986 21.9997 6.61967 21.9453 6.72656C21.8974 6.82064 21.8206 6.89738 21.7266 6.94531C21.6197 6.99966 21.4799 7 21.2002 7H2.7998C2.52014 7 2.38033 6.99966 2.27344 6.94531C2.17936 6.89738 2.10262 6.82064 2.05469 6.72656C2.00034 6.61967 2 6.47986 2 6.2002V3.7998C2 3.52014 2.00034 3.38033 2.05469 3.27344C2.10262 3.17936 2.17936 3.10262 2.27344 3.05469C2.38033 3.00034 2.52014 3 2.7998 3H21.2002Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArchiveJunk;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,qBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,qvBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,miBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconArchiveJunk_exports","__export","IconArchiveJunk","IconArchiveJunk_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconArchiveJunk","props","React","CentralIconBase","IconArchiveJunk_default"]}
@@ -0,0 +1,2 @@
1
+ import C from"react";import p from"react";import{Svg as l}from"react-native-svg";var e=({children:o,size:r=24,...t})=>p.createElement(l,{...t,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=>C.createElement(e,{...o},C.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 17C21 18.4 20.9999 19.1 20.7275 19.6348C20.4879 20.1052 20.1052 20.4879 19.6348 20.7275C19.1 20.9999 18.4 21 17 21H7C5.60002 21 4.89999 20.9999 4.36523 20.7275C3.89483 20.4879 3.51214 20.1052 3.27246 19.6348C3.00007 19.1 3 18.4 3 17V8H21V17ZM14.8535 11.6465C14.6583 11.4512 14.3417 11.4512 14.1465 11.6465L12 13.793L9.85352 11.6465C9.65825 11.4512 9.34175 11.4512 9.14648 11.6465C8.95122 11.8417 8.95122 12.1583 9.14648 12.3535L11.293 14.5L9.14648 16.6465C8.95122 16.8417 8.95122 17.1583 9.14648 17.3535C9.34175 17.5488 9.65825 17.5488 9.85352 17.3535L12 15.207L14.1465 17.3535C14.3417 17.5488 14.6583 17.5488 14.8535 17.3535C15.0488 17.1583 15.0488 16.8417 14.8535 16.6465L12.707 14.5L14.8535 12.3535C15.0488 12.1583 15.0488 11.8417 14.8535 11.6465Z",fill:"currentColor"}),C.createElement(n,{d:"M21.2002 3C21.4799 3 21.6197 3.00034 21.7266 3.05469C21.8206 3.10262 21.8974 3.17936 21.9453 3.27344C21.9997 3.38033 22 3.52014 22 3.7998V6.2002C22 6.47986 21.9997 6.61967 21.9453 6.72656C21.8974 6.82064 21.8206 6.89738 21.7266 6.94531C21.6197 6.99966 21.4799 7 21.2002 7H2.7998C2.52014 7 2.38033 6.99966 2.27344 6.94531C2.17936 6.89738 2.10262 6.82064 2.05469 6.72656C2.00034 6.61967 2 6.47986 2 6.2002V3.7998C2 3.52014 2.00034 3.38033 2.05469 3.27344C2.10262 3.17936 2.17936 3.10262 2.27344 3.05469C2.38033 3.00034 2.52014 3 2.7998 3H21.2002Z",fill:"currentColor"})),I=a;export{a as IconArchiveJunk,I as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconArchiveJunk/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 IconArchiveJunk: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M21 17C21 18.4 20.9999 19.1 20.7275 19.6348C20.4879 20.1052 20.1052 20.4879 19.6348 20.7275C19.1 20.9999 18.4 21 17 21H7C5.60002 21 4.89999 20.9999 4.36523 20.7275C3.89483 20.4879 3.51214 20.1052 3.27246 19.6348C3.00007 19.1 3 18.4 3 17V8H21V17ZM14.8535 11.6465C14.6583 11.4512 14.3417 11.4512 14.1465 11.6465L12 13.793L9.85352 11.6465C9.65825 11.4512 9.34175 11.4512 9.14648 11.6465C8.95122 11.8417 8.95122 12.1583 9.14648 12.3535L11.293 14.5L9.14648 16.6465C8.95122 16.8417 8.95122 17.1583 9.14648 17.3535C9.34175 17.5488 9.65825 17.5488 9.85352 17.3535L12 15.207L14.1465 17.3535C14.3417 17.5488 14.6583 17.5488 14.8535 17.3535C15.0488 17.1583 15.0488 16.8417 14.8535 16.6465L12.707 14.5L14.8535 12.3535C15.0488 12.1583 15.0488 11.8417 14.8535 11.6465Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.2002 3C21.4799 3 21.6197 3.00034 21.7266 3.05469C21.8206 3.10262 21.8974 3.17936 21.9453 3.27344C21.9997 3.38033 22 3.52014 22 3.7998V6.2002C22 6.47986 21.9997 6.61967 21.9453 6.72656C21.8974 6.82064 21.8206 6.89738 21.7266 6.94531C21.6197 6.99966 21.4799 7 21.2002 7H2.7998C2.52014 7 2.38033 6.99966 2.27344 6.94531C2.17936 6.89738 2.10262 6.82064 2.05469 6.72656C2.00034 6.61967 2 6.47986 2 6.2002V3.7998C2 3.52014 2.00034 3.38033 2.05469 3.27344C2.10262 3.17936 2.17936 3.10262 2.27344 3.05469C2.38033 3.00034 2.52014 3 2.7998 3H21.2002Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArchiveJunk;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,qvBACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,miBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconArchiveJunk","props","React","CentralIconBase","IconArchiveJunk_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconScanVoice: FC<CentralIconBaseProps>;
4
+ export default IconScanVoice;
@@ -0,0 +1,2 @@
1
+ "use strict";var s=Object.create;var e=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var a=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,H=Object.prototype.hasOwnProperty;var I=(r,C)=>{for(var o in C)e(r,o,{get:C[o],enumerable:!0})},f=(r,C,o,p)=>{if(C&&typeof C=="object"||typeof C=="function")for(let t of a(C))!H.call(r,t)&&t!==o&&e(r,t,{get:()=>C[t],enumerable:!(p=d(C,t))||p.enumerable});return r};var V=(r,C,o)=>(o=r!=null?s(B(r)):{},f(C||!r||!r.__esModule?e(o,"default",{value:r,enumerable:!0}):o,r)),M=r=>f(e({},"__esModule",{value:!0}),r);var x={};I(x,{IconScanVoice:()=>c,default:()=>Z});module.exports=M(x);var l=V(require("react"));var i=V(require("react")),u=require("react-native-svg"),m=({children:r,size:C=24,...o})=>i.default.createElement(u.Svg,{...o,width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},r);var n=require("react-native-svg"),c=r=>l.default.createElement(m,{...r},l.default.createElement(n.Path,{d:"M3.5 15C3.77614 15 4 15.2239 4 15.5V18.5C4 19.3284 4.67157 20 5.5 20H8.5C8.77614 20 9 20.2239 9 20.5C9 20.7761 8.77614 21 8.5 21H5.5C4.11929 21 3 19.8807 3 18.5V15.5C3 15.2239 3.22386 15 3.5 15Z",fill:"currentColor"}),l.default.createElement(n.Path,{d:"M20.5 15C20.7761 15 21 15.2239 21 15.5V18.5C21 19.8807 19.8807 21 18.5 21H15.5C15.2239 21 15 20.7761 15 20.5C15 20.2239 15.2239 20 15.5 20H18.5C19.3284 20 20 19.3284 20 18.5V15.5C20 15.2239 20.2239 15 20.5 15Z",fill:"currentColor"}),l.default.createElement(n.Path,{d:"M10.5 7C10.7761 7 11 7.22386 11 7.5V16.5C11 16.7761 10.7761 17 10.5 17C10.2239 17 10 16.7761 10 16.5V7.5C10 7.22386 10.2239 7 10.5 7Z",fill:"currentColor"}),l.default.createElement(n.Path,{d:"M16.5 9C16.7761 9 17 9.22386 17 9.5V14.5C17 14.7761 16.7761 15 16.5 15C16.2239 15 16 14.7761 16 14.5V9.5C16 9.22386 16.2239 9 16.5 9Z",fill:"currentColor"}),l.default.createElement(n.Path,{d:"M7.5 10C7.77614 10 8 10.2239 8 10.5V13.5C8 13.7761 7.77614 14 7.5 14C7.22386 14 7 13.7761 7 13.5V10.5C7 10.2239 7.22386 10 7.5 10Z",fill:"currentColor"}),l.default.createElement(n.Path,{d:"M13.5 10.5C13.7761 10.5 14 10.7239 14 11V13C14 13.2761 13.7761 13.5 13.5 13.5C13.2239 13.5 13 13.2761 13 13V11C13 10.7239 13.2239 10.5 13.5 10.5Z",fill:"currentColor"}),l.default.createElement(n.Path,{d:"M8.5 3C8.77614 3 9 3.22386 9 3.5C9 3.77614 8.77614 4 8.5 4H5.5C4.67157 4 4 4.67157 4 5.5V8.5C4 8.77614 3.77614 9 3.5 9C3.22386 9 3 8.77614 3 8.5V5.5C3 4.11929 4.11929 3 5.5 3H8.5Z",fill:"currentColor"}),l.default.createElement(n.Path,{d:"M18.5 3C19.8807 3 21 4.11929 21 5.5V8.5C21 8.77614 20.7761 9 20.5 9C20.2239 9 20 8.77614 20 8.5V5.5C20 4.67157 19.3284 4 18.5 4H15.5C15.2239 4 15 3.77614 15 3.5C15 3.22386 15.2239 3 15.5 3H18.5Z",fill:"currentColor"})),Z=c;0&&(module.exports={IconScanVoice});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconScanVoice/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 IconScanVoice: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3.5 15C3.77614 15 4 15.2239 4 15.5V18.5C4 19.3284 4.67157 20 5.5 20H8.5C8.77614 20 9 20.2239 9 20.5C9 20.7761 8.77614 21 8.5 21H5.5C4.11929 21 3 19.8807 3 18.5V15.5C3 15.2239 3.22386 15 3.5 15Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.5 15C20.7761 15 21 15.2239 21 15.5V18.5C21 19.8807 19.8807 21 18.5 21H15.5C15.2239 21 15 20.7761 15 20.5C15 20.2239 15.2239 20 15.5 20H18.5C19.3284 20 20 19.3284 20 18.5V15.5C20 15.2239 20.2239 15 20.5 15Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M10.5 7C10.7761 7 11 7.22386 11 7.5V16.5C11 16.7761 10.7761 17 10.5 17C10.2239 17 10 16.7761 10 16.5V7.5C10 7.22386 10.2239 7 10.5 7Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M16.5 9C16.7761 9 17 9.22386 17 9.5V14.5C17 14.7761 16.7761 15 16.5 15C16.2239 15 16 14.7761 16 14.5V9.5C16 9.22386 16.2239 9 16.5 9Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7.5 10C7.77614 10 8 10.2239 8 10.5V13.5C8 13.7761 7.77614 14 7.5 14C7.22386 14 7 13.7761 7 13.5V10.5C7 10.2239 7.22386 10 7.5 10Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.5 10.5C13.7761 10.5 14 10.7239 14 11V13C14 13.2761 13.7761 13.5 13.5 13.5C13.2239 13.5 13 13.2761 13 13V11C13 10.7239 13.2239 10.5 13.5 10.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.5 3C8.77614 3 9 3.22386 9 3.5C9 3.77614 8.77614 4 8.5 4H5.5C4.67157 4 4 4.67157 4 5.5V8.5C4 8.77614 3.77614 9 3.5 9C3.22386 9 3 8.77614 3 8.5V5.5C3 4.11929 4.11929 3 5.5 3H8.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M18.5 3C19.8807 3 21 4.11929 21 5.5V8.5C21 8.77614 20.7761 9 20.5 9C20.2239 9 20 8.77614 20 8.5V5.5C20 4.67157 19.3284 4 18.5 4H15.5C15.2239 4 15 3.77614 15 3.5C15 3.22386 15.2239 3 15.5 3H18.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconScanVoice;\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,qMACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oNACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,wIACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,wIACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qIACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oJACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sLACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qMACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconScanVoice_exports","__export","IconScanVoice","IconScanVoice_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconScanVoice","props","React","CentralIconBase","IconScanVoice_default"]}
@@ -0,0 +1,2 @@
1
+ import r from"react";import e from"react";import{Svg as p}from"react-native-svg";var n=({children:l,size:o=24,...t})=>e.createElement(p,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},l);import{Path as C}from"react-native-svg";var f=l=>r.createElement(n,{...l},r.createElement(C,{d:"M3.5 15C3.77614 15 4 15.2239 4 15.5V18.5C4 19.3284 4.67157 20 5.5 20H8.5C8.77614 20 9 20.2239 9 20.5C9 20.7761 8.77614 21 8.5 21H5.5C4.11929 21 3 19.8807 3 18.5V15.5C3 15.2239 3.22386 15 3.5 15Z",fill:"currentColor"}),r.createElement(C,{d:"M20.5 15C20.7761 15 21 15.2239 21 15.5V18.5C21 19.8807 19.8807 21 18.5 21H15.5C15.2239 21 15 20.7761 15 20.5C15 20.2239 15.2239 20 15.5 20H18.5C19.3284 20 20 19.3284 20 18.5V15.5C20 15.2239 20.2239 15 20.5 15Z",fill:"currentColor"}),r.createElement(C,{d:"M10.5 7C10.7761 7 11 7.22386 11 7.5V16.5C11 16.7761 10.7761 17 10.5 17C10.2239 17 10 16.7761 10 16.5V7.5C10 7.22386 10.2239 7 10.5 7Z",fill:"currentColor"}),r.createElement(C,{d:"M16.5 9C16.7761 9 17 9.22386 17 9.5V14.5C17 14.7761 16.7761 15 16.5 15C16.2239 15 16 14.7761 16 14.5V9.5C16 9.22386 16.2239 9 16.5 9Z",fill:"currentColor"}),r.createElement(C,{d:"M7.5 10C7.77614 10 8 10.2239 8 10.5V13.5C8 13.7761 7.77614 14 7.5 14C7.22386 14 7 13.7761 7 13.5V10.5C7 10.2239 7.22386 10 7.5 10Z",fill:"currentColor"}),r.createElement(C,{d:"M13.5 10.5C13.7761 10.5 14 10.7239 14 11V13C14 13.2761 13.7761 13.5 13.5 13.5C13.2239 13.5 13 13.2761 13 13V11C13 10.7239 13.2239 10.5 13.5 10.5Z",fill:"currentColor"}),r.createElement(C,{d:"M8.5 3C8.77614 3 9 3.22386 9 3.5C9 3.77614 8.77614 4 8.5 4H5.5C4.67157 4 4 4.67157 4 5.5V8.5C4 8.77614 3.77614 9 3.5 9C3.22386 9 3 8.77614 3 8.5V5.5C3 4.11929 4.11929 3 5.5 3H8.5Z",fill:"currentColor"}),r.createElement(C,{d:"M18.5 3C19.8807 3 21 4.11929 21 5.5V8.5C21 8.77614 20.7761 9 20.5 9C20.2239 9 20 8.77614 20 8.5V5.5C20 4.67157 19.3284 4 18.5 4H15.5C15.2239 4 15 3.77614 15 3.5C15 3.22386 15.2239 3 15.5 3H18.5Z",fill:"currentColor"})),H=f;export{f as IconScanVoice,H as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconScanVoice/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 IconScanVoice: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3.5 15C3.77614 15 4 15.2239 4 15.5V18.5C4 19.3284 4.67157 20 5.5 20H8.5C8.77614 20 9 20.2239 9 20.5C9 20.7761 8.77614 21 8.5 21H5.5C4.11929 21 3 19.8807 3 18.5V15.5C3 15.2239 3.22386 15 3.5 15Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.5 15C20.7761 15 21 15.2239 21 15.5V18.5C21 19.8807 19.8807 21 18.5 21H15.5C15.2239 21 15 20.7761 15 20.5C15 20.2239 15.2239 20 15.5 20H18.5C19.3284 20 20 19.3284 20 18.5V15.5C20 15.2239 20.2239 15 20.5 15Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M10.5 7C10.7761 7 11 7.22386 11 7.5V16.5C11 16.7761 10.7761 17 10.5 17C10.2239 17 10 16.7761 10 16.5V7.5C10 7.22386 10.2239 7 10.5 7Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M16.5 9C16.7761 9 17 9.22386 17 9.5V14.5C17 14.7761 16.7761 15 16.5 15C16.2239 15 16 14.7761 16 14.5V9.5C16 9.22386 16.2239 9 16.5 9Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7.5 10C7.77614 10 8 10.2239 8 10.5V13.5C8 13.7761 7.77614 14 7.5 14C7.22386 14 7 13.7761 7 13.5V10.5C7 10.2239 7.22386 10 7.5 10Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.5 10.5C13.7761 10.5 14 10.7239 14 11V13C14 13.2761 13.7761 13.5 13.5 13.5C13.2239 13.5 13 13.2761 13 13V11C13 10.7239 13.2239 10.5 13.5 10.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.5 3C8.77614 3 9 3.22386 9 3.5C9 3.77614 8.77614 4 8.5 4H5.5C4.67157 4 4 4.67157 4 5.5V8.5C4 8.77614 3.77614 9 3.5 9C3.22386 9 3 8.77614 3 8.5V5.5C3 4.11929 4.11929 3 5.5 3H8.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M18.5 3C19.8807 3 21 4.11929 21 5.5V8.5C21 8.77614 20.7761 9 20.5 9C20.2239 9 20 8.77614 20 8.5V5.5C20 4.67157 19.3284 4 18.5 4H15.5C15.2239 4 15 3.77614 15 3.5C15 3.22386 15.2239 3 15.5 3H18.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconScanVoice;\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,qMACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oNACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,wIACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,wIACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qIACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oJACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sLACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qMACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconScanVoice","props","React","CentralIconBase","IconScanVoice_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconVoiceMemo: FC<CentralIconBaseProps>;
4
+ export default IconVoiceMemo;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var l=Object.defineProperty;var V=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,d=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 t of B(o))!d.call(r,t)&&t!==C&&l(r,t,{get:()=>o[t],enumerable:!(p=V(o,t))||p.enumerable});return r};var m=(r,o,C)=>(C=r!=null?u(I(r)):{},f(o||!r||!r.__esModule?l(C,"default",{value:r,enumerable:!0}):C,r)),P=r=>f(l({},"__esModule",{value:!0}),r);var M={};x(M,{IconVoiceMemo:()=>c,default:()=>g});module.exports=P(M);var n=m(require("react"));var i=m(require("react")),s=require("react-native-svg"),a=({children:r,size:o=24,...C})=>i.default.createElement(s.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=>n.default.createElement(a,{...r},n.default.createElement(e.Path,{d:"M16.499 2.5C17.8797 2.5 18.999 3.61929 18.999 5C18.999 6.20943 18.1401 7.21753 16.999 7.44922V16.5498C18.1402 16.7814 18.999 17.7905 18.999 19C18.999 20.3807 17.8797 21.5 16.499 21.5C15.1183 21.5 13.999 20.3807 13.999 19C13.999 17.7905 14.8579 16.7814 15.999 16.5498V7.44922C14.858 7.21753 13.999 6.20943 13.999 5C13.999 3.61929 15.1183 2.5 16.499 2.5Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M7.5 3C7.77614 3 8 3.22386 8 3.5V20.5C8 20.7761 7.77614 21 7.5 21C7.22386 21 7 20.7761 7 20.5V3.5C7 3.22386 7.22386 3 7.5 3Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M3.5 9C3.77614 9 4 9.22386 4 9.5V14.5C4 14.7761 3.77614 15 3.5 15C3.22386 15 3 14.7761 3 14.5V9.5C3 9.22386 3.22386 9 3.5 9Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M12 9C12.2761 9 12.5 9.22386 12.5 9.5V14.5C12.5 14.7761 12.2761 15 12 15C11.7239 15 11.5 14.7761 11.5 14.5V9.5C11.5 9.22386 11.7239 9 12 9Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M20.5 10C20.7761 10 21 10.2239 21 10.5V13.5C21 13.7761 20.7761 14 20.5 14C20.2239 14 20 13.7761 20 13.5V10.5C20 10.2239 20.2239 10 20.5 10Z",fill:"currentColor"})),g=c;0&&(module.exports={IconVoiceMemo});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconVoiceMemo/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 IconVoiceMemo: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M16.499 2.5C17.8797 2.5 18.999 3.61929 18.999 5C18.999 6.20943 18.1401 7.21753 16.999 7.44922V16.5498C18.1402 16.7814 18.999 17.7905 18.999 19C18.999 20.3807 17.8797 21.5 16.499 21.5C15.1183 21.5 13.999 20.3807 13.999 19C13.999 17.7905 14.8579 16.7814 15.999 16.5498V7.44922C14.858 7.21753 13.999 6.20943 13.999 5C13.999 3.61929 15.1183 2.5 16.499 2.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7.5 3C7.77614 3 8 3.22386 8 3.5V20.5C8 20.7761 7.77614 21 7.5 21C7.22386 21 7 20.7761 7 20.5V3.5C7 3.22386 7.22386 3 7.5 3Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M3.5 9C3.77614 9 4 9.22386 4 9.5V14.5C4 14.7761 3.77614 15 3.5 15C3.22386 15 3 14.7761 3 14.5V9.5C3 9.22386 3.22386 9 3.5 9Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12 9C12.2761 9 12.5 9.22386 12.5 9.5V14.5C12.5 14.7761 12.2761 15 12 15C11.7239 15 11.5 14.7761 11.5 14.5V9.5C11.5 9.22386 11.7239 9 12 9Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.5 10C20.7761 10 21 10.2239 21 10.5V13.5C21 13.7761 20.7761 14 20.5 14C20.2239 14 20 13.7761 20 13.5V10.5C20 10.2239 20.2239 10 20.5 10Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceMemo;\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,mWACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+HACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+HACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8IACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8IACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconVoiceMemo_exports","__export","IconVoiceMemo","IconVoiceMemo_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconVoiceMemo","props","React","CentralIconBase","IconVoiceMemo_default"]}
@@ -0,0 +1,2 @@
1
+ import o from"react";import l from"react";import{Svg as p}from"react-native-svg";var e=({children:n,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"},n);import{Path as C}from"react-native-svg";var f=n=>o.createElement(e,{...n},o.createElement(C,{d:"M16.499 2.5C17.8797 2.5 18.999 3.61929 18.999 5C18.999 6.20943 18.1401 7.21753 16.999 7.44922V16.5498C18.1402 16.7814 18.999 17.7905 18.999 19C18.999 20.3807 17.8797 21.5 16.499 21.5C15.1183 21.5 13.999 20.3807 13.999 19C13.999 17.7905 14.8579 16.7814 15.999 16.5498V7.44922C14.858 7.21753 13.999 6.20943 13.999 5C13.999 3.61929 15.1183 2.5 16.499 2.5Z",fill:"currentColor"}),o.createElement(C,{d:"M7.5 3C7.77614 3 8 3.22386 8 3.5V20.5C8 20.7761 7.77614 21 7.5 21C7.22386 21 7 20.7761 7 20.5V3.5C7 3.22386 7.22386 3 7.5 3Z",fill:"currentColor"}),o.createElement(C,{d:"M3.5 9C3.77614 9 4 9.22386 4 9.5V14.5C4 14.7761 3.77614 15 3.5 15C3.22386 15 3 14.7761 3 14.5V9.5C3 9.22386 3.22386 9 3.5 9Z",fill:"currentColor"}),o.createElement(C,{d:"M12 9C12.2761 9 12.5 9.22386 12.5 9.5V14.5C12.5 14.7761 12.2761 15 12 15C11.7239 15 11.5 14.7761 11.5 14.5V9.5C11.5 9.22386 11.7239 9 12 9Z",fill:"currentColor"}),o.createElement(C,{d:"M20.5 10C20.7761 10 21 10.2239 21 10.5V13.5C21 13.7761 20.7761 14 20.5 14C20.2239 14 20 13.7761 20 13.5V10.5C20 10.2239 20.2239 10 20.5 10Z",fill:"currentColor"})),d=f;export{f as IconVoiceMemo,d as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconVoiceMemo/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 IconVoiceMemo: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M16.499 2.5C17.8797 2.5 18.999 3.61929 18.999 5C18.999 6.20943 18.1401 7.21753 16.999 7.44922V16.5498C18.1402 16.7814 18.999 17.7905 18.999 19C18.999 20.3807 17.8797 21.5 16.499 21.5C15.1183 21.5 13.999 20.3807 13.999 19C13.999 17.7905 14.8579 16.7814 15.999 16.5498V7.44922C14.858 7.21753 13.999 6.20943 13.999 5C13.999 3.61929 15.1183 2.5 16.499 2.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7.5 3C7.77614 3 8 3.22386 8 3.5V20.5C8 20.7761 7.77614 21 7.5 21C7.22386 21 7 20.7761 7 20.5V3.5C7 3.22386 7.22386 3 7.5 3Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M3.5 9C3.77614 9 4 9.22386 4 9.5V14.5C4 14.7761 3.77614 15 3.5 15C3.22386 15 3 14.7761 3 14.5V9.5C3 9.22386 3.22386 9 3.5 9Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12 9C12.2761 9 12.5 9.22386 12.5 9.5V14.5C12.5 14.7761 12.2761 15 12 15C11.7239 15 11.5 14.7761 11.5 14.5V9.5C11.5 9.22386 11.7239 9 12 9Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.5 10C20.7761 10 21 10.2239 21 10.5V13.5C21 13.7761 20.7761 14 20.5 14C20.2239 14 20 13.7761 20 13.5V10.5C20 10.2239 20.2239 10 20.5 10Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceMemo;\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,mWACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+HACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+HACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8IACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8IACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconVoiceMemo","props","React","CentralIconBase","IconVoiceMemo_default"]}
package/README.md CHANGED
@@ -992,6 +992,7 @@ Below is a complete list of available icons:
992
992
  - IconAppearanceDarkMode
993
993
  - IconAppearanceLightMode
994
994
  - IconArchive1
995
+ - IconArchiveJunk
995
996
  - IconArrowBoxLeft
996
997
  - IconArrowBoxRight
997
998
  - IconArrowInbox
@@ -1350,6 +1351,7 @@ Below is a complete list of available icons:
1350
1351
  ### Photography & Video
1351
1352
 
1352
1353
  - Icon4k
1354
+ - IconAddImage
1353
1355
  - IconAdjustPhoto
1354
1356
  - IconAlt
1355
1357
  - IconAspectRatio11
@@ -1706,6 +1708,7 @@ Below is a complete list of available icons:
1706
1708
  - IconRewind15s
1707
1709
  - IconRewind30s
1708
1710
  - IconRewind5s
1711
+ - IconScanVoice
1709
1712
  - IconShuffle
1710
1713
  - IconSkip
1711
1714
  - IconSoundFx
@@ -1716,6 +1719,7 @@ Below is a complete list of available icons:
1716
1719
  - IconVoice3
1717
1720
  - IconVoiceHigh
1718
1721
  - IconVoiceLow
1722
+ - IconVoiceMemo
1719
1723
  - IconVoiceMid
1720
1724
  - IconVoiceMode
1721
1725
  - IconVoiceRecord
@@ -84,6 +84,20 @@
84
84
  "packageName": "round-filled-radius-2-stroke-1",
85
85
  "componentName": "Icon4k"
86
86
  },
87
+ {
88
+ "category": "Photography & Video",
89
+ "svg": "<path d=\"M18.5 15C18.7761 15 19 15.2239 19 15.5V18H21.5C21.7761 18 22 18.2239 22 18.5C22 18.7761 21.7761 19 21.5 19H19V21.5C19 21.7761 18.7761 22 18.5 22C18.2239 22 18 21.7761 18 21.5V19H15.5C15.2239 19 15 18.7761 15 18.5C15 18.2239 15.2239 18 15.5 18H18V15.5C18 15.2239 18.2239 15 18.5 15Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.5 3C19.8807 3 21 4.11929 21 5.5V14.1699C20.2645 13.7443 19.4109 13.5 18.5 13.5C16.0512 13.5 14.0149 15.2607 13.585 17.585L9.06055 13.0605C8.47479 12.4749 7.52521 12.4749 6.93945 13.0605L4 16V18.5C4 19.3284 4.67157 20 5.5 20H13.7285C13.8391 20.352 13.9894 20.6863 14.1709 21H5.5C4.11929 21 3 19.8807 3 18.5V5.5C3 4.11929 4.11929 3 5.5 3H18.5ZM15 7C13.8954 7 13 7.89543 13 9C13 10.1046 13.8954 11 15 11C16.1046 11 17 10.1046 17 9C17 7.89543 16.1046 7 15 7Z\" fill=\"currentColor\"/>",
90
+ "iconName": "add-image, upload-image",
91
+ "variant": {
92
+ "join": "round",
93
+ "filled": "on",
94
+ "radius": "2",
95
+ "stroke": "1"
96
+ },
97
+ "createdAt": "2026-03-04T09:00:36.81334+00:00",
98
+ "packageName": "round-filled-radius-2-stroke-1",
99
+ "componentName": "IconAddImage"
100
+ },
87
101
  {
88
102
  "category": "Edit",
89
103
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.2319 2.56035C11.2082 1.58405 12.7912 1.58405 13.7675 2.56035L21.439 10.2319C22.4153 11.2082 22.4153 12.7911 21.439 13.7674L13.7675 21.439C12.7912 22.4153 11.2082 22.4153 10.2319 21.439L2.56035 13.7674C1.58405 12.7911 1.58405 11.2082 2.56036 10.2319L10.2319 2.56035ZM12.4998 8.99976C12.4998 8.72361 12.2759 8.49976 11.9998 8.49976C11.7236 8.49976 11.4998 8.72361 11.4998 8.99976V11.4998H8.99976C8.72361 11.4998 8.49976 11.7236 8.49976 11.9998C8.49976 12.2759 8.72361 12.4998 8.99976 12.4998H11.4998V14.9998C11.4998 15.2759 11.7236 15.4998 11.9998 15.4998C12.2759 15.4998 12.4998 15.2759 12.4998 14.9998V12.4998H14.9998C15.2759 12.4998 15.4998 12.2759 15.4998 11.9998C15.4998 11.7236 15.2759 11.4998 14.9998 11.4998H12.4998V8.99976Z\" fill=\"currentColor\"/>",
@@ -996,7 +1010,7 @@
996
1010
  },
997
1011
  {
998
1012
  "category": "Interface General",
999
- "svg": "<path d=\"M2.5 3C2.22386 3 2 3.22386 2 3.5V6.5C2 6.77614 2.22386 7 2.5 7H21.5C21.7761 7 22 6.77614 22 6.5V3.5C22 3.22386 21.7761 3 21.5 3H2.5Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.75 8H3.25L3.25 17.0714C3.25 17.6133 3.24999 18.0504 3.27891 18.4043C3.30868 18.7687 3.37159 19.0888 3.52248 19.385C3.76217 19.8554 4.14462 20.2378 4.61502 20.4775C4.91117 20.6284 5.23126 20.6913 5.59569 20.7211C5.94956 20.75 6.38653 20.75 6.92827 20.75H17.0714C17.6132 20.75 18.0504 20.75 18.4043 20.7211C18.7687 20.6913 19.0888 20.6284 19.385 20.4775C19.8554 20.2378 20.2378 19.8554 20.4775 19.385C20.6284 19.0888 20.6913 18.7687 20.7211 18.4043C20.75 18.0504 20.75 17.6133 20.75 17.0714V8ZM9.5 11.5C9.5 11.2239 9.72386 11 10 11H14C14.2761 11 14.5 11.2239 14.5 11.5C14.5 11.7761 14.2761 12 14 12H10C9.72386 12 9.5 11.7761 9.5 11.5Z\" fill=\"currentColor\"/>",
1013
+ "svg": "<path d=\"M2.5 3C2.22386 3 2 3.22386 2 3.5V6.5C2 6.77614 2.22386 7 2.5 7H21.5C21.7761 7 22 6.77614 22 6.5V3.5C22 3.22386 21.7761 3 21.5 3H2.5Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 8H3V16.9291C3 18.3292 3 19.0293 3.27248 19.564C3.51217 20.0344 3.89462 20.4169 4.36502 20.6566C4.8998 20.9291 5.59987 20.9291 7 20.9291H17C18.4001 20.9291 19.1002 20.9291 19.635 20.6566C20.1054 20.4169 20.4878 20.0344 20.7275 19.564C21 19.0293 21 18.3292 21 16.9291V8ZM9.5 11.5C9.5 11.2239 9.72386 11 10 11H14C14.2761 11 14.5 11.2239 14.5 11.5C14.5 11.7761 14.2761 12 14 12H10C9.72386 12 9.5 11.7761 9.5 11.5Z\" fill=\"currentColor\"/>",
1000
1014
  "iconName": "archive-1, inbox, file",
1001
1015
  "variant": {
1002
1016
  "join": "round",
@@ -1008,6 +1022,20 @@
1008
1022
  "packageName": "round-filled-radius-2-stroke-1",
1009
1023
  "componentName": "IconArchive1"
1010
1024
  },
1025
+ {
1026
+ "category": "Interface General",
1027
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 17C21 18.4 20.9999 19.1 20.7275 19.6348C20.4879 20.1052 20.1052 20.4879 19.6348 20.7275C19.1 20.9999 18.4 21 17 21H7C5.60002 21 4.89999 20.9999 4.36523 20.7275C3.89483 20.4879 3.51214 20.1052 3.27246 19.6348C3.00007 19.1 3 18.4 3 17V8H21V17ZM14.8535 11.6465C14.6583 11.4512 14.3417 11.4512 14.1465 11.6465L12 13.793L9.85352 11.6465C9.65825 11.4512 9.34175 11.4512 9.14648 11.6465C8.95122 11.8417 8.95122 12.1583 9.14648 12.3535L11.293 14.5L9.14648 16.6465C8.95122 16.8417 8.95122 17.1583 9.14648 17.3535C9.34175 17.5488 9.65825 17.5488 9.85352 17.3535L12 15.207L14.1465 17.3535C14.3417 17.5488 14.6583 17.5488 14.8535 17.3535C15.0488 17.1583 15.0488 16.8417 14.8535 16.6465L12.707 14.5L14.8535 12.3535C15.0488 12.1583 15.0488 11.8417 14.8535 11.6465Z\" fill=\"currentColor\"/><path d=\"M21.2002 3C21.4799 3 21.6197 3.00034 21.7266 3.05469C21.8206 3.10262 21.8974 3.17936 21.9453 3.27344C21.9997 3.38033 22 3.52014 22 3.7998V6.2002C22 6.47986 21.9997 6.61967 21.9453 6.72656C21.8974 6.82064 21.8206 6.89738 21.7266 6.94531C21.6197 6.99966 21.4799 7 21.2002 7H2.7998C2.52014 7 2.38033 6.99966 2.27344 6.94531C2.17936 6.89738 2.10262 6.82064 2.05469 6.72656C2.00034 6.61967 2 6.47986 2 6.2002V3.7998C2 3.52014 2.00034 3.38033 2.05469 3.27344C2.10262 3.17936 2.17936 3.10262 2.27344 3.05469C2.38033 3.00034 2.52014 3 2.7998 3H21.2002Z\" fill=\"currentColor\"/>",
1028
+ "iconName": "archive-junk",
1029
+ "variant": {
1030
+ "join": "round",
1031
+ "filled": "on",
1032
+ "radius": "2",
1033
+ "stroke": "1"
1034
+ },
1035
+ "createdAt": "2026-03-02T09:01:01.031321+00:00",
1036
+ "packageName": "round-filled-radius-2-stroke-1",
1037
+ "componentName": "IconArchiveJunk"
1038
+ },
1011
1039
  {
1012
1040
  "category": "Augmented Reality",
1013
1041
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.2372 3.16227C12.0896 3.07925 11.9094 3.07925 11.7618 3.16227L10.1052 4.09412C9.85723 4.23361 9.54313 4.14566 9.40365 3.89769C9.26416 3.64971 9.35211 3.33562 9.60008 3.19613L11.2567 2.26428C11.7179 2.00484 12.2811 2.00484 12.7423 2.26428L14.399 3.19613C14.6469 3.33562 14.7349 3.64971 14.5954 3.89768C14.4559 4.14566 14.1418 4.2336 13.8938 4.09412L12.2372 3.16227ZM17.7386 5.66574C17.8781 5.41777 18.1922 5.32982 18.4402 5.4693L20.2423 6.48303C20.7194 6.7514 21.0147 7.25622 21.0147 7.8036V9.68182C21.0147 9.96633 20.784 10.197 20.4995 10.197C20.215 10.197 19.9844 9.96633 19.9844 9.68182V7.8036C19.9844 7.62844 19.8899 7.4669 19.7372 7.38102L17.935 6.36729C17.6871 6.22781 17.5991 5.91371 17.7386 5.66574ZM6.26044 5.66574C6.39993 5.91371 6.31198 6.22781 6.06401 6.36729L4.26182 7.38102C4.10916 7.4669 4.01468 7.62844 4.01468 7.8036L4.01468 9.68182C4.01468 9.96633 3.78404 10.197 3.49953 10.197C3.21502 10.197 2.98438 9.96633 2.98438 9.68182L2.98438 7.8036C2.98438 7.25622 3.27962 6.7514 3.75671 6.48304L5.55889 5.46931C5.80686 5.32982 6.12096 5.41777 6.26044 5.66574ZM20.4995 13.803C20.784 13.803 21.0147 14.0337 21.0147 14.3182V16.1964C21.0147 16.7438 20.7194 17.2486 20.2423 17.517L18.4402 18.5307C18.1922 18.6702 17.8781 18.5822 17.7386 18.3343C17.5991 18.0863 17.6871 17.7722 17.935 17.6327L19.7372 16.619C19.8899 16.5331 19.9844 16.3716 19.9844 16.1964V14.3182C19.9844 14.0337 20.215 13.803 20.4995 13.803ZM3.49953 13.803C3.78404 13.803 4.01468 14.0337 4.01468 14.3182L4.01468 16.1964C4.01468 16.3716 4.10916 16.5331 4.26182 16.619L6.064 17.6327C6.31197 17.7722 6.39992 18.0863 6.26043 18.3343C6.12095 18.5822 5.80685 18.6702 5.55888 18.5307L3.75671 17.517C3.27962 17.2486 2.98437 16.7438 2.98438 16.1964L2.98438 14.3182C2.98438 14.0337 3.21502 13.803 3.49953 13.803ZM9.40364 20.1023C9.54313 19.8543 9.85722 19.7664 10.1052 19.9059L11.7618 20.8377C11.9094 20.9208 12.0896 20.9208 12.2372 20.8377L13.8939 19.9059C14.1418 19.7664 14.4559 19.8544 14.5954 20.1023C14.7349 20.3503 14.6469 20.6644 14.399 20.8039L12.7423 21.7357C12.2811 21.9952 11.7179 21.9952 11.2567 21.7357L9.60008 20.8039C9.3521 20.6644 9.26416 20.3503 9.40364 20.1023Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.9995 2.42235C12.284 2.42235 12.5147 2.653 12.5147 2.93751V6.50001C12.5147 6.78452 12.284 7.01516 11.9995 7.01516C11.715 7.01516 11.4844 6.78452 11.4844 6.50001V2.93751C11.4844 2.653 11.715 2.42235 11.9995 2.42235ZM3.55339 7.24986C3.69565 7.00346 4.01071 6.91904 4.2571 7.0613L7.2212 8.77262C7.4676 8.91488 7.55202 9.22994 7.40976 9.47633C7.26751 9.72273 6.95245 9.80715 6.70605 9.66489L3.74195 7.95357C3.49556 7.81131 3.41114 7.49625 3.55339 7.24986ZM20.4457 7.24986C20.5879 7.49625 20.5035 7.81131 20.2571 7.95357L17.293 9.66489C17.0466 9.80715 16.7315 9.72272 16.5893 9.47633C16.447 9.22994 16.5315 8.91488 16.7778 8.77262L19.7419 7.0613C19.9883 6.91904 20.3034 7.00346 20.4457 7.24986ZM7.40976 14.5237C7.55202 14.7701 7.4676 15.0851 7.2212 15.2274L4.2571 16.9387C4.01071 17.081 3.69565 16.9966 3.55339 16.7502C3.41114 16.5038 3.49556 16.1887 3.74195 16.0464L6.70605 14.3351C6.95245 14.1929 7.26751 14.2773 7.40976 14.5237ZM16.5893 14.5237C16.7315 14.2773 17.0466 14.1929 17.293 14.3351L20.2571 16.0464C20.5035 16.1887 20.5879 16.5038 20.4457 16.7502C20.3034 16.9966 19.9883 17.081 19.7419 16.9387L16.7778 15.2274C16.5315 15.0851 16.447 14.7701 16.5893 14.5237ZM11.9995 16.9849C12.284 16.9849 12.5147 17.2155 12.5147 17.5V21.0625C12.5147 21.347 12.284 21.5777 11.9995 21.5777C11.715 21.5777 11.4844 21.347 11.4844 21.0625V17.5C11.4844 17.2155 11.715 16.9849 11.9995 16.9849Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.5976 10.5C14.7356 10.7391 14.6537 11.0449 14.4145 11.183L12.4995 12.2887V14.5C12.4995 14.7761 12.2756 15 11.9995 15C11.7234 15 11.4995 14.7761 11.4995 14.5V12.2887L9.58443 11.1831C9.34528 11.045 9.26334 10.7392 9.40141 10.5001C9.53948 10.2609 9.84527 10.179 10.0844 10.317L11.9995 11.4227L13.9145 10.317C14.1537 10.1789 14.4595 10.2608 14.5976 10.5Z\" fill=\"currentColor\"/>",
@@ -19768,6 +19796,20 @@
19768
19796
  "packageName": "round-filled-radius-2-stroke-1",
19769
19797
  "componentName": "IconScanTextSparkle"
19770
19798
  },
19799
+ {
19800
+ "category": "Sound & Music",
19801
+ "svg": "<path d=\"M3.5 15C3.77614 15 4 15.2239 4 15.5V18.5C4 19.3284 4.67157 20 5.5 20H8.5C8.77614 20 9 20.2239 9 20.5C9 20.7761 8.77614 21 8.5 21H5.5C4.11929 21 3 19.8807 3 18.5V15.5C3 15.2239 3.22386 15 3.5 15Z\" fill=\"currentColor\"/><path d=\"M20.5 15C20.7761 15 21 15.2239 21 15.5V18.5C21 19.8807 19.8807 21 18.5 21H15.5C15.2239 21 15 20.7761 15 20.5C15 20.2239 15.2239 20 15.5 20H18.5C19.3284 20 20 19.3284 20 18.5V15.5C20 15.2239 20.2239 15 20.5 15Z\" fill=\"currentColor\"/><path d=\"M10.5 7C10.7761 7 11 7.22386 11 7.5V16.5C11 16.7761 10.7761 17 10.5 17C10.2239 17 10 16.7761 10 16.5V7.5C10 7.22386 10.2239 7 10.5 7Z\" fill=\"currentColor\"/><path d=\"M16.5 9C16.7761 9 17 9.22386 17 9.5V14.5C17 14.7761 16.7761 15 16.5 15C16.2239 15 16 14.7761 16 14.5V9.5C16 9.22386 16.2239 9 16.5 9Z\" fill=\"currentColor\"/><path d=\"M7.5 10C7.77614 10 8 10.2239 8 10.5V13.5C8 13.7761 7.77614 14 7.5 14C7.22386 14 7 13.7761 7 13.5V10.5C7 10.2239 7.22386 10 7.5 10Z\" fill=\"currentColor\"/><path d=\"M13.5 10.5C13.7761 10.5 14 10.7239 14 11V13C14 13.2761 13.7761 13.5 13.5 13.5C13.2239 13.5 13 13.2761 13 13V11C13 10.7239 13.2239 10.5 13.5 10.5Z\" fill=\"currentColor\"/><path d=\"M8.5 3C8.77614 3 9 3.22386 9 3.5C9 3.77614 8.77614 4 8.5 4H5.5C4.67157 4 4 4.67157 4 5.5V8.5C4 8.77614 3.77614 9 3.5 9C3.22386 9 3 8.77614 3 8.5V5.5C3 4.11929 4.11929 3 5.5 3H8.5Z\" fill=\"currentColor\"/><path d=\"M18.5 3C19.8807 3 21 4.11929 21 5.5V8.5C21 8.77614 20.7761 9 20.5 9C20.2239 9 20 8.77614 20 8.5V5.5C20 4.67157 19.3284 4 18.5 4H15.5C15.2239 4 15 3.77614 15 3.5C15 3.22386 15.2239 3 15.5 3H18.5Z\" fill=\"currentColor\"/>",
19802
+ "iconName": "scan-voice",
19803
+ "variant": {
19804
+ "join": "round",
19805
+ "filled": "on",
19806
+ "radius": "2",
19807
+ "stroke": "1"
19808
+ },
19809
+ "createdAt": "2026-03-04T09:00:36.81334+00:00",
19810
+ "packageName": "round-filled-radius-2-stroke-1",
19811
+ "componentName": "IconScanVoice"
19812
+ },
19771
19813
  {
19772
19814
  "category": "Building",
19773
19815
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.5 4C7.11929 4 6 5.11929 6 6.5V19H5V8H4.5C3.11929 8 2 9.11929 2 10.5V19H1.5C1.22386 19 1 19.2239 1 19.5C1 19.7761 1.22386 20 1.5 20H22.5C22.7761 20 23 19.7761 23 19.5C23 19.2239 22.7761 19 22.5 19H22V10.5C22 9.11929 20.8807 8 19.5 8H19V19H18V6.5C18 5.11929 16.8807 4 15.5 4H8.5ZM14 16.5V19H10V16.5C10 15.6716 10.6716 15 11.5 15H12.5C13.3284 15 14 15.6716 14 16.5Z\" fill=\"currentColor\"/>",
@@ -24808,6 +24850,20 @@
24808
24850
  "packageName": "round-filled-radius-2-stroke-1",
24809
24851
  "componentName": "IconVoiceLow"
24810
24852
  },
24853
+ {
24854
+ "category": "Sound & Music",
24855
+ "svg": "<path d=\"M16.499 2.5C17.8797 2.5 18.999 3.61929 18.999 5C18.999 6.20943 18.1401 7.21753 16.999 7.44922V16.5498C18.1402 16.7814 18.999 17.7905 18.999 19C18.999 20.3807 17.8797 21.5 16.499 21.5C15.1183 21.5 13.999 20.3807 13.999 19C13.999 17.7905 14.8579 16.7814 15.999 16.5498V7.44922C14.858 7.21753 13.999 6.20943 13.999 5C13.999 3.61929 15.1183 2.5 16.499 2.5Z\" fill=\"currentColor\"/><path d=\"M7.5 3C7.77614 3 8 3.22386 8 3.5V20.5C8 20.7761 7.77614 21 7.5 21C7.22386 21 7 20.7761 7 20.5V3.5C7 3.22386 7.22386 3 7.5 3Z\" fill=\"currentColor\"/><path d=\"M3.5 9C3.77614 9 4 9.22386 4 9.5V14.5C4 14.7761 3.77614 15 3.5 15C3.22386 15 3 14.7761 3 14.5V9.5C3 9.22386 3.22386 9 3.5 9Z\" fill=\"currentColor\"/><path d=\"M12 9C12.2761 9 12.5 9.22386 12.5 9.5V14.5C12.5 14.7761 12.2761 15 12 15C11.7239 15 11.5 14.7761 11.5 14.5V9.5C11.5 9.22386 11.7239 9 12 9Z\" fill=\"currentColor\"/><path d=\"M20.5 10C20.7761 10 21 10.2239 21 10.5V13.5C21 13.7761 20.7761 14 20.5 14C20.2239 14 20 13.7761 20 13.5V10.5C20 10.2239 20.2239 10 20.5 10Z\" fill=\"currentColor\"/>",
24856
+ "iconName": "voice-memo, voice-control",
24857
+ "variant": {
24858
+ "join": "round",
24859
+ "filled": "on",
24860
+ "radius": "2",
24861
+ "stroke": "1"
24862
+ },
24863
+ "createdAt": "2026-03-04T09:00:36.81334+00:00",
24864
+ "packageName": "round-filled-radius-2-stroke-1",
24865
+ "componentName": "IconVoiceMemo"
24866
+ },
24811
24867
  {
24812
24868
  "category": "Sound & Music",
24813
24869
  "svg": "<path d=\"M7.5 5C7.77614 5 8 5.22386 8 5.5V18.5C8 18.7761 7.77614 19 7.5 19C7.22386 19 7 18.7761 7 18.5V5.5C7 5.22386 7.22386 5 7.5 5Z\" fill=\"currentColor\"/><path d=\"M16.5 7C16.7761 7 17 7.22386 17 7.5V16.5C17 16.7761 16.7761 17 16.5 17C16.2239 17 16 16.7761 16 16.5V7.5C16 7.22386 16.2239 7 16.5 7Z\" fill=\"currentColor\"/><path d=\"M12 9C12.2761 9 12.5 9.22386 12.5 9.5V14.5C12.5 14.7761 12.2761 15 12 15C11.7239 15 11.5 14.7761 11.5 14.5V9.5C11.5 9.22386 11.7239 9 12 9Z\" fill=\"currentColor\"/><path d=\"M3.5 10C3.77614 10 4 10.2239 4 10.5V13.5C4 13.7761 3.77614 14 3.5 14C3.22386 14 3 13.7761 3 13.5V10.5C3 10.2239 3.22386 10 3.5 10Z\" fill=\"currentColor\"/><path d=\"M20.5 10C20.7761 10 21 10.2239 21 10.5V13.5C21 13.7761 20.7761 14 20.5 14C20.2239 14 20 13.7761 20 13.5V10.5C20 10.2239 20.2239 10 20.5 10Z\" fill=\"currentColor\"/>",
package/icons/index.d.ts CHANGED
@@ -5,6 +5,7 @@ export type CentralIconName =
5
5
  | "Icon3dPackage"
6
6
  | "Icon3dSphere"
7
7
  | "Icon4k"
8
+ | "IconAddImage"
8
9
  | "IconAddKeyframe"
9
10
  | "IconAddToBasket"
10
11
  | "IconAddToBasket2"
@@ -71,6 +72,7 @@ export type CentralIconName =
71
72
  | "IconArc"
72
73
  | "IconArchive"
73
74
  | "IconArchive1"
75
+ | "IconArchiveJunk"
74
76
  | "IconArCube3"
75
77
  | "IconArena"
76
78
  | "IconArmchair"
@@ -1411,6 +1413,7 @@ export type CentralIconName =
1411
1413
  | "IconSatellite2"
1412
1414
  | "IconScanCode"
1413
1415
  | "IconScanTextSparkle"
1416
+ | "IconScanVoice"
1414
1417
  | "IconSchool"
1415
1418
  | "IconScissors1"
1416
1419
  | "IconScissors2"
@@ -1771,6 +1774,7 @@ export type CentralIconName =
1771
1774
  | "IconVoiceCircle"
1772
1775
  | "IconVoiceHigh"
1773
1776
  | "IconVoiceLow"
1777
+ | "IconVoiceMemo"
1774
1778
  | "IconVoiceMid"
1775
1779
  | "IconVoiceMode"
1776
1780
  | "IconVoiceRecord"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/round-filled-radius-2-stroke-1",
3
- "version": "1.1.150",
3
+ "version": "1.1.152",
4
4
  "style": "round-filled-radius-2-stroke-1",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-2-stroke-1/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": 1834,
14
+ "totalIcons": 1838,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
17
  "count": 70,
@@ -893,13 +893,14 @@
893
893
  ]
894
894
  },
895
895
  "Interface General": {
896
- "count": 189,
896
+ "count": 190,
897
897
  "icons": [
898
898
  "IconAnchor1",
899
899
  "IconAnchor2",
900
900
  "IconAppearanceDarkMode",
901
901
  "IconAppearanceLightMode",
902
902
  "IconArchive1",
903
+ "IconArchiveJunk",
903
904
  "IconArrowBoxLeft",
904
905
  "IconArrowBoxRight",
905
906
  "IconArrowInbox",
@@ -1267,9 +1268,10 @@
1267
1268
  ]
1268
1269
  },
1269
1270
  "Photography & Video": {
1270
- "count": 83,
1271
+ "count": 84,
1271
1272
  "icons": [
1272
1273
  "Icon4k",
1274
+ "IconAddImage",
1273
1275
  "IconAdjustPhoto",
1274
1276
  "IconAlt",
1275
1277
  "IconAspectRatio11",
@@ -1598,7 +1600,7 @@
1598
1600
  ]
1599
1601
  },
1600
1602
  "Sound & Music": {
1601
- "count": 54,
1603
+ "count": 56,
1602
1604
  "icons": [
1603
1605
  "IconAirpodLeft",
1604
1606
  "IconAirpodRight",
@@ -1634,6 +1636,7 @@
1634
1636
  "IconRewind15s",
1635
1637
  "IconRewind30s",
1636
1638
  "IconRewind5s",
1639
+ "IconScanVoice",
1637
1640
  "IconShuffle",
1638
1641
  "IconSkip",
1639
1642
  "IconSoundFx",
@@ -1644,6 +1647,7 @@
1644
1647
  "IconVoice3",
1645
1648
  "IconVoiceHigh",
1646
1649
  "IconVoiceLow",
1650
+ "IconVoiceMemo",
1647
1651
  "IconVoiceMid",
1648
1652
  "IconVoiceMode",
1649
1653
  "IconVoiceRecord",
@@ -2042,6 +2046,7 @@
2042
2046
  "Icon3dPackage": "3d-package, box",
2043
2047
  "Icon3dSphere": "3d-sphere",
2044
2048
  "Icon4k": "4k",
2049
+ "IconAddImage": "add-image, upload-image",
2045
2050
  "IconAddKeyframe": "add-keyframe, rhombus",
2046
2051
  "IconAddToBasket": "add-to-basket",
2047
2052
  "IconAddToBasket2": "add-to-basket-2",
@@ -2108,6 +2113,7 @@
2108
2113
  "IconArc": "arc",
2109
2114
  "IconArchive": "archive, folder, box",
2110
2115
  "IconArchive1": "archive-1, inbox, file",
2116
+ "IconArchiveJunk": "archive-junk",
2111
2117
  "IconArCube3": "ar-cube-3",
2112
2118
  "IconArena": "arena",
2113
2119
  "IconArmchair": "armchair, seat, chill",
@@ -3448,6 +3454,7 @@
3448
3454
  "IconSatellite2": "satellite-2, radar, feed",
3449
3455
  "IconScanCode": "scan-code, barcode",
3450
3456
  "IconScanTextSparkle": "scan-text-sparkle, scan, arrows-all-sides, focus, list",
3457
+ "IconScanVoice": "scan-voice",
3451
3458
  "IconSchool": "school, building",
3452
3459
  "IconScissors1": "scissors-1, cut",
3453
3460
  "IconScissors2": "scissors-2, cut",
@@ -3808,6 +3815,7 @@
3808
3815
  "IconVoiceCircle": "voice-circle, waves",
3809
3816
  "IconVoiceHigh": "voice-high, wave",
3810
3817
  "IconVoiceLow": "voice-low, wave",
3818
+ "IconVoiceMemo": "voice-memo, voice-control",
3811
3819
  "IconVoiceMid": "voice-mid, wave",
3812
3820
  "IconVoiceMode": "voice-mode, voice-settings",
3813
3821
  "IconVoiceRecord": "voice-record",
package/index.d.ts CHANGED
@@ -4,6 +4,7 @@ export { Icon3dBoxTop, default as Icon3dBoxTopDefault } from "./Icon3dBoxTop";
4
4
  export { Icon3dPackage, default as Icon3dPackageDefault, } from "./Icon3dPackage";
5
5
  export { Icon3dSphere, default as Icon3dSphereDefault } from "./Icon3dSphere";
6
6
  export { Icon4k, default as Icon4kDefault } from "./Icon4k";
7
+ export { IconAddImage, default as IconAddImageDefault } from "./IconAddImage";
7
8
  export { IconAddKeyframe, default as IconAddKeyframeDefault, } from "./IconAddKeyframe";
8
9
  export { IconAddToBasket, default as IconAddToBasketDefault, } from "./IconAddToBasket";
9
10
  export { IconAddToBasket2, default as IconAddToBasket2Default, } from "./IconAddToBasket2";
@@ -73,6 +74,7 @@ export { IconArScanCube2, default as IconArScanCube2Default, } from "./IconArSca
73
74
  export { IconArc, default as IconArcDefault } from "./IconArc";
74
75
  export { IconArchive, default as IconArchiveDefault } from "./IconArchive";
75
76
  export { IconArchive1, default as IconArchive1Default } from "./IconArchive1";
77
+ export { IconArchiveJunk, default as IconArchiveJunkDefault, } from "./IconArchiveJunk";
76
78
  export { IconArena, default as IconArenaDefault } from "./IconArena";
77
79
  export { IconArmchair, default as IconArmchairDefault } from "./IconArmchair";
78
80
  export { IconAround, default as IconAroundDefault } from "./IconAround";
@@ -1410,6 +1412,7 @@ export { IconSatellite1, default as IconSatellite1Default, } from "./IconSatelli
1410
1412
  export { IconSatellite2, default as IconSatellite2Default, } from "./IconSatellite2";
1411
1413
  export { IconScanCode, default as IconScanCodeDefault } from "./IconScanCode";
1412
1414
  export { IconScanTextSparkle, default as IconScanTextSparkleDefault, } from "./IconScanTextSparkle";
1415
+ export { IconScanVoice, default as IconScanVoiceDefault, } from "./IconScanVoice";
1413
1416
  export { IconSchool, default as IconSchoolDefault } from "./IconSchool";
1414
1417
  export { IconScissors1, default as IconScissors1Default, } from "./IconScissors1";
1415
1418
  export { IconScissors2, default as IconScissors2Default, } from "./IconScissors2";
@@ -1770,6 +1773,7 @@ export { IconVoiceAndVideo, default as IconVoiceAndVideoDefault, } from "./IconV
1770
1773
  export { IconVoiceCircle, default as IconVoiceCircleDefault, } from "./IconVoiceCircle";
1771
1774
  export { IconVoiceHigh, default as IconVoiceHighDefault, } from "./IconVoiceHigh";
1772
1775
  export { IconVoiceLow, default as IconVoiceLowDefault } from "./IconVoiceLow";
1776
+ export { IconVoiceMemo, default as IconVoiceMemoDefault, } from "./IconVoiceMemo";
1773
1777
  export { IconVoiceMid, default as IconVoiceMidDefault } from "./IconVoiceMid";
1774
1778
  export { IconVoiceMode, default as IconVoiceModeDefault, } from "./IconVoiceMode";
1775
1779
  export { IconVoiceRecord, default as IconVoiceRecordDefault, } from "./IconVoiceRecord";