@central-icons-react-native/round-filled-radius-0-stroke-2 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 14C18.5523 14 19 14.4477 19 15V17H21C21.5523 17 22 17.4477 22 18C22 18.5523 21.5523 19 21 19H19V21C19 21.5523 18.5523 22 18 22C17.4477 22 17 21.5523 17 21V19H15C14.4477 19 14 18.5523 14 18C14 17.4477 14.4477 17 15 17H17V15C17 14.4477 17.4477 14 18 14Z",fill:"currentColor"}),t.default.createElement(p.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M20 3C20.5523 3 21 3.44772 21 4V12.498C20.2304 12.1771 19.3859 12 18.5 12C15.6596 12 13.2458 13.8223 12.3613 16.3613L8.70703 12.707C8.31653 12.3166 7.68347 12.3166 7.29297 12.707L5 15V19H12.0215C12.0751 19.704 12.239 20.3765 12.499 21H4C3.44772 21 3 20.5523 3 20V4C3 3.44772 3.44772 3 4 3H20ZM15 6.5C13.6193 6.5 12.5 7.61929 12.5 9C12.5 10.3807 13.6193 11.5 15 11.5C16.3807 11.5 17.5 10.3807 17.5 9C17.5 7.61929 16.3807 6.5 15 6.5Z",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 14C18.5523 14 19 14.4477 19 15V17H21C21.5523 17 22 17.4477 22 18C22 18.5523 21.5523 19 21 19H19V21C19 21.5523 18.5523 22 18 22C17.4477 22 17 21.5523 17 21V19H15C14.4477 19 14 18.5523 14 18C14 17.4477 14.4477 17 15 17H17V15C17 14.4477 17.4477 14 18 14Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M20 3C20.5523 3 21 3.44772 21 4V12.498C20.2304 12.1771 19.3859 12 18.5 12C15.6596 12 13.2458 13.8223 12.3613 16.3613L8.70703 12.707C8.31653 12.3166 7.68347 12.3166 7.29297 12.707L5 15V19H12.0215C12.0751 19.704 12.239 20.3765 12.499 21H4C3.44772 21 3 20.5523 3 20V4C3 3.44772 3.44772 3 4 3H20ZM15 6.5C13.6193 6.5 12.5 7.61929 12.5 9C12.5 10.3807 13.6193 11.5 15 11.5C16.3807 11.5 17.5 10.3807 17.5 9C17.5 7.61929 16.3807 6.5 15 6.5Z\"\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,kQACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,kbACF,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 14C18.5523 14 19 14.4477 19 15V17H21C21.5523 17 22 17.4477 22 18C22 18.5523 21.5523 19 21 19H19V21C19 21.5523 18.5523 22 18 22C17.4477 22 17 21.5523 17 21V19H15C14.4477 19 14 18.5523 14 18C14 17.4477 14.4477 17 15 17H17V15C17 14.4477 17.4477 14 18 14Z",fill:"currentColor"}),e.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M20 3C20.5523 3 21 3.44772 21 4V12.498C20.2304 12.1771 19.3859 12 18.5 12C15.6596 12 13.2458 13.8223 12.3613 16.3613L8.70703 12.707C8.31653 12.3166 7.68347 12.3166 7.29297 12.707L5 15V19H12.0215C12.0751 19.704 12.239 20.3765 12.499 21H4C3.44772 21 3 20.5523 3 20V4C3 3.44772 3.44772 3 4 3H20ZM15 6.5C13.6193 6.5 12.5 7.61929 12.5 9C12.5 10.3807 13.6193 11.5 15 11.5C16.3807 11.5 17.5 10.3807 17.5 9C17.5 7.61929 16.3807 6.5 15 6.5Z",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 14C18.5523 14 19 14.4477 19 15V17H21C21.5523 17 22 17.4477 22 18C22 18.5523 21.5523 19 21 19H19V21C19 21.5523 18.5523 22 18 22C17.4477 22 17 21.5523 17 21V19H15C14.4477 19 14 18.5523 14 18C14 17.4477 14.4477 17 15 17H17V15C17 14.4477 17.4477 14 18 14Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M20 3C20.5523 3 21 3.44772 21 4V12.498C20.2304 12.1771 19.3859 12 18.5 12C15.6596 12 13.2458 13.8223 12.3613 16.3613L8.70703 12.707C8.31653 12.3166 7.68347 12.3166 7.29297 12.707L5 15V19H12.0215C12.0751 19.704 12.239 20.3765 12.499 21H4C3.44772 21 3 20.5523 3 20V4C3 3.44772 3.44772 3 4 3H20ZM15 6.5C13.6193 6.5 12.5 7.61929 12.5 9C12.5 10.3807 13.6193 11.5 15 11.5C16.3807 11.5 17.5 10.3807 17.5 9C17.5 7.61929 16.3807 6.5 15 6.5Z\"\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,kQACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,kbACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconAddImage","props","React","CentralIconBase","IconAddImage_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 t=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var v=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var L=(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)),x=r=>a(t({},"__esModule",{value:!0}),r);var g={};L(g,{IconArchiveJunk:()=>i,default:()=>P});module.exports=x(g);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,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20V9H21V20ZM14.6367 12.3633C14.2852 12.0118 13.7148 12.0118 13.3633 12.3633L12 13.7266L10.6367 12.3633C10.2852 12.0118 9.71475 12.0118 9.36328 12.3633C9.01181 12.7148 9.01181 13.2852 9.36328 13.6367L10.7266 15L9.36328 16.3633C9.01181 16.7148 9.01181 17.2852 9.36328 17.6367C9.71475 17.9882 10.2852 17.9882 10.6367 17.6367L12 16.2734L13.3633 17.6367C13.7148 17.9882 14.2852 17.9882 14.6367 17.6367C14.9882 17.2852 14.9882 16.7148 14.6367 16.3633L13.2734 15L14.6367 13.6367C14.9882 13.2852 14.9882 12.7148 14.6367 12.3633Z",fill:"currentColor"}),C.default.createElement(p.Path,{d:"M21 3C21.5523 3 22 3.44772 22 4V6C22 6.55228 21.5523 7 21 7H3C2.44772 7 2 6.55228 2 6V4C2 3.44772 2.44772 3 3 3H21Z",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 20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20V9H21V20ZM14.6367 12.3633C14.2852 12.0118 13.7148 12.0118 13.3633 12.3633L12 13.7266L10.6367 12.3633C10.2852 12.0118 9.71475 12.0118 9.36328 12.3633C9.01181 12.7148 9.01181 13.2852 9.36328 13.6367L10.7266 15L9.36328 16.3633C9.01181 16.7148 9.01181 17.2852 9.36328 17.6367C9.71475 17.9882 10.2852 17.9882 10.6367 17.6367L12 16.2734L13.3633 17.6367C13.7148 17.9882 14.2852 17.9882 14.6367 17.6367C14.9882 17.2852 14.9882 16.7148 14.6367 16.3633L13.2734 15L14.6367 13.6367C14.9882 13.2852 14.9882 12.7148 14.6367 12.3633Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21 3C21.5523 3 22 3.44772 22 4V6C22 6.55228 21.5523 7 21 7H3C2.44772 7 2 6.55228 2 6V4C2 3.44772 2.44772 3 3 3H21Z\"\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,ukBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sHACF,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 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,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20V9H21V20ZM14.6367 12.3633C14.2852 12.0118 13.7148 12.0118 13.3633 12.3633L12 13.7266L10.6367 12.3633C10.2852 12.0118 9.71475 12.0118 9.36328 12.3633C9.01181 12.7148 9.01181 13.2852 9.36328 13.6367L10.7266 15L9.36328 16.3633C9.01181 16.7148 9.01181 17.2852 9.36328 17.6367C9.71475 17.9882 10.2852 17.9882 10.6367 17.6367L12 16.2734L13.3633 17.6367C13.7148 17.9882 14.2852 17.9882 14.6367 17.6367C14.9882 17.2852 14.9882 16.7148 14.6367 16.3633L13.2734 15L14.6367 13.6367C14.9882 13.2852 14.9882 12.7148 14.6367 12.3633Z",fill:"currentColor"}),e.createElement(t,{d:"M21 3C21.5523 3 22 3.44772 22 4V6C22 6.55228 21.5523 7 21 7H3C2.44772 7 2 6.55228 2 6V4C2 3.44772 2.44772 3 3 3H21Z",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 20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20V9H21V20ZM14.6367 12.3633C14.2852 12.0118 13.7148 12.0118 13.3633 12.3633L12 13.7266L10.6367 12.3633C10.2852 12.0118 9.71475 12.0118 9.36328 12.3633C9.01181 12.7148 9.01181 13.2852 9.36328 13.6367L10.7266 15L9.36328 16.3633C9.01181 16.7148 9.01181 17.2852 9.36328 17.6367C9.71475 17.9882 10.2852 17.9882 10.6367 17.6367L12 16.2734L13.3633 17.6367C13.7148 17.9882 14.2852 17.9882 14.6367 17.6367C14.9882 17.2852 14.9882 16.7148 14.6367 16.3633L13.2734 15L14.6367 13.6367C14.9882 13.2852 14.9882 12.7148 14.6367 12.3633Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21 3C21.5523 3 22 3.44772 22 4V6C22 6.55228 21.5523 7 21 7H3C2.44772 7 2 6.55228 2 6V4C2 3.44772 2.44772 3 3 3H21Z\"\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,ukBACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sHACF,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:"M4 15C4.55228 15 5 15.4477 5 16V19H8C8.55228 19 9 19.4477 9 20C9 20.5523 8.55228 21 8 21H4C3.44772 21 3 20.5523 3 20V16C3 15.4477 3.44772 15 4 15Z",fill:"currentColor"}),l.default.createElement(n.Path,{d:"M20 15C20.5523 15 21 15.4477 21 16V20C21 20.5523 20.5523 21 20 21H16C15.4477 21 15 20.5523 15 20C15 19.4477 15.4477 19 16 19H19V16C19 15.4477 19.4477 15 20 15Z",fill:"currentColor"}),l.default.createElement(n.Path,{d:"M10.3301 7.09961C10.8271 7.09961 11.2305 7.50294 11.2305 8V16C11.2305 16.4971 10.8271 16.9004 10.3301 16.9004C9.83302 16.9004 9.42969 16.4971 9.42969 16V8C9.42969 7.50294 9.83302 7.09961 10.3301 7.09961Z",fill:"currentColor"}),l.default.createElement(n.Path,{d:"M17 8.59961C17.4971 8.59961 17.9004 9.00294 17.9004 9.5V14.5C17.9004 14.9971 17.4971 15.4004 17 15.4004C16.5029 15.4004 16.0996 14.9971 16.0996 14.5V9.5C16.0996 9.00294 16.5029 8.59961 17 8.59961Z",fill:"currentColor"}),l.default.createElement(n.Path,{d:"M7 10.0996C7.49706 10.0996 7.90039 10.5029 7.90039 11V13C7.90039 13.4971 7.49706 13.9004 7 13.9004C6.50294 13.9004 6.09961 13.4971 6.09961 13V11C6.09961 10.5029 6.50294 10.0996 7 10.0996Z",fill:"currentColor"}),l.default.createElement(n.Path,{d:"M13.6699 10.0996C14.167 10.0996 14.5703 10.5029 14.5703 11V13C14.5703 13.4971 14.167 13.9004 13.6699 13.9004C13.1729 13.9004 12.7695 13.4971 12.7695 13V11C12.7695 10.5029 13.1729 10.0996 13.6699 10.0996Z",fill:"currentColor"}),l.default.createElement(n.Path,{d:"M8 3C8.55228 3 9 3.44772 9 4C9 4.55228 8.55228 5 8 5H5V8C5 8.55228 4.55228 9 4 9C3.44772 9 3 8.55228 3 8V4C3 3.44772 3.44772 3 4 3H8Z",fill:"currentColor"}),l.default.createElement(n.Path,{d:"M20 3C20.5523 3 21 3.44772 21 4V8C21 8.55228 20.5523 9 20 9C19.4477 9 19 8.55228 19 8V5H16C15.4477 5 15 4.55228 15 4C15 3.44772 15.4477 3 16 3H20Z",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=\"M4 15C4.55228 15 5 15.4477 5 16V19H8C8.55228 19 9 19.4477 9 20C9 20.5523 8.55228 21 8 21H4C3.44772 21 3 20.5523 3 20V16C3 15.4477 3.44772 15 4 15Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20 15C20.5523 15 21 15.4477 21 16V20C21 20.5523 20.5523 21 20 21H16C15.4477 21 15 20.5523 15 20C15 19.4477 15.4477 19 16 19H19V16C19 15.4477 19.4477 15 20 15Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M10.3301 7.09961C10.8271 7.09961 11.2305 7.50294 11.2305 8V16C11.2305 16.4971 10.8271 16.9004 10.3301 16.9004C9.83302 16.9004 9.42969 16.4971 9.42969 16V8C9.42969 7.50294 9.83302 7.09961 10.3301 7.09961Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M17 8.59961C17.4971 8.59961 17.9004 9.00294 17.9004 9.5V14.5C17.9004 14.9971 17.4971 15.4004 17 15.4004C16.5029 15.4004 16.0996 14.9971 16.0996 14.5V9.5C16.0996 9.00294 16.5029 8.59961 17 8.59961Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7 10.0996C7.49706 10.0996 7.90039 10.5029 7.90039 11V13C7.90039 13.4971 7.49706 13.9004 7 13.9004C6.50294 13.9004 6.09961 13.4971 6.09961 13V11C6.09961 10.5029 6.50294 10.0996 7 10.0996Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.6699 10.0996C14.167 10.0996 14.5703 10.5029 14.5703 11V13C14.5703 13.4971 14.167 13.9004 13.6699 13.9004C13.1729 13.9004 12.7695 13.4971 12.7695 13V11C12.7695 10.5029 13.1729 10.0996 13.6699 10.0996Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8 3C8.55228 3 9 3.44772 9 4C9 4.55228 8.55228 5 8 5H5V8C5 8.55228 4.55228 9 4 9C3.44772 9 3 8.55228 3 8V4C3 3.44772 3.44772 3 4 3H8Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20 3C20.5523 3 21 3.44772 21 4V8C21 8.55228 20.5523 9 20 9C19.4477 9 19 8.55228 19 8V5H16C15.4477 5 15 4.55228 15 4C15 3.44772 15.4477 3 16 3H20Z\"\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,qJACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kKACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8MACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uMACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8LACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8MACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,wIACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qJACF,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:"M4 15C4.55228 15 5 15.4477 5 16V19H8C8.55228 19 9 19.4477 9 20C9 20.5523 8.55228 21 8 21H4C3.44772 21 3 20.5523 3 20V16C3 15.4477 3.44772 15 4 15Z",fill:"currentColor"}),r.createElement(C,{d:"M20 15C20.5523 15 21 15.4477 21 16V20C21 20.5523 20.5523 21 20 21H16C15.4477 21 15 20.5523 15 20C15 19.4477 15.4477 19 16 19H19V16C19 15.4477 19.4477 15 20 15Z",fill:"currentColor"}),r.createElement(C,{d:"M10.3301 7.09961C10.8271 7.09961 11.2305 7.50294 11.2305 8V16C11.2305 16.4971 10.8271 16.9004 10.3301 16.9004C9.83302 16.9004 9.42969 16.4971 9.42969 16V8C9.42969 7.50294 9.83302 7.09961 10.3301 7.09961Z",fill:"currentColor"}),r.createElement(C,{d:"M17 8.59961C17.4971 8.59961 17.9004 9.00294 17.9004 9.5V14.5C17.9004 14.9971 17.4971 15.4004 17 15.4004C16.5029 15.4004 16.0996 14.9971 16.0996 14.5V9.5C16.0996 9.00294 16.5029 8.59961 17 8.59961Z",fill:"currentColor"}),r.createElement(C,{d:"M7 10.0996C7.49706 10.0996 7.90039 10.5029 7.90039 11V13C7.90039 13.4971 7.49706 13.9004 7 13.9004C6.50294 13.9004 6.09961 13.4971 6.09961 13V11C6.09961 10.5029 6.50294 10.0996 7 10.0996Z",fill:"currentColor"}),r.createElement(C,{d:"M13.6699 10.0996C14.167 10.0996 14.5703 10.5029 14.5703 11V13C14.5703 13.4971 14.167 13.9004 13.6699 13.9004C13.1729 13.9004 12.7695 13.4971 12.7695 13V11C12.7695 10.5029 13.1729 10.0996 13.6699 10.0996Z",fill:"currentColor"}),r.createElement(C,{d:"M8 3C8.55228 3 9 3.44772 9 4C9 4.55228 8.55228 5 8 5H5V8C5 8.55228 4.55228 9 4 9C3.44772 9 3 8.55228 3 8V4C3 3.44772 3.44772 3 4 3H8Z",fill:"currentColor"}),r.createElement(C,{d:"M20 3C20.5523 3 21 3.44772 21 4V8C21 8.55228 20.5523 9 20 9C19.4477 9 19 8.55228 19 8V5H16C15.4477 5 15 4.55228 15 4C15 3.44772 15.4477 3 16 3H20Z",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=\"M4 15C4.55228 15 5 15.4477 5 16V19H8C8.55228 19 9 19.4477 9 20C9 20.5523 8.55228 21 8 21H4C3.44772 21 3 20.5523 3 20V16C3 15.4477 3.44772 15 4 15Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20 15C20.5523 15 21 15.4477 21 16V20C21 20.5523 20.5523 21 20 21H16C15.4477 21 15 20.5523 15 20C15 19.4477 15.4477 19 16 19H19V16C19 15.4477 19.4477 15 20 15Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M10.3301 7.09961C10.8271 7.09961 11.2305 7.50294 11.2305 8V16C11.2305 16.4971 10.8271 16.9004 10.3301 16.9004C9.83302 16.9004 9.42969 16.4971 9.42969 16V8C9.42969 7.50294 9.83302 7.09961 10.3301 7.09961Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M17 8.59961C17.4971 8.59961 17.9004 9.00294 17.9004 9.5V14.5C17.9004 14.9971 17.4971 15.4004 17 15.4004C16.5029 15.4004 16.0996 14.9971 16.0996 14.5V9.5C16.0996 9.00294 16.5029 8.59961 17 8.59961Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7 10.0996C7.49706 10.0996 7.90039 10.5029 7.90039 11V13C7.90039 13.4971 7.49706 13.9004 7 13.9004C6.50294 13.9004 6.09961 13.4971 6.09961 13V11C6.09961 10.5029 6.50294 10.0996 7 10.0996Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.6699 10.0996C14.167 10.0996 14.5703 10.5029 14.5703 11V13C14.5703 13.4971 14.167 13.9004 13.6699 13.9004C13.1729 13.9004 12.7695 13.4971 12.7695 13V11C12.7695 10.5029 13.1729 10.0996 13.6699 10.0996Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8 3C8.55228 3 9 3.44772 9 4C9 4.55228 8.55228 5 8 5H5V8C5 8.55228 4.55228 9 4 9C3.44772 9 3 8.55228 3 8V4C3 3.44772 3.44772 3 4 3H8Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20 3C20.5523 3 21 3.44772 21 4V8C21 8.55228 20.5523 9 20 9C19.4477 9 19 8.55228 19 8V5H16C15.4477 5 15 4.55228 15 4C15 3.44772 15.4477 3 16 3H20Z\"\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,qJACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kKACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8MACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,uMACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8LACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8MACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,wIACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qJACF,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 2C17.6569 2 19 3.34315 19 5C19 6.30574 18.1645 7.41299 17 7.8252V16.1738C18.1647 16.5859 19 17.6941 19 19C19 20.6569 17.6569 22 16 22C14.3431 22 13 20.6569 13 19C13 17.6941 13.8353 16.5859 15 16.1738V7.8252C13.8355 7.41299 13 6.30574 13 5C13 3.34315 14.3431 2 16 2Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M8 4C8.55228 4 9 4.44772 9 5V19C9 19.5523 8.55228 20 8 20C7.44772 20 7 19.5523 7 19V5C7 4.44772 7.44772 4 8 4Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M4 9C4.55228 9 5 9.44772 5 10V14C5 14.5523 4.55228 15 4 15C3.44772 15 3 14.5523 3 14V10C3 9.44772 3.44772 9 4 9Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M12 9C12.5523 9 13 9.44772 13 10V14C13 14.5523 12.5523 15 12 15C11.4477 15 11 14.5523 11 14V10C11 9.44772 11.4477 9 12 9Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M20 10C20.5523 10 21 10.4477 21 11V13C21 13.5523 20.5523 14 20 14C19.4477 14 19 13.5523 19 13V11C19 10.4477 19.4477 10 20 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 2C17.6569 2 19 3.34315 19 5C19 6.30574 18.1645 7.41299 17 7.8252V16.1738C18.1647 16.5859 19 17.6941 19 19C19 20.6569 17.6569 22 16 22C14.3431 22 13 20.6569 13 19C13 17.6941 13.8353 16.5859 15 16.1738V7.8252C13.8355 7.41299 13 6.30574 13 5C13 3.34315 14.3431 2 16 2Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8 4C8.55228 4 9 4.44772 9 5V19C9 19.5523 8.55228 20 8 20C7.44772 20 7 19.5523 7 19V5C7 4.44772 7.44772 4 8 4Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4 9C4.55228 9 5 9.44772 5 10V14C5 14.5523 4.55228 15 4 15C3.44772 15 3 14.5523 3 14V10C3 9.44772 3.44772 9 4 9Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12 9C12.5523 9 13 9.44772 13 10V14C13 14.5523 12.5523 15 12 15C11.4477 15 11 14.5523 11 14V10C11 9.44772 11.4477 9 12 9Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20 10C20.5523 10 21 10.4477 21 11V13C21 13.5523 20.5523 14 20 14C19.4477 14 19 13.5523 19 13V11C19 10.4477 19.4477 10 20 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,gRACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iHACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mHACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4HACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gIACF,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 2C17.6569 2 19 3.34315 19 5C19 6.30574 18.1645 7.41299 17 7.8252V16.1738C18.1647 16.5859 19 17.6941 19 19C19 20.6569 17.6569 22 16 22C14.3431 22 13 20.6569 13 19C13 17.6941 13.8353 16.5859 15 16.1738V7.8252C13.8355 7.41299 13 6.30574 13 5C13 3.34315 14.3431 2 16 2Z",fill:"currentColor"}),o.createElement(C,{d:"M8 4C8.55228 4 9 4.44772 9 5V19C9 19.5523 8.55228 20 8 20C7.44772 20 7 19.5523 7 19V5C7 4.44772 7.44772 4 8 4Z",fill:"currentColor"}),o.createElement(C,{d:"M4 9C4.55228 9 5 9.44772 5 10V14C5 14.5523 4.55228 15 4 15C3.44772 15 3 14.5523 3 14V10C3 9.44772 3.44772 9 4 9Z",fill:"currentColor"}),o.createElement(C,{d:"M12 9C12.5523 9 13 9.44772 13 10V14C13 14.5523 12.5523 15 12 15C11.4477 15 11 14.5523 11 14V10C11 9.44772 11.4477 9 12 9Z",fill:"currentColor"}),o.createElement(C,{d:"M20 10C20.5523 10 21 10.4477 21 11V13C21 13.5523 20.5523 14 20 14C19.4477 14 19 13.5523 19 13V11C19 10.4477 19.4477 10 20 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 2C17.6569 2 19 3.34315 19 5C19 6.30574 18.1645 7.41299 17 7.8252V16.1738C18.1647 16.5859 19 17.6941 19 19C19 20.6569 17.6569 22 16 22C14.3431 22 13 20.6569 13 19C13 17.6941 13.8353 16.5859 15 16.1738V7.8252C13.8355 7.41299 13 6.30574 13 5C13 3.34315 14.3431 2 16 2Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8 4C8.55228 4 9 4.44772 9 5V19C9 19.5523 8.55228 20 8 20C7.44772 20 7 19.5523 7 19V5C7 4.44772 7.44772 4 8 4Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4 9C4.55228 9 5 9.44772 5 10V14C5 14.5523 4.55228 15 4 15C3.44772 15 3 14.5523 3 14V10C3 9.44772 3.44772 9 4 9Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12 9C12.5523 9 13 9.44772 13 10V14C13 14.5523 12.5523 15 12 15C11.4477 15 11 14.5523 11 14V10C11 9.44772 11.4477 9 12 9Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20 10C20.5523 10 21 10.4477 21 11V13C21 13.5523 20.5523 14 20 14C19.4477 14 19 13.5523 19 13V11C19 10.4477 19.4477 10 20 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,gRACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iHACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mHACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4HACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gIACF,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-0-stroke-2",
85
85
  "componentName": "Icon4k"
86
86
  },
87
+ {
88
+ "category": "Photography & Video",
89
+ "svg": "<path d=\"M18 14C18.5523 14 19 14.4477 19 15V17H21C21.5523 17 22 17.4477 22 18C22 18.5523 21.5523 19 21 19H19V21C19 21.5523 18.5523 22 18 22C17.4477 22 17 21.5523 17 21V19H15C14.4477 19 14 18.5523 14 18C14 17.4477 14.4477 17 15 17H17V15C17 14.4477 17.4477 14 18 14Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20 3C20.5523 3 21 3.44772 21 4V12.498C20.2304 12.1771 19.3859 12 18.5 12C15.6596 12 13.2458 13.8223 12.3613 16.3613L8.70703 12.707C8.31653 12.3166 7.68347 12.3166 7.29297 12.707L5 15V19H12.0215C12.0751 19.704 12.239 20.3765 12.499 21H4C3.44772 21 3 20.5523 3 20V4C3 3.44772 3.44772 3 4 3H20ZM15 6.5C13.6193 6.5 12.5 7.61929 12.5 9C12.5 10.3807 13.6193 11.5 15 11.5C16.3807 11.5 17.5 10.3807 17.5 9C17.5 7.61929 16.3807 6.5 15 6.5Z\" fill=\"currentColor\"/>",
90
+ "iconName": "add-image, upload-image",
91
+ "variant": {
92
+ "join": "round",
93
+ "filled": "on",
94
+ "radius": "0",
95
+ "stroke": "2"
96
+ },
97
+ "createdAt": "2026-03-04T09:00:36.81334+00:00",
98
+ "packageName": "round-filled-radius-0-stroke-2",
99
+ "componentName": "IconAddImage"
100
+ },
87
101
  {
88
102
  "category": "Edit",
89
103
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.2929 1.79289C11.6834 1.40237 12.3166 1.40237 12.7071 1.79289L22.2071 11.2929C22.3946 11.4804 22.5 11.7347 22.5 12C22.5 12.2652 22.3946 12.5195 22.2071 12.7071L12.7071 22.2071C12.5196 22.3946 12.2652 22.5 12 22.5C11.7348 22.5 11.4804 22.3946 11.2929 22.2071L1.79289 12.7071C1.60536 12.5195 1.5 12.2652 1.5 12C1.5 11.7347 1.60536 11.4804 1.79289 11.2929L11.2929 1.79289ZM13 11V9C13 8.44771 12.5523 8 12 8C11.4477 8 11 8.44771 11 9V11H9C8.44772 11 8 11.4477 8 12C8 12.5523 8.44772 13 9 13H11V15C11 15.5523 11.4477 16 12 16C12.5523 16 13 15.5523 13 15V13H15C15.5523 13 16 12.5523 16 12C16 11.4477 15.5523 11 15 11H13Z\" fill=\"currentColor\"/>",
@@ -1008,6 +1022,20 @@
1008
1022
  "packageName": "round-filled-radius-0-stroke-2",
1009
1023
  "componentName": "IconArchive1"
1010
1024
  },
1025
+ {
1026
+ "category": "Interface General",
1027
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20V9H21V20ZM14.6367 12.3633C14.2852 12.0118 13.7148 12.0118 13.3633 12.3633L12 13.7266L10.6367 12.3633C10.2852 12.0118 9.71475 12.0118 9.36328 12.3633C9.01181 12.7148 9.01181 13.2852 9.36328 13.6367L10.7266 15L9.36328 16.3633C9.01181 16.7148 9.01181 17.2852 9.36328 17.6367C9.71475 17.9882 10.2852 17.9882 10.6367 17.6367L12 16.2734L13.3633 17.6367C13.7148 17.9882 14.2852 17.9882 14.6367 17.6367C14.9882 17.2852 14.9882 16.7148 14.6367 16.3633L13.2734 15L14.6367 13.6367C14.9882 13.2852 14.9882 12.7148 14.6367 12.3633Z\" fill=\"currentColor\"/><path d=\"M21 3C21.5523 3 22 3.44772 22 4V6C22 6.55228 21.5523 7 21 7H3C2.44772 7 2 6.55228 2 6V4C2 3.44772 2.44772 3 3 3H21Z\" fill=\"currentColor\"/>",
1028
+ "iconName": "archive-junk",
1029
+ "variant": {
1030
+ "join": "round",
1031
+ "filled": "on",
1032
+ "radius": "0",
1033
+ "stroke": "2"
1034
+ },
1035
+ "createdAt": "2026-03-02T09:01:01.031321+00:00",
1036
+ "packageName": "round-filled-radius-0-stroke-2",
1037
+ "componentName": "IconArchiveJunk"
1038
+ },
1011
1039
  {
1012
1040
  "category": "Augmented Reality",
1013
1041
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.5097 2.12842C11.8142 1.95719 12.1858 1.95719 12.4903 2.12842L14.6693 3.35415C15.1507 3.62492 15.3214 4.23463 15.0506 4.71599C14.7799 5.19735 14.1702 5.36807 13.6888 5.0973L13 4.70985V6C13 6.55228 12.5523 7 12 7C11.4477 7 11 6.55228 11 6V4.70985L10.3112 5.0973C9.82983 5.36807 9.22012 5.19735 8.94935 4.71599C8.67859 4.23463 8.84931 3.62492 9.33067 3.35415L11.5097 2.12842ZM16.871 5.73994C17.1418 5.25858 17.7515 5.08786 18.2328 5.35863L20.4903 6.62842C20.8051 6.80554 21 7.13873 21 7.5V10C21 10.5523 20.5523 11 20 11C19.4477 11 19 10.5523 19 10V9.23205L17.9019 9.86603C17.4236 10.1422 16.812 9.97829 16.5359 9.5C16.2598 9.02171 16.4236 8.41012 16.9019 8.13397L17.9804 7.51132L17.2523 7.10178C16.771 6.83101 16.6002 6.2213 16.871 5.73994ZM7.12899 5.73994C7.39975 6.2213 7.22903 6.83102 6.74768 7.10178L6.01961 7.51132L7.09808 8.13397C7.57637 8.41012 7.74024 9.02171 7.4641 9.5C7.18796 9.97829 6.57637 10.1422 6.09808 9.86603L5 9.23205L5 10C5 10.5523 4.55228 11 4 11C3.44771 11 3 10.5523 3 10L3 7.5C3 7.13873 3.19486 6.80554 3.50974 6.62843L5.76715 5.35863C6.24851 5.08787 6.85823 5.25859 7.12899 5.73994ZM4 13C4.55228 13 5 13.4477 5 14V14.768L6.09808 14.134C6.57637 13.8578 7.18796 14.0217 7.4641 14.5C7.74024 14.9783 7.57637 15.5899 7.09808 15.866L6.0196 16.4887L6.74768 16.8982C7.22903 17.169 7.39975 17.7787 7.12899 18.2601C6.85823 18.7414 6.24851 18.9121 5.76715 18.6414L3.50974 17.3716C3.19486 17.1945 3 16.8613 3 16.5V14C3 13.4477 3.44772 13 4 13ZM20 13C20.5523 13 21 13.4477 21 14V16.5C21 16.8613 20.8051 17.1945 20.4903 17.3716L18.2328 18.6414C17.7515 18.9121 17.1418 18.7414 16.871 18.2601C16.6002 17.7787 16.771 17.169 17.2523 16.8982L17.9804 16.4887L16.9019 15.866C16.4236 15.5899 16.2598 14.9783 16.5359 14.5C16.812 14.0217 17.4236 13.8578 17.9019 14.134L19 14.7679V14C19 13.4477 19.4477 13 20 13ZM12 17C12.5523 17 13 17.4477 13 18V19.2902L13.6888 18.9027C14.1702 18.6319 14.7799 18.8026 15.0507 19.284C15.3214 19.7654 15.1507 20.3751 14.6693 20.6458L12.4903 21.8716C12.1858 22.0428 11.8142 22.0428 11.5097 21.8716L9.33066 20.6458C8.8493 20.3751 8.67858 19.7654 8.94934 19.284C9.22011 18.8026 9.82982 18.6319 10.3112 18.9027L11 19.2902V18C11 17.4477 11.4477 17 12 17Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.5981 10.5C14.8742 10.9783 14.7104 11.5899 14.2321 11.866L13 12.5774V14C13 14.5523 12.5523 15 12 15C11.4477 15 11 14.5523 11 14V12.5774L9.76794 11.866C9.28965 11.5899 9.12578 10.9783 9.40192 10.5C9.67806 10.0217 10.2897 9.85783 10.7679 10.134L12 10.8453L13.2321 10.134C13.7103 9.85783 14.3219 10.0217 14.5981 10.5Z\" fill=\"currentColor\"/>",
@@ -19768,6 +19796,20 @@
19768
19796
  "packageName": "round-filled-radius-0-stroke-2",
19769
19797
  "componentName": "IconScanTextSparkle"
19770
19798
  },
19799
+ {
19800
+ "category": "Sound & Music",
19801
+ "svg": "<path d=\"M4 15C4.55228 15 5 15.4477 5 16V19H8C8.55228 19 9 19.4477 9 20C9 20.5523 8.55228 21 8 21H4C3.44772 21 3 20.5523 3 20V16C3 15.4477 3.44772 15 4 15Z\" fill=\"currentColor\"/><path d=\"M20 15C20.5523 15 21 15.4477 21 16V20C21 20.5523 20.5523 21 20 21H16C15.4477 21 15 20.5523 15 20C15 19.4477 15.4477 19 16 19H19V16C19 15.4477 19.4477 15 20 15Z\" fill=\"currentColor\"/><path d=\"M10.3301 7.09961C10.8271 7.09961 11.2305 7.50294 11.2305 8V16C11.2305 16.4971 10.8271 16.9004 10.3301 16.9004C9.83302 16.9004 9.42969 16.4971 9.42969 16V8C9.42969 7.50294 9.83302 7.09961 10.3301 7.09961Z\" fill=\"currentColor\"/><path d=\"M17 8.59961C17.4971 8.59961 17.9004 9.00294 17.9004 9.5V14.5C17.9004 14.9971 17.4971 15.4004 17 15.4004C16.5029 15.4004 16.0996 14.9971 16.0996 14.5V9.5C16.0996 9.00294 16.5029 8.59961 17 8.59961Z\" fill=\"currentColor\"/><path d=\"M7 10.0996C7.49706 10.0996 7.90039 10.5029 7.90039 11V13C7.90039 13.4971 7.49706 13.9004 7 13.9004C6.50294 13.9004 6.09961 13.4971 6.09961 13V11C6.09961 10.5029 6.50294 10.0996 7 10.0996Z\" fill=\"currentColor\"/><path d=\"M13.6699 10.0996C14.167 10.0996 14.5703 10.5029 14.5703 11V13C14.5703 13.4971 14.167 13.9004 13.6699 13.9004C13.1729 13.9004 12.7695 13.4971 12.7695 13V11C12.7695 10.5029 13.1729 10.0996 13.6699 10.0996Z\" fill=\"currentColor\"/><path d=\"M8 3C8.55228 3 9 3.44772 9 4C9 4.55228 8.55228 5 8 5H5V8C5 8.55228 4.55228 9 4 9C3.44772 9 3 8.55228 3 8V4C3 3.44772 3.44772 3 4 3H8Z\" fill=\"currentColor\"/><path d=\"M20 3C20.5523 3 21 3.44772 21 4V8C21 8.55228 20.5523 9 20 9C19.4477 9 19 8.55228 19 8V5H16C15.4477 5 15 4.55228 15 4C15 3.44772 15.4477 3 16 3H20Z\" fill=\"currentColor\"/>",
19802
+ "iconName": "scan-voice",
19803
+ "variant": {
19804
+ "join": "round",
19805
+ "filled": "on",
19806
+ "radius": "0",
19807
+ "stroke": "2"
19808
+ },
19809
+ "createdAt": "2026-03-04T09:00:36.81334+00:00",
19810
+ "packageName": "round-filled-radius-0-stroke-2",
19811
+ "componentName": "IconScanVoice"
19812
+ },
19771
19813
  {
19772
19814
  "category": "Building",
19773
19815
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 5C6 4.44772 6.44772 4 7 4H17C17.5523 4 18 4.44772 18 5V18H19V8H21C21.5523 8 22 8.44772 22 9V18C22.5523 18 23 18.4477 23 19C23 19.5523 22.5523 20 22 20H2C1.44772 20 1 19.5523 1 19C1 18.4477 1.44772 18 2 18V9C2 8.44772 2.44772 8 3 8H5V18H6V5ZM14 18V15H10V18H14Z\" fill=\"currentColor\"/>",
@@ -24808,6 +24850,20 @@
24808
24850
  "packageName": "round-filled-radius-0-stroke-2",
24809
24851
  "componentName": "IconVoiceLow"
24810
24852
  },
24853
+ {
24854
+ "category": "Sound & Music",
24855
+ "svg": "<path d=\"M16 2C17.6569 2 19 3.34315 19 5C19 6.30574 18.1645 7.41299 17 7.8252V16.1738C18.1647 16.5859 19 17.6941 19 19C19 20.6569 17.6569 22 16 22C14.3431 22 13 20.6569 13 19C13 17.6941 13.8353 16.5859 15 16.1738V7.8252C13.8355 7.41299 13 6.30574 13 5C13 3.34315 14.3431 2 16 2Z\" fill=\"currentColor\"/><path d=\"M8 4C8.55228 4 9 4.44772 9 5V19C9 19.5523 8.55228 20 8 20C7.44772 20 7 19.5523 7 19V5C7 4.44772 7.44772 4 8 4Z\" fill=\"currentColor\"/><path d=\"M4 9C4.55228 9 5 9.44772 5 10V14C5 14.5523 4.55228 15 4 15C3.44772 15 3 14.5523 3 14V10C3 9.44772 3.44772 9 4 9Z\" fill=\"currentColor\"/><path d=\"M12 9C12.5523 9 13 9.44772 13 10V14C13 14.5523 12.5523 15 12 15C11.4477 15 11 14.5523 11 14V10C11 9.44772 11.4477 9 12 9Z\" fill=\"currentColor\"/><path d=\"M20 10C20.5523 10 21 10.4477 21 11V13C21 13.5523 20.5523 14 20 14C19.4477 14 19 13.5523 19 13V11C19 10.4477 19.4477 10 20 10Z\" fill=\"currentColor\"/>",
24856
+ "iconName": "voice-memo, voice-control",
24857
+ "variant": {
24858
+ "join": "round",
24859
+ "filled": "on",
24860
+ "radius": "0",
24861
+ "stroke": "2"
24862
+ },
24863
+ "createdAt": "2026-03-04T09:00:36.81334+00:00",
24864
+ "packageName": "round-filled-radius-0-stroke-2",
24865
+ "componentName": "IconVoiceMemo"
24866
+ },
24811
24867
  {
24812
24868
  "category": "Sound & Music",
24813
24869
  "svg": "<path d=\"M8 5C8.55228 5 9 5.44772 9 6V18C9 18.5523 8.55228 19 8 19C7.44772 19 7 18.5523 7 18V6C7 5.44772 7.44772 5 8 5Z\" fill=\"currentColor\"/><path d=\"M16 7C16.5523 7 17 7.44772 17 8V16C17 16.5523 16.5523 17 16 17C15.4477 17 15 16.5523 15 16V8C15 7.44772 15.4477 7 16 7Z\" fill=\"currentColor\"/><path d=\"M12 9C12.5523 9 13 9.44772 13 10V14C13 14.5523 12.5523 15 12 15C11.4477 15 11 14.5523 11 14V10C11 9.44772 11.4477 9 12 9Z\" fill=\"currentColor\"/><path d=\"M4 10C4.55228 10 5 10.4477 5 11V13C5 13.5523 4.55228 14 4 14C3.44772 14 3 13.5523 3 13V11C3 10.4477 3.44772 10 4 10Z\" fill=\"currentColor\"/><path d=\"M20 10C20.5523 10 21 10.4477 21 11V13C21 13.5523 20.5523 14 20 14C19.4477 14 19 13.5523 19 13V11C19 10.4477 19.4477 10 20 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-0-stroke-2",
3
- "version": "1.1.150",
3
+ "version": "1.1.152",
4
4
  "style": "round-filled-radius-0-stroke-2",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-0-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": 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";