@central-icons-react-native/round-outlined-radius-3-stroke-2 1.1.92 → 1.1.94

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 IconIconists: FC<CentralIconBaseProps>;
4
+ export default IconIconists;
@@ -0,0 +1,2 @@
1
+ "use strict";var I=Object.create;var e=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)e(r,t,{get:o[t],enumerable:!0})},s=(r,o,t,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of B(o))!P.call(r,n)&&n!==t&&e(r,n,{get:()=>o[n],enumerable:!(a=u(o,n))||a.enumerable});return r};var m=(r,o,t)=>(t=r!=null?I(x(r)):{},s(o||!r||!r.__esModule?e(t,"default",{value:r,enumerable:!0}):t,r)),v=r=>s(e({},"__esModule",{value:!0}),r);var d={};g(d,{IconIconists:()=>i,default:()=>y});module.exports=v(d);var p=m(require("react"));var C=m(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...t})=>C.default.createElement(c.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var l=require("react-native-svg"),i=r=>p.default.createElement(f,{...r},p.default.createElement(l.Path,{d:"M12 2V22L8 20V4L12 2Z",fill:"currentColor"}),p.default.createElement(l.Path,{opacity:"0.35",d:"M16 4V20L12 22V2L16 4Z",fill:"currentColor"})),y=i;0&&(module.exports={IconIconists});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconIconists/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 IconIconists: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M12 2V22L8 20V4L12 2Z\" fill=\"currentColor\" />\n <Path opacity=\"0.35\" d=\"M16 4V20L12 22V2L16 4Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconIconists;\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,QAAK,EAAE,wBAAwB,KAAK,eAAe,EACpD,EAAAA,QAAA,cAAC,QAAK,QAAQ,OAAO,EAAE,yBAAyB,KAAK,eAAe,CACtE,EAIGE,EAAQJ","names":["IconIconists_exports","__export","IconIconists","IconIconists_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconIconists","props","React","CentralIconBase","IconIconists_default"]}
@@ -0,0 +1,2 @@
1
+ import t from"react";import l from"react";import{Svg as a}from"react-native-svg";var n=({children:o,size:r=24,...p})=>l.createElement(a,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as e}from"react-native-svg";var s=o=>t.createElement(n,{...o},t.createElement(e,{d:"M12 2V22L8 20V4L12 2Z",fill:"currentColor"}),t.createElement(e,{opacity:"0.35",d:"M16 4V20L12 22V2L16 4Z",fill:"currentColor"})),P=s;export{s as IconIconists,P as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconIconists/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 IconIconists: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M12 2V22L8 20V4L12 2Z\" fill=\"currentColor\" />\n <Path opacity=\"0.35\" d=\"M16 4V20L12 22V2L16 4Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconIconists;\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,CAAK,EAAE,wBAAwB,KAAK,eAAe,EACpDG,EAAA,cAACH,EAAA,CAAK,QAAQ,OAAO,EAAE,yBAAyB,KAAK,eAAe,CACtE,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconIconists","props","React","CentralIconBase","IconIconists_default"]}
@@ -1,2 +1,2 @@
1
- "use strict";var c=Object.create;var l=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var t in o)l(r,t,{get:o[t],enumerable:!0})},s=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of d(o))!x.call(r,n)&&n!==t&&l(r,n,{get:()=>o[n],enumerable:!(p=B(o,n))||p.enumerable});return r};var i=(r,o,t)=>(t=r!=null?c(I(r)):{},s(o||!r||!r.__esModule?l(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>s(l({},"__esModule",{value:!0}),r);var v={};P(v,{IconListBullets:()=>u,default:()=>h});module.exports=g(v);var e=i(require("react"));var m=i(require("react")),a=require("react-native-svg"),f=({children:r,size:o=24,...t})=>m.default.createElement(a.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var C=require("react-native-svg"),u=r=>e.default.createElement(f,{...r},e.default.createElement(C.Path,{d:"M20 7C20 5.34315 18.6569 4 17 4H7C5.34315 4 4 5.34315 4 7V17C4 18.6569 5.34315 20 7 20H17C18.6569 20 20 18.6569 20 17V7Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),e.default.createElement(C.Path,{d:"M8.25 14.75C8.94036 14.75 9.5 15.3096 9.5 16C9.5 16.6904 8.94036 17.25 8.25 17.25C7.55964 17.25 7 16.6904 7 16C7 15.3096 7.55964 14.75 8.25 14.75Z",fill:"currentColor"}),e.default.createElement(C.Path,{d:"M8.25 10.75C8.94036 10.75 9.5 11.3096 9.5 12C9.5 12.6904 8.94036 13.25 8.25 13.25C7.55964 13.25 7 12.6904 7 12C7 11.3096 7.55964 10.75 8.25 10.75Z",fill:"currentColor"}),e.default.createElement(C.Path,{d:"M8.25 6.75C8.94036 6.75 9.5 7.30964 9.5 8C9.5 8.69036 8.94036 9.25 8.25 9.25C7.55964 9.25 7 8.69036 7 8C7 7.30964 7.55964 6.75 8.25 6.75Z",fill:"currentColor"})),h=u;0&&(module.exports={IconListBullets});
1
+ "use strict";var f=Object.create;var p=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var k=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},c=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let l of x(o))!B.call(r,l)&&l!==t&&p(r,l,{get:()=>o[l],enumerable:!(s=d(o,l))||s.enumerable});return r};var C=(r,o,t)=>(t=r!=null?f(k(r)):{},c(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),h=r=>c(p({},"__esModule",{value:!0}),r);var L={};I(L,{IconListBullets:()=>m,default:()=>y});module.exports=h(L);var e=C(require("react"));var i=C(require("react")),u=require("react-native-svg"),a=({children:r,size:o=24,...t})=>i.default.createElement(u.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var n=require("react-native-svg"),m=r=>e.default.createElement(a,{...r},e.default.createElement(n.Path,{d:"M10 6L20 6",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),e.default.createElement(n.Circle,{cx:"4.5",cy:"6",r:"1.5",fill:"currentColor"}),e.default.createElement(n.Path,{d:"M10 12L20 12",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),e.default.createElement(n.Circle,{cx:"4.5",cy:"12",r:"1.5",fill:"currentColor"}),e.default.createElement(n.Path,{d:"M10 18L20 18",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),e.default.createElement(n.Circle,{cx:"4.5",cy:"18",r:"1.5",fill:"currentColor"})),y=m;0&&(module.exports={IconListBullets});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconListBullets/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 IconListBullets: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20 7C20 5.34315 18.6569 4 17 4H7C5.34315 4 4 5.34315 4 7V17C4 18.6569 5.34315 20 7 20H17C18.6569 20 20 18.6569 20 17V7Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.25 14.75C8.94036 14.75 9.5 15.3096 9.5 16C9.5 16.6904 8.94036 17.25 8.25 17.25C7.55964 17.25 7 16.6904 7 16C7 15.3096 7.55964 14.75 8.25 14.75Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.25 10.75C8.94036 10.75 9.5 11.3096 9.5 12C9.5 12.6904 8.94036 13.25 8.25 13.25C7.55964 13.25 7 12.6904 7 12C7 11.3096 7.55964 10.75 8.25 10.75Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.25 6.75C8.94036 6.75 9.5 7.30964 9.5 8C9.5 8.69036 8.94036 9.25 8.25 9.25C7.55964 9.25 7 8.69036 7 8C7 7.30964 7.55964 6.75 8.25 6.75Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconListBullets;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,qBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,2HACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qJACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qJACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4IACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconListBullets_exports","__export","IconListBullets","IconListBullets_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconListBullets","props","React","CentralIconBase","IconListBullets_default"]}
1
+ {"version":3,"sources":["../src/IconListBullets/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconListBullets: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10 6L20 6\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Circle cx=\"4.5\" cy=\"6\" r=\"1.5\" fill=\"currentColor\" />\n <Path\n d=\"M10 12L20 12\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Circle cx=\"4.5\" cy=\"12\" r=\"1.5\" fill=\"currentColor\" />\n <Path\n d=\"M10 18L20 18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Circle cx=\"4.5\" cy=\"18\" r=\"1.5\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconListBullets;\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,EAA6B,4BAEhBC,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,aACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,UAAO,GAAG,MAAM,GAAG,IAAI,EAAE,MAAM,KAAK,eAAe,EACpD,EAAAA,QAAA,cAAC,QACC,EAAE,eACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,UAAO,GAAG,MAAM,GAAG,KAAK,EAAE,MAAM,KAAK,eAAe,EACrD,EAAAA,QAAA,cAAC,QACC,EAAE,eACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,UAAO,GAAG,MAAM,GAAG,KAAK,EAAE,MAAM,KAAK,eAAe,CACvD,EAIGE,EAAQJ","names":["IconListBullets_exports","__export","IconListBullets","IconListBullets_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconListBullets","props","React","CentralIconBase","IconListBullets_default"]}
@@ -1,2 +1,2 @@
1
- import o from"react";import l from"react";import{Svg as p}from"react-native-svg";var n=({children:e,size:r=24,...C})=>l.createElement(p,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as t}from"react-native-svg";var s=e=>o.createElement(n,{...e},o.createElement(t,{d:"M20 7C20 5.34315 18.6569 4 17 4H7C5.34315 4 4 5.34315 4 7V17C4 18.6569 5.34315 20 7 20H17C18.6569 20 20 18.6569 20 17V7Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),o.createElement(t,{d:"M8.25 14.75C8.94036 14.75 9.5 15.3096 9.5 16C9.5 16.6904 8.94036 17.25 8.25 17.25C7.55964 17.25 7 16.6904 7 16C7 15.3096 7.55964 14.75 8.25 14.75Z",fill:"currentColor"}),o.createElement(t,{d:"M8.25 10.75C8.94036 10.75 9.5 11.3096 9.5 12C9.5 12.6904 8.94036 13.25 8.25 13.25C7.55964 13.25 7 12.6904 7 12C7 11.3096 7.55964 10.75 8.25 10.75Z",fill:"currentColor"}),o.createElement(t,{d:"M8.25 6.75C8.94036 6.75 9.5 7.30964 9.5 8C9.5 8.69036 8.94036 9.25 8.25 9.25C7.55964 9.25 7 8.69036 7 8C7 7.30964 7.55964 6.75 8.25 6.75Z",fill:"currentColor"})),x=s;export{s as IconListBullets,x as default};
1
+ import r from"react";import s from"react";import{Svg as c}from"react-native-svg";var l=({children:t,size:o=24,...p})=>s.createElement(c,{...p,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},t);import{Circle as e,Path as n}from"react-native-svg";var C=t=>r.createElement(l,{...t},r.createElement(n,{d:"M10 6L20 6",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),r.createElement(e,{cx:"4.5",cy:"6",r:"1.5",fill:"currentColor"}),r.createElement(n,{d:"M10 12L20 12",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),r.createElement(e,{cx:"4.5",cy:"12",r:"1.5",fill:"currentColor"}),r.createElement(n,{d:"M10 18L20 18",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),r.createElement(e,{cx:"4.5",cy:"18",r:"1.5",fill:"currentColor"})),I=C;export{C as IconListBullets,I as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconListBullets/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 IconListBullets: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20 7C20 5.34315 18.6569 4 17 4H7C5.34315 4 4 5.34315 4 7V17C4 18.6569 5.34315 20 7 20H17C18.6569 20 20 18.6569 20 17V7Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.25 14.75C8.94036 14.75 9.5 15.3096 9.5 16C9.5 16.6904 8.94036 17.25 8.25 17.25C7.55964 17.25 7 16.6904 7 16C7 15.3096 7.55964 14.75 8.25 14.75Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.25 10.75C8.94036 10.75 9.5 11.3096 9.5 12C9.5 12.6904 8.94036 13.25 8.25 13.25C7.55964 13.25 7 12.6904 7 12C7 11.3096 7.55964 10.75 8.25 10.75Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.25 6.75C8.94036 6.75 9.5 7.30964 9.5 8C9.5 8.69036 8.94036 9.25 8.25 9.25C7.55964 9.25 7 8.69036 7 8C7 7.30964 7.55964 6.75 8.25 6.75Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconListBullets;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,2HACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qJACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qJACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4IACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconListBullets","props","React","CentralIconBase","IconListBullets_default"]}
1
+ {"version":3,"sources":["../src/IconListBullets/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconListBullets: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10 6L20 6\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Circle cx=\"4.5\" cy=\"6\" r=\"1.5\" fill=\"currentColor\" />\n <Path\n d=\"M10 12L20 12\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Circle cx=\"4.5\" cy=\"12\" r=\"1.5\" fill=\"currentColor\" />\n <Path\n d=\"M10 18L20 18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Circle cx=\"4.5\" cy=\"18\" r=\"1.5\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconListBullets;\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,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,aACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACJ,EAAA,CAAO,GAAG,MAAM,GAAG,IAAI,EAAE,MAAM,KAAK,eAAe,EACpDI,EAAA,cAACH,EAAA,CACC,EAAE,eACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACJ,EAAA,CAAO,GAAG,MAAM,GAAG,KAAK,EAAE,MAAM,KAAK,eAAe,EACrDI,EAAA,cAACH,EAAA,CACC,EAAE,eACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACJ,EAAA,CAAO,GAAG,MAAM,GAAG,KAAK,EAAE,MAAM,KAAK,eAAe,CACvD,EAIGM,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconListBullets","props","React","CentralIconBase","IconListBullets_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconListBulletsSquare: FC<CentralIconBaseProps>;
4
+ export default IconListBulletsSquare;
@@ -0,0 +1,2 @@
1
+ "use strict";var c=Object.create;var l=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var t in o)l(r,t,{get:o[t],enumerable:!0})},s=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of d(o))!x.call(r,n)&&n!==t&&l(r,n,{get:()=>o[n],enumerable:!(p=B(o,n))||p.enumerable});return r};var a=(r,o,t)=>(t=r!=null?c(I(r)):{},s(o||!r||!r.__esModule?l(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>s(l({},"__esModule",{value:!0}),r);var v={};P(v,{IconListBulletsSquare:()=>f,default:()=>h});module.exports=g(v);var e=a(require("react"));var i=a(require("react")),m=require("react-native-svg"),u=({children:r,size:o=24,...t})=>i.default.createElement(m.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var C=require("react-native-svg"),f=r=>e.default.createElement(u,{...r},e.default.createElement(C.Path,{d:"M20 7C20 5.34315 18.6569 4 17 4H7C5.34315 4 4 5.34315 4 7V17C4 18.6569 5.34315 20 7 20H17C18.6569 20 20 18.6569 20 17V7Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),e.default.createElement(C.Path,{d:"M8.25 14.75C8.94036 14.75 9.5 15.3096 9.5 16C9.5 16.6904 8.94036 17.25 8.25 17.25C7.55964 17.25 7 16.6904 7 16C7 15.3096 7.55964 14.75 8.25 14.75Z",fill:"currentColor"}),e.default.createElement(C.Path,{d:"M8.25 10.75C8.94036 10.75 9.5 11.3096 9.5 12C9.5 12.6904 8.94036 13.25 8.25 13.25C7.55964 13.25 7 12.6904 7 12C7 11.3096 7.55964 10.75 8.25 10.75Z",fill:"currentColor"}),e.default.createElement(C.Path,{d:"M8.25 6.75C8.94036 6.75 9.5 7.30964 9.5 8C9.5 8.69036 8.94036 9.25 8.25 9.25C7.55964 9.25 7 8.69036 7 8C7 7.30964 7.55964 6.75 8.25 6.75Z",fill:"currentColor"})),h=f;0&&(module.exports={IconListBulletsSquare});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconListBulletsSquare/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 IconListBulletsSquare: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20 7C20 5.34315 18.6569 4 17 4H7C5.34315 4 4 5.34315 4 7V17C4 18.6569 5.34315 20 7 20H17C18.6569 20 20 18.6569 20 17V7Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.25 14.75C8.94036 14.75 9.5 15.3096 9.5 16C9.5 16.6904 8.94036 17.25 8.25 17.25C7.55964 17.25 7 16.6904 7 16C7 15.3096 7.55964 14.75 8.25 14.75Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.25 10.75C8.94036 10.75 9.5 11.3096 9.5 12C9.5 12.6904 8.94036 13.25 8.25 13.25C7.55964 13.25 7 12.6904 7 12C7 11.3096 7.55964 10.75 8.25 10.75Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.25 6.75C8.94036 6.75 9.5 7.30964 9.5 8C9.5 8.69036 8.94036 9.25 8.25 9.25C7.55964 9.25 7 8.69036 7 8C7 7.30964 7.55964 6.75 8.25 6.75Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconListBulletsSquare;\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,2BAAAE,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,EAAmDC,GAE5D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,2HACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qJACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qJACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4IACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconListBulletsSquare_exports","__export","IconListBulletsSquare","IconListBulletsSquare_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconListBulletsSquare","props","React","CentralIconBase","IconListBulletsSquare_default"]}
@@ -0,0 +1,2 @@
1
+ import o from"react";import l from"react";import{Svg as p}from"react-native-svg";var n=({children:e,size:r=24,...C})=>l.createElement(p,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as t}from"react-native-svg";var s=e=>o.createElement(n,{...e},o.createElement(t,{d:"M20 7C20 5.34315 18.6569 4 17 4H7C5.34315 4 4 5.34315 4 7V17C4 18.6569 5.34315 20 7 20H17C18.6569 20 20 18.6569 20 17V7Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),o.createElement(t,{d:"M8.25 14.75C8.94036 14.75 9.5 15.3096 9.5 16C9.5 16.6904 8.94036 17.25 8.25 17.25C7.55964 17.25 7 16.6904 7 16C7 15.3096 7.55964 14.75 8.25 14.75Z",fill:"currentColor"}),o.createElement(t,{d:"M8.25 10.75C8.94036 10.75 9.5 11.3096 9.5 12C9.5 12.6904 8.94036 13.25 8.25 13.25C7.55964 13.25 7 12.6904 7 12C7 11.3096 7.55964 10.75 8.25 10.75Z",fill:"currentColor"}),o.createElement(t,{d:"M8.25 6.75C8.94036 6.75 9.5 7.30964 9.5 8C9.5 8.69036 8.94036 9.25 8.25 9.25C7.55964 9.25 7 8.69036 7 8C7 7.30964 7.55964 6.75 8.25 6.75Z",fill:"currentColor"})),x=s;export{s as IconListBulletsSquare,x as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconListBulletsSquare/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 IconListBulletsSquare: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20 7C20 5.34315 18.6569 4 17 4H7C5.34315 4 4 5.34315 4 7V17C4 18.6569 5.34315 20 7 20H17C18.6569 20 20 18.6569 20 17V7Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.25 14.75C8.94036 14.75 9.5 15.3096 9.5 16C9.5 16.6904 8.94036 17.25 8.25 17.25C7.55964 17.25 7 16.6904 7 16C7 15.3096 7.55964 14.75 8.25 14.75Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.25 10.75C8.94036 10.75 9.5 11.3096 9.5 12C9.5 12.6904 8.94036 13.25 8.25 13.25C7.55964 13.25 7 12.6904 7 12C7 11.3096 7.55964 10.75 8.25 10.75Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.25 6.75C8.94036 6.75 9.5 7.30964 9.5 8C9.5 8.69036 8.94036 9.25 8.25 9.25C7.55964 9.25 7 8.69036 7 8C7 7.30964 7.55964 6.75 8.25 6.75Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconListBulletsSquare;\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,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,2HACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qJACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qJACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4IACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconListBulletsSquare","props","React","CentralIconBase","IconListBulletsSquare_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconVoiceLow: FC<CentralIconBaseProps>;
4
+ export default IconVoiceLow;
@@ -0,0 +1,2 @@
1
+ "use strict";var l=Object.create;var p=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},i=(r,o,t,d)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of f(o))!B.call(r,s)&&s!==t&&p(r,s,{get:()=>o[s],enumerable:!(d=m(o,s))||d.enumerable});return r};var a=(r,o,t)=>(t=r!=null?l(h(r)):{},i(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),x=r=>i(p({},"__esModule",{value:!0}),r);var g={};I(g,{IconVoiceLow:()=>k,default:()=>P});module.exports=x(g);var e=a(require("react"));var c=a(require("react")),u=require("react-native-svg"),C=({children:r,size:o=24,...t})=>c.default.createElement(u.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var n=require("react-native-svg"),k=r=>e.default.createElement(C,{...r},e.default.createElement(n.Path,{d:"M8 7V17",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),e.default.createElement(n.Path,{d:"M4 11.5V12.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),e.default.createElement(n.Path,{d:"M12 11V13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),e.default.createElement(n.Path,{d:"M16 9V15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),e.default.createElement(n.Path,{d:"M20 11.5V12.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})),P=k;0&&(module.exports={IconVoiceLow});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconVoiceLow/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 IconVoiceLow: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8 7V17\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M4 11.5V12.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M12 11V13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M16 9V15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M20 11.5V12.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceLow;\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,UACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,eACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gBACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,CACF,EAIGE,EAAQJ","names":["IconVoiceLow_exports","__export","IconVoiceLow","IconVoiceLow_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconVoiceLow","props","React","CentralIconBase","IconVoiceLow_default"]}
@@ -0,0 +1,2 @@
1
+ import o from"react";import p from"react";import{Svg as d}from"react-native-svg";var n=({children:e,size:r=24,...s})=>p.createElement(d,{...s,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as t}from"react-native-svg";var i=e=>o.createElement(n,{...e},o.createElement(t,{d:"M8 7V17",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement(t,{d:"M4 11.5V12.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement(t,{d:"M12 11V13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement(t,{d:"M16 9V15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement(t,{d:"M20 11.5V12.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})),B=i;export{i as IconVoiceLow,B as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconVoiceLow/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 IconVoiceLow: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8 7V17\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M4 11.5V12.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M12 11V13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M16 9V15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M20 11.5V12.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceLow;\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,UACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,eACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gBACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconVoiceLow","props","React","CentralIconBase","IconVoiceLow_default"]}
package/README.md CHANGED
@@ -782,7 +782,7 @@ Below is a complete list of available icons:
782
782
  - IconFolderShield
783
783
  - IconFolderUpload
784
784
  - IconLibrary
785
- - IconListBullets
785
+ - IconListBulletsSquare
786
786
  - IconMoveFolder
787
787
  - IconNote1
788
788
  - IconNote2
@@ -1030,6 +1030,7 @@ Below is a complete list of available icons:
1030
1030
  - IconLightBulb
1031
1031
  - IconLightbulbGlow
1032
1032
  - IconLightBulbSimple
1033
+ - IconListBullets
1033
1034
  - IconLoader
1034
1035
  - IconLoadingCircle
1035
1036
  - IconMagnifyingGlass
@@ -1500,6 +1501,7 @@ Below is a complete list of available icons:
1500
1501
  - IconGoose
1501
1502
  - IconGrok
1502
1503
  - IconGumroad
1504
+ - IconIconists
1503
1505
  - IconImessage
1504
1506
  - IconInstagram
1505
1507
  - IconJava
@@ -1615,6 +1617,7 @@ Below is a complete list of available icons:
1615
1617
  - IconVocalMicrophone
1616
1618
  - IconVoice3
1617
1619
  - IconVoiceHigh
1620
+ - IconVoiceLow
1618
1621
  - IconVoiceMid
1619
1622
  - IconVoiceMode
1620
1623
  - IconVoiceRecord
@@ -12292,6 +12292,20 @@
12292
12292
  "packageName": "round-outlined-radius-3-stroke-2",
12293
12293
  "componentName": "IconIceHockey"
12294
12294
  },
12295
+ {
12296
+ "category": "Social Media & Brands",
12297
+ "svg": "<path d=\"M12 2V22L8 20V4L12 2Z\" fill=\"currentColor\"/><path opacity=\"0.35\" d=\"M16 4V20L12 22V2L16 4Z\" fill=\"currentColor\"/>",
12298
+ "iconName": "iconists",
12299
+ "variant": {
12300
+ "join": "round",
12301
+ "filled": "off",
12302
+ "radius": "3",
12303
+ "stroke": "2"
12304
+ },
12305
+ "createdAt": "2026-01-17T09:03:18.498678+00:00",
12306
+ "packageName": "round-outlined-radius-3-stroke-2",
12307
+ "componentName": "IconIconists"
12308
+ },
12295
12309
  {
12296
12310
  "category": "Devices & Signals",
12297
12311
  "svg": "<path d=\"M10 17V16C9.44772 16 9 16.4477 9 17H10ZM14 17H15C15 16.4477 14.5523 16 14 16V17ZM14 21V22C14.5523 22 15 21.5523 15 21H14ZM10 21H9C9 21.5523 9.44772 22 10 22V21ZM3 12H2V14H3V12ZM10 18H14V16H10V18ZM13 17V21H15V17H13ZM14 20H10V22H14V20ZM11 21V17H9V21H11ZM21 12H3V14H21V12ZM6 5H18V3H6V5ZM20 7V14H22V7H20ZM18 16H6V18H18V16ZM4 14V7H2V14H4ZM6 16C4.89543 16 4 15.1046 4 14H2C2 16.2091 3.79086 18 6 18V16ZM20 14C20 15.1046 19.1046 16 18 16V18C20.2091 18 22 16.2091 22 14H20ZM18 5C19.1046 5 20 5.89543 20 7H22C22 4.79086 20.2091 3 18 3V5ZM6 3C3.79086 3 2 4.79086 2 7H4C4 5.89543 4.89543 5 6 5V3Z\" fill=\"currentColor\"/>",
@@ -13510,10 +13524,24 @@
13510
13524
  "packageName": "round-outlined-radius-3-stroke-2",
13511
13525
  "componentName": "IconLiquidGlass"
13512
13526
  },
13527
+ {
13528
+ "category": "Interface General",
13529
+ "svg": "<path d=\"M10 6L20 6\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><circle cx=\"4.5\" cy=\"6\" r=\"1.5\" fill=\"currentColor\"/><path d=\"M10 12L20 12\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><circle cx=\"4.5\" cy=\"12\" r=\"1.5\" fill=\"currentColor\"/><path d=\"M10 18L20 18\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><circle cx=\"4.5\" cy=\"18\" r=\"1.5\" fill=\"currentColor\"/>",
13530
+ "iconName": "list-bullets",
13531
+ "variant": {
13532
+ "join": "round",
13533
+ "filled": "off",
13534
+ "radius": "3",
13535
+ "stroke": "2"
13536
+ },
13537
+ "createdAt": "2026-01-17T09:03:18.498678+00:00",
13538
+ "packageName": "round-outlined-radius-3-stroke-2",
13539
+ "componentName": "IconListBullets"
13540
+ },
13513
13541
  {
13514
13542
  "category": "Folders & Files",
13515
13543
  "svg": "<path d=\"M20 7C20 5.34315 18.6569 4 17 4H7C5.34315 4 4 5.34315 4 7V17C4 18.6569 5.34315 20 7 20H17C18.6569 20 20 18.6569 20 17V7Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/><path d=\"M8.25 14.75C8.94036 14.75 9.5 15.3096 9.5 16C9.5 16.6904 8.94036 17.25 8.25 17.25C7.55964 17.25 7 16.6904 7 16C7 15.3096 7.55964 14.75 8.25 14.75Z\" fill=\"currentColor\"/><path d=\"M8.25 10.75C8.94036 10.75 9.5 11.3096 9.5 12C9.5 12.6904 8.94036 13.25 8.25 13.25C7.55964 13.25 7 12.6904 7 12C7 11.3096 7.55964 10.75 8.25 10.75Z\" fill=\"currentColor\"/><path d=\"M8.25 6.75C8.94036 6.75 9.5 7.30964 9.5 8C9.5 8.69036 8.94036 9.25 8.25 9.25C7.55964 9.25 7 8.69036 7 8C7 7.30964 7.55964 6.75 8.25 6.75Z\" fill=\"currentColor\"/>",
13516
- "iconName": "list-bullets",
13544
+ "iconName": "list-bullets-square",
13517
13545
  "variant": {
13518
13546
  "join": "round",
13519
13547
  "filled": "off",
@@ -13522,7 +13550,7 @@
13522
13550
  },
13523
13551
  "createdAt": "2025-02-15T21:11:33.829321+00:00",
13524
13552
  "packageName": "round-outlined-radius-3-stroke-2",
13525
- "componentName": "IconListBullets"
13553
+ "componentName": "IconListBulletsSquare"
13526
13554
  },
13527
13555
  {
13528
13556
  "category": "AI & Magic",
@@ -22876,6 +22904,20 @@
22876
22904
  "packageName": "round-outlined-radius-3-stroke-2",
22877
22905
  "componentName": "IconVoiceHigh"
22878
22906
  },
22907
+ {
22908
+ "category": "Sound & Music",
22909
+ "svg": "<path d=\"M8 7V17\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M4 11.5V12.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M12 11V13\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M16 9V15\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M20 11.5V12.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/>",
22910
+ "iconName": "voice-low, wave",
22911
+ "variant": {
22912
+ "join": "round",
22913
+ "filled": "off",
22914
+ "radius": "3",
22915
+ "stroke": "2"
22916
+ },
22917
+ "createdAt": "2026-01-17T09:03:18.498678+00:00",
22918
+ "packageName": "round-outlined-radius-3-stroke-2",
22919
+ "componentName": "IconVoiceLow"
22920
+ },
22879
22921
  {
22880
22922
  "category": "Sound & Music",
22881
22923
  "svg": "<path d=\"M8 6V18\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M4 11V13\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M12 10V14\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M16 8V16\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M20 11V13\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/>",
package/icons/index.d.ts CHANGED
@@ -877,6 +877,7 @@ export type CentralIconName =
877
877
  | "IconHumanMashine"
878
878
  | "IconIcebowl"
879
879
  | "IconIceHockey"
880
+ | "IconIconists"
880
881
  | "IconImac"
881
882
  | "IconImageAltText"
882
883
  | "IconImageAvatarSparkle"
@@ -965,6 +966,7 @@ export type CentralIconName =
965
966
  | "IconLinktree"
966
967
  | "IconLiquidGlass"
967
968
  | "IconListBullets"
969
+ | "IconListBulletsSquare"
968
970
  | "IconListSparkle"
969
971
  | "IconLiveActivity"
970
972
  | "IconLiveFull"
@@ -1633,6 +1635,7 @@ export type CentralIconName =
1633
1635
  | "IconVoice3"
1634
1636
  | "IconVoiceAndVideo"
1635
1637
  | "IconVoiceHigh"
1638
+ | "IconVoiceLow"
1636
1639
  | "IconVoiceMid"
1637
1640
  | "IconVoiceMode"
1638
1641
  | "IconVoiceRecord"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/round-outlined-radius-3-stroke-2",
3
- "version": "1.1.92",
3
+ "version": "1.1.94",
4
4
  "style": "round-outlined-radius-3-stroke-2",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-3-stroke-2/IconHome';",
@@ -11,7 +11,7 @@
11
11
  "withProps": "<IconHome size={32} color=\"#007AFF\" />",
12
12
  "central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
13
13
  },
14
- "totalIcons": 1695,
14
+ "totalIcons": 1698,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
17
  "count": 66,
@@ -678,7 +678,7 @@
678
678
  "IconFolderShield",
679
679
  "IconFolderUpload",
680
680
  "IconLibrary",
681
- "IconListBullets",
681
+ "IconListBulletsSquare",
682
682
  "IconMoveFolder",
683
683
  "IconNote1",
684
684
  "IconNote2",
@@ -841,7 +841,7 @@
841
841
  ]
842
842
  },
843
843
  "Interface General": {
844
- "count": 176,
844
+ "count": 177,
845
845
  "icons": [
846
846
  "IconAnchor1",
847
847
  "IconAnchor2",
@@ -936,6 +936,7 @@
936
936
  "IconLightBulb",
937
937
  "IconLightbulbGlow",
938
938
  "IconLightBulbSimple",
939
+ "IconListBullets",
939
940
  "IconLoader",
940
941
  "IconLoadingCircle",
941
942
  "IconMagnifyingGlass",
@@ -1376,7 +1377,7 @@
1376
1377
  ]
1377
1378
  },
1378
1379
  "Social Media & Brands": {
1379
- "count": 117,
1380
+ "count": 118,
1380
1381
  "icons": [
1381
1382
  "IconAdobeAcrobat",
1382
1383
  "IconAffinity",
@@ -1424,6 +1425,7 @@
1424
1425
  "IconGoose",
1425
1426
  "IconGrok",
1426
1427
  "IconGumroad",
1428
+ "IconIconists",
1427
1429
  "IconImessage",
1428
1430
  "IconInstagram",
1429
1431
  "IconJava",
@@ -1498,7 +1500,7 @@
1498
1500
  ]
1499
1501
  },
1500
1502
  "Sound & Music": {
1501
- "count": 51,
1503
+ "count": 52,
1502
1504
  "icons": [
1503
1505
  "IconAirpodLeft",
1504
1506
  "IconAirpodRight",
@@ -1541,6 +1543,7 @@
1541
1543
  "IconVocalMicrophone",
1542
1544
  "IconVoice3",
1543
1545
  "IconVoiceHigh",
1546
+ "IconVoiceLow",
1544
1547
  "IconVoiceMid",
1545
1548
  "IconVoiceMode",
1546
1549
  "IconVoiceRecord",
@@ -2768,6 +2771,7 @@
2768
2771
  "IconHumanMashine": "human-mashine, high-five, ai, hands",
2769
2772
  "IconIcebowl": "icebowl, cooling, vibe",
2770
2773
  "IconIceHockey": "ice-hockey",
2774
+ "IconIconists": "iconists",
2771
2775
  "IconImac": "imac, computer",
2772
2776
  "IconImageAltText": "image-alt-text",
2773
2777
  "IconImageAvatarSparkle": "image-avatar-sparkle, generated avatar, profile ai, magic avatar",
@@ -2856,6 +2860,7 @@
2856
2860
  "IconLinktree": "linktree",
2857
2861
  "IconLiquidGlass": "liquid-glass, glass-effect",
2858
2862
  "IconListBullets": "list-bullets",
2863
+ "IconListBulletsSquare": "list-bullets-square",
2859
2864
  "IconListSparkle": "list-sparkle, ai text, text generation",
2860
2865
  "IconLiveActivity": "live-activity, fitness",
2861
2866
  "IconLiveFull": "live-full, signal, podcast",
@@ -3524,6 +3529,7 @@
3524
3529
  "IconVoice3": "voice-3, wave",
3525
3530
  "IconVoiceAndVideo": "voice-and-video, media",
3526
3531
  "IconVoiceHigh": "voice-high, wave",
3532
+ "IconVoiceLow": "voice-low, wave",
3527
3533
  "IconVoiceMid": "voice-mid, wave",
3528
3534
  "IconVoiceMode": "voice-mode, voice-settings",
3529
3535
  "IconVoiceRecord": "voice-record",
package/index.d.ts CHANGED
@@ -876,6 +876,7 @@ export { IconHourglass, default as IconHourglassDefault, } from "./IconHourglass
876
876
  export { IconHumanMashine, default as IconHumanMashineDefault, } from "./IconHumanMashine";
877
877
  export { IconIceHockey, default as IconIceHockeyDefault, } from "./IconIceHockey";
878
878
  export { IconIcebowl, default as IconIcebowlDefault } from "./IconIcebowl";
879
+ export { IconIconists, default as IconIconistsDefault } from "./IconIconists";
879
880
  export { IconImac, default as IconImacDefault } from "./IconImac";
880
881
  export { IconImageAltText, default as IconImageAltTextDefault, } from "./IconImageAltText";
881
882
  export { IconImageAvatarSparkle, default as IconImageAvatarSparkleDefault, } from "./IconImageAvatarSparkle";
@@ -964,6 +965,7 @@ export { IconLinkedin, default as IconLinkedinDefault } from "./IconLinkedin";
964
965
  export { IconLinktree, default as IconLinktreeDefault } from "./IconLinktree";
965
966
  export { IconLiquidGlass, default as IconLiquidGlassDefault, } from "./IconLiquidGlass";
966
967
  export { IconListBullets, default as IconListBulletsDefault, } from "./IconListBullets";
968
+ export { IconListBulletsSquare, default as IconListBulletsSquareDefault, } from "./IconListBulletsSquare";
967
969
  export { IconListSparkle, default as IconListSparkleDefault, } from "./IconListSparkle";
968
970
  export { IconLiveActivity, default as IconLiveActivityDefault, } from "./IconLiveActivity";
969
971
  export { IconLiveFull, default as IconLiveFullDefault } from "./IconLiveFull";
@@ -1632,6 +1634,7 @@ export { IconVoice2, default as IconVoice2Default } from "./IconVoice2";
1632
1634
  export { IconVoice3, default as IconVoice3Default } from "./IconVoice3";
1633
1635
  export { IconVoiceAndVideo, default as IconVoiceAndVideoDefault, } from "./IconVoiceAndVideo";
1634
1636
  export { IconVoiceHigh, default as IconVoiceHighDefault, } from "./IconVoiceHigh";
1637
+ export { IconVoiceLow, default as IconVoiceLowDefault } from "./IconVoiceLow";
1635
1638
  export { IconVoiceMid, default as IconVoiceMidDefault } from "./IconVoiceMid";
1636
1639
  export { IconVoiceMode, default as IconVoiceModeDefault, } from "./IconVoiceMode";
1637
1640
  export { IconVoiceRecord, default as IconVoiceRecordDefault, } from "./IconVoiceRecord";