@central-icons-react-native/round-filled-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 u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var x=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0})},l=(o,r,e,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of I(r))!v.call(o,t)&&t!==e&&n(o,t,{get:()=>r[t],enumerable:!(p=B(r,t))||p.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(d(o)):{},l(r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e,o)),P=o=>l(n({},"__esModule",{value:!0}),o);var h={};x(h,{IconListBullets:()=>i,default:()=>g});module.exports=P(h);var C=a(require("react"));var s=a(require("react")),m=require("react-native-svg"),c=({children:o,size:r=24,...e})=>s.default.createElement(m.Svg,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var f=require("react-native-svg"),i=o=>C.default.createElement(c,{...o},C.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 7C21 4.79086 19.2091 3 17 3H7C4.79086 3 3 4.79086 3 7V17C3 19.2091 4.79086 21 7 21H17C19.2091 21 21 19.2091 21 17V7ZM9.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.75C8.94036 6.75 9.5 7.30964 9.5 8ZM9.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.75C8.94036 10.75 9.5 11.3096 9.5 12ZM8.25 17.25C8.94036 17.25 9.5 16.6904 9.5 16C9.5 15.3096 8.94036 14.75 8.25 14.75C7.55964 14.75 7 15.3096 7 16C7 16.6904 7.55964 17.25 8.25 17.25Z",fill:"currentColor"})),g=i;0&&(module.exports={IconListBullets});
1
+ "use strict";var c=Object.create;var e=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var C in o)e(r,C,{get:o[C],enumerable:!0})},f=(r,o,C,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let l of d(o))!x.call(r,l)&&l!==C&&e(r,l,{get:()=>o[l],enumerable:!(p=B(o,l))||p.enumerable});return r};var s=(r,o,C)=>(C=r!=null?c(I(r)):{},f(o||!r||!r.__esModule?e(C,"default",{value:r,enumerable:!0}):C,r)),g=r=>f(e({},"__esModule",{value:!0}),r);var M={};P(M,{IconListBullets:()=>a,default:()=>H});module.exports=g(M);var n=s(require("react"));var i=s(require("react")),m=require("react-native-svg"),u=({children:r,size:o=24,...C})=>i.default.createElement(m.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 t=require("react-native-svg"),a=r=>n.default.createElement(u,{...r},n.default.createElement(t.Path,{d:"M4.5 16.5C5.32843 16.5 6 17.1716 6 18C6 18.8284 5.32843 19.5 4.5 19.5C3.67157 19.5 3 18.8284 3 18C3 17.1716 3.67157 16.5 4.5 16.5Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M20 17C20.5523 17 21 17.4477 21 18C21 18.5523 20.5523 19 20 19H10C9.44772 19 9 18.5523 9 18C9 17.4477 9.44772 17 10 17H20Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M4.5 10.5C5.32843 10.5 6 11.1716 6 12C6 12.8284 5.32843 13.5 4.5 13.5C3.67157 13.5 3 12.8284 3 12C3 11.1716 3.67157 10.5 4.5 10.5Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M20 11C20.5523 11 21 11.4477 21 12C21 12.5523 20.5523 13 20 13H10C9.44772 13 9 12.5523 9 12C9 11.4477 9.44772 11 10 11H20Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M4.5 4.5C5.32843 4.5 6 5.17157 6 6C6 6.82843 5.32843 7.5 4.5 7.5C3.67157 7.5 3 6.82843 3 6C3 5.17157 3.67157 4.5 4.5 4.5Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M20 5C20.5523 5 21 5.44772 21 6C21 6.55228 20.5523 7 20 7H10C9.44772 7 9 6.55228 9 6C9 5.44772 9.44772 5 10 5H20Z",fill:"currentColor"})),H=a;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 fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M21 7C21 4.79086 19.2091 3 17 3H7C4.79086 3 3 4.79086 3 7V17C3 19.2091 4.79086 21 7 21H17C19.2091 21 21 19.2091 21 17V7ZM9.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.75C8.94036 6.75 9.5 7.30964 9.5 8ZM9.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.75C8.94036 10.75 9.5 11.3096 9.5 12ZM8.25 17.25C8.94036 17.25 9.5 16.6904 9.5 16C9.5 15.3096 8.94036 14.75 8.25 14.75C7.55964 14.75 7 15.3096 7 16C7 16.6904 7.55964 17.25 8.25 17.25Z\"\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,SAAS,UACT,SAAS,UACT,EAAE,giBACF,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 { Path } from \"react-native-svg\";\n\nexport const IconListBullets: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4.5 16.5C5.32843 16.5 6 17.1716 6 18C6 18.8284 5.32843 19.5 4.5 19.5C3.67157 19.5 3 18.8284 3 18C3 17.1716 3.67157 16.5 4.5 16.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20 17C20.5523 17 21 17.4477 21 18C21 18.5523 20.5523 19 20 19H10C9.44772 19 9 18.5523 9 18C9 17.4477 9.44772 17 10 17H20Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4.5 10.5C5.32843 10.5 6 11.1716 6 12C6 12.8284 5.32843 13.5 4.5 13.5C3.67157 13.5 3 12.8284 3 12C3 11.1716 3.67157 10.5 4.5 10.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20 11C20.5523 11 21 11.4477 21 12C21 12.5523 20.5523 13 20 13H10C9.44772 13 9 12.5523 9 12C9 11.4477 9.44772 11 10 11H20Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4.5 4.5C5.32843 4.5 6 5.17157 6 6C6 6.82843 5.32843 7.5 4.5 7.5C3.67157 7.5 3 6.82843 3 6C3 5.17157 3.67157 4.5 4.5 4.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20 5C20.5523 5 21 5.44772 21 6C21 6.55228 20.5523 7 20 7H10C9.44772 7 9 6.55228 9 6C9 5.44772 9.44772 5 10 5H20Z\"\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,qIACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6HACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qIACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6HACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4HACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oHACF,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,2 +1,2 @@
1
- import t from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...n})=>C.createElement(p,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as l}from"react-native-svg";var a=r=>t.createElement(e,{...r},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 7C21 4.79086 19.2091 3 17 3H7C4.79086 3 3 4.79086 3 7V17C3 19.2091 4.79086 21 7 21H17C19.2091 21 21 19.2091 21 17V7ZM9.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.75C8.94036 6.75 9.5 7.30964 9.5 8ZM9.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.75C8.94036 10.75 9.5 11.3096 9.5 12ZM8.25 17.25C8.94036 17.25 9.5 16.6904 9.5 16C9.5 15.3096 8.94036 14.75 8.25 14.75C7.55964 14.75 7 15.3096 7 16C7 16.6904 7.55964 17.25 8.25 17.25Z",fill:"currentColor"})),v=a;export{a as IconListBullets,v as default};
1
+ import r from"react";import e from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:o=24,...l})=>e.createElement(p,{...l,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},n);import{Path as C}from"react-native-svg";var f=n=>r.createElement(t,{...n},r.createElement(C,{d:"M4.5 16.5C5.32843 16.5 6 17.1716 6 18C6 18.8284 5.32843 19.5 4.5 19.5C3.67157 19.5 3 18.8284 3 18C3 17.1716 3.67157 16.5 4.5 16.5Z",fill:"currentColor"}),r.createElement(C,{d:"M20 17C20.5523 17 21 17.4477 21 18C21 18.5523 20.5523 19 20 19H10C9.44772 19 9 18.5523 9 18C9 17.4477 9.44772 17 10 17H20Z",fill:"currentColor"}),r.createElement(C,{d:"M4.5 10.5C5.32843 10.5 6 11.1716 6 12C6 12.8284 5.32843 13.5 4.5 13.5C3.67157 13.5 3 12.8284 3 12C3 11.1716 3.67157 10.5 4.5 10.5Z",fill:"currentColor"}),r.createElement(C,{d:"M20 11C20.5523 11 21 11.4477 21 12C21 12.5523 20.5523 13 20 13H10C9.44772 13 9 12.5523 9 12C9 11.4477 9.44772 11 10 11H20Z",fill:"currentColor"}),r.createElement(C,{d:"M4.5 4.5C5.32843 4.5 6 5.17157 6 6C6 6.82843 5.32843 7.5 4.5 7.5C3.67157 7.5 3 6.82843 3 6C3 5.17157 3.67157 4.5 4.5 4.5Z",fill:"currentColor"}),r.createElement(C,{d:"M20 5C20.5523 5 21 5.44772 21 6C21 6.55228 20.5523 7 20 7H10C9.44772 7 9 6.55228 9 6C9 5.44772 9.44772 5 10 5H20Z",fill:"currentColor"})),x=f;export{f as IconListBullets,x 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 fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M21 7C21 4.79086 19.2091 3 17 3H7C4.79086 3 3 4.79086 3 7V17C3 19.2091 4.79086 21 7 21H17C19.2091 21 21 19.2091 21 17V7ZM9.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.75C8.94036 6.75 9.5 7.30964 9.5 8ZM9.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.75C8.94036 10.75 9.5 11.3096 9.5 12ZM8.25 17.25C8.94036 17.25 9.5 16.6904 9.5 16C9.5 15.3096 8.94036 14.75 8.25 14.75C7.55964 14.75 7 15.3096 7 16C7 16.6904 7.55964 17.25 8.25 17.25Z\"\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,SAAS,UACT,SAAS,UACT,EAAE,giBACF,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 { Path } from \"react-native-svg\";\n\nexport const IconListBullets: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4.5 16.5C5.32843 16.5 6 17.1716 6 18C6 18.8284 5.32843 19.5 4.5 19.5C3.67157 19.5 3 18.8284 3 18C3 17.1716 3.67157 16.5 4.5 16.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20 17C20.5523 17 21 17.4477 21 18C21 18.5523 20.5523 19 20 19H10C9.44772 19 9 18.5523 9 18C9 17.4477 9.44772 17 10 17H20Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4.5 10.5C5.32843 10.5 6 11.1716 6 12C6 12.8284 5.32843 13.5 4.5 13.5C3.67157 13.5 3 12.8284 3 12C3 11.1716 3.67157 10.5 4.5 10.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20 11C20.5523 11 21 11.4477 21 12C21 12.5523 20.5523 13 20 13H10C9.44772 13 9 12.5523 9 12C9 11.4477 9.44772 11 10 11H20Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4.5 4.5C5.32843 4.5 6 5.17157 6 6C6 6.82843 5.32843 7.5 4.5 7.5C3.67157 7.5 3 6.82843 3 6C3 5.17157 3.67157 4.5 4.5 4.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20 5C20.5523 5 21 5.44772 21 6C21 6.55228 20.5523 7 20 7H10C9.44772 7 9 6.55228 9 6C9 5.44772 9.44772 5 10 5H20Z\"\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,qIACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6HACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qIACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6HACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4HACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oHACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","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 i=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!v.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(p=B(o,t))||p.enumerable});return r};var a=(r,o,e)=>(e=r!=null?i(d(r)):{},l(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),P=r=>l(n({},"__esModule",{value:!0}),r);var S={};x(S,{IconListBulletsSquare:()=>u,default:()=>g});module.exports=P(S);var C=a(require("react"));var s=a(require("react")),m=require("react-native-svg"),c=({children:r,size:o=24,...e})=>s.default.createElement(m.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),u=r=>C.default.createElement(c,{...r},C.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 7C21 4.79086 19.2091 3 17 3H7C4.79086 3 3 4.79086 3 7V17C3 19.2091 4.79086 21 7 21H17C19.2091 21 21 19.2091 21 17V7ZM9.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.75C8.94036 6.75 9.5 7.30964 9.5 8ZM9.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.75C8.94036 10.75 9.5 11.3096 9.5 12ZM8.25 17.25C8.94036 17.25 9.5 16.6904 9.5 16C9.5 15.3096 8.94036 14.75 8.25 14.75C7.55964 14.75 7 15.3096 7 16C7 16.6904 7.55964 17.25 8.25 17.25Z",fill:"currentColor"})),g=u;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 fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M21 7C21 4.79086 19.2091 3 17 3H7C4.79086 3 3 4.79086 3 7V17C3 19.2091 4.79086 21 7 21H17C19.2091 21 21 19.2091 21 17V7ZM9.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.75C8.94036 6.75 9.5 7.30964 9.5 8ZM9.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.75C8.94036 10.75 9.5 11.3096 9.5 12ZM8.25 17.25C8.94036 17.25 9.5 16.6904 9.5 16C9.5 15.3096 8.94036 14.75 8.25 14.75C7.55964 14.75 7 15.3096 7 16C7 16.6904 7.55964 17.25 8.25 17.25Z\"\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,SAAS,UACT,SAAS,UACT,EAAE,giBACF,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 t from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({children:o,size:r=24,...n})=>C.createElement(p,{...n,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 l}from"react-native-svg";var a=o=>t.createElement(e,{...o},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 7C21 4.79086 19.2091 3 17 3H7C4.79086 3 3 4.79086 3 7V17C3 19.2091 4.79086 21 7 21H17C19.2091 21 21 19.2091 21 17V7ZM9.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.75C8.94036 6.75 9.5 7.30964 9.5 8ZM9.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.75C8.94036 10.75 9.5 11.3096 9.5 12ZM8.25 17.25C8.94036 17.25 9.5 16.6904 9.5 16C9.5 15.3096 8.94036 14.75 8.25 14.75C7.55964 14.75 7 15.3096 7 16C7 16.6904 7.55964 17.25 8.25 17.25Z",fill:"currentColor"})),v=a;export{a as IconListBulletsSquare,v 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 fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M21 7C21 4.79086 19.2091 3 17 3H7C4.79086 3 3 4.79086 3 7V17C3 19.2091 4.79086 21 7 21H17C19.2091 21 21 19.2091 21 17V7ZM9.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.75C8.94036 6.75 9.5 7.30964 9.5 8ZM9.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.75C8.94036 10.75 9.5 11.3096 9.5 12ZM8.25 17.25C8.94036 17.25 9.5 16.6904 9.5 16C9.5 15.3096 8.94036 14.75 8.25 14.75C7.55964 14.75 7 15.3096 7 16C7 16.6904 7.55964 17.25 8.25 17.25Z\"\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,SAAS,UACT,SAAS,UACT,EAAE,giBACF,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 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 e of B(o))!d.call(r,e)&&e!==C&&l(r,e,{get:()=>o[e],enumerable:!(p=V(o,e))||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 v={};x(v,{IconVoiceLow:()=>c,default:()=>g});module.exports=P(v);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 t=require("react-native-svg"),c=r=>n.default.createElement(a,{...r},n.default.createElement(t.Path,{d:"M8 6C8.55228 6 9 6.44772 9 7V17C9 17.5523 8.55228 18 8 18C7.44772 18 7 17.5523 7 17V7C7 6.44772 7.44772 6 8 6Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M16 8C16.5523 8 17 8.44772 17 9V15C17 15.5523 16.5523 16 16 16C15.4477 16 15 15.5523 15 15V9C15 8.44772 15.4477 8 16 8Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M12 10C12.5523 10 13 10.4477 13 11V13C13 13.5523 12.5523 14 12 14C11.4477 14 11 13.5523 11 13V11C11 10.4477 11.4477 10 12 10Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M4 10.5C4.55228 10.5 5 10.9477 5 11.5V12.5C5 13.0523 4.55228 13.5 4 13.5C3.44772 13.5 3 13.0523 3 12.5V11.5C3 10.9477 3.44772 10.5 4 10.5Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M20 10.5C20.5523 10.5 21 10.9477 21 11.5V12.5C21 13.0523 20.5523 13.5 20 13.5C19.4477 13.5 19 13.0523 19 12.5V11.5C19 10.9477 19.4477 10.5 20 10.5Z",fill:"currentColor"})),g=c;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 6C8.55228 6 9 6.44772 9 7V17C9 17.5523 8.55228 18 8 18C7.44772 18 7 17.5523 7 17V7C7 6.44772 7.44772 6 8 6Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M16 8C16.5523 8 17 8.44772 17 9V15C17 15.5523 16.5523 16 16 16C15.4477 16 15 15.5523 15 15V9C15 8.44772 15.4477 8 16 8Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12 10C12.5523 10 13 10.4477 13 11V13C13 13.5523 12.5523 14 12 14C11.4477 14 11 13.5523 11 13V11C11 10.4477 11.4477 10 12 10Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4 10.5C4.55228 10.5 5 10.9477 5 11.5V12.5C5 13.0523 4.55228 13.5 4 13.5C3.44772 13.5 3 13.0523 3 12.5V11.5C3 10.9477 3.44772 10.5 4 10.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20 10.5C20.5523 10.5 21 10.9477 21 11.5V12.5C21 13.0523 20.5523 13.5 20 13.5C19.4477 13.5 19 13.0523 19 12.5V11.5C19 10.9477 19.4477 10.5 20 10.5Z\"\n fill=\"currentColor\"\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,iHACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0HACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gIACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6IACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sJACF,KAAK,eACP,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 l from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:r=24,...e})=>l.createElement(p,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n);import{Path as C}from"react-native-svg";var f=n=>o.createElement(t,{...n},o.createElement(C,{d:"M8 6C8.55228 6 9 6.44772 9 7V17C9 17.5523 8.55228 18 8 18C7.44772 18 7 17.5523 7 17V7C7 6.44772 7.44772 6 8 6Z",fill:"currentColor"}),o.createElement(C,{d:"M16 8C16.5523 8 17 8.44772 17 9V15C17 15.5523 16.5523 16 16 16C15.4477 16 15 15.5523 15 15V9C15 8.44772 15.4477 8 16 8Z",fill:"currentColor"}),o.createElement(C,{d:"M12 10C12.5523 10 13 10.4477 13 11V13C13 13.5523 12.5523 14 12 14C11.4477 14 11 13.5523 11 13V11C11 10.4477 11.4477 10 12 10Z",fill:"currentColor"}),o.createElement(C,{d:"M4 10.5C4.55228 10.5 5 10.9477 5 11.5V12.5C5 13.0523 4.55228 13.5 4 13.5C3.44772 13.5 3 13.0523 3 12.5V11.5C3 10.9477 3.44772 10.5 4 10.5Z",fill:"currentColor"}),o.createElement(C,{d:"M20 10.5C20.5523 10.5 21 10.9477 21 11.5V12.5C21 13.0523 20.5523 13.5 20 13.5C19.4477 13.5 19 13.0523 19 12.5V11.5C19 10.9477 19.4477 10.5 20 10.5Z",fill:"currentColor"})),d=f;export{f as IconVoiceLow,d 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 6C8.55228 6 9 6.44772 9 7V17C9 17.5523 8.55228 18 8 18C7.44772 18 7 17.5523 7 17V7C7 6.44772 7.44772 6 8 6Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M16 8C16.5523 8 17 8.44772 17 9V15C17 15.5523 16.5523 16 16 16C15.4477 16 15 15.5523 15 15V9C15 8.44772 15.4477 8 16 8Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12 10C12.5523 10 13 10.4477 13 11V13C13 13.5523 12.5523 14 12 14C11.4477 14 11 13.5523 11 13V11C11 10.4477 11.4477 10 12 10Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4 10.5C4.55228 10.5 5 10.9477 5 11.5V12.5C5 13.0523 4.55228 13.5 4 13.5C3.44772 13.5 3 13.0523 3 12.5V11.5C3 10.9477 3.44772 10.5 4 10.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20 10.5C20.5523 10.5 21 10.9477 21 11.5V12.5C21 13.0523 20.5523 13.5 20 13.5C19.4477 13.5 19 13.0523 19 12.5V11.5C19 10.9477 19.4477 10.5 20 10.5Z\"\n fill=\"currentColor\"\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,iHACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0HACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gIACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6IACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sJACF,KAAK,eACP,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-filled-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": "on",
12302
+ "radius": "3",
12303
+ "stroke": "2"
12304
+ },
12305
+ "createdAt": "2026-01-17T09:03:18.498678+00:00",
12306
+ "packageName": "round-filled-radius-3-stroke-2",
12307
+ "componentName": "IconIconists"
12308
+ },
12295
12309
  {
12296
12310
  "category": "Devices & Signals",
12297
12311
  "svg": "<path d=\"M6 3C3.79086 3 2 4.79086 2 7V12H22V7C22 4.79086 20.2091 3 18 3H6Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 14H22C22 16.2091 20.2091 18 18 18H15V21C15 21.5523 14.5523 22 14 22H10C9.44772 22 9 21.5523 9 21V18H6C3.79086 18 2 16.2091 2 14ZM11 18V20H13V18H11Z\" fill=\"currentColor\"/>",
@@ -13510,10 +13524,24 @@
13510
13524
  "packageName": "round-filled-radius-3-stroke-2",
13511
13525
  "componentName": "IconLiquidGlass"
13512
13526
  },
13527
+ {
13528
+ "category": "Interface General",
13529
+ "svg": "<path d=\"M4.5 16.5C5.32843 16.5 6 17.1716 6 18C6 18.8284 5.32843 19.5 4.5 19.5C3.67157 19.5 3 18.8284 3 18C3 17.1716 3.67157 16.5 4.5 16.5Z\" fill=\"currentColor\"/><path d=\"M20 17C20.5523 17 21 17.4477 21 18C21 18.5523 20.5523 19 20 19H10C9.44772 19 9 18.5523 9 18C9 17.4477 9.44772 17 10 17H20Z\" fill=\"currentColor\"/><path d=\"M4.5 10.5C5.32843 10.5 6 11.1716 6 12C6 12.8284 5.32843 13.5 4.5 13.5C3.67157 13.5 3 12.8284 3 12C3 11.1716 3.67157 10.5 4.5 10.5Z\" fill=\"currentColor\"/><path d=\"M20 11C20.5523 11 21 11.4477 21 12C21 12.5523 20.5523 13 20 13H10C9.44772 13 9 12.5523 9 12C9 11.4477 9.44772 11 10 11H20Z\" fill=\"currentColor\"/><path d=\"M4.5 4.5C5.32843 4.5 6 5.17157 6 6C6 6.82843 5.32843 7.5 4.5 7.5C3.67157 7.5 3 6.82843 3 6C3 5.17157 3.67157 4.5 4.5 4.5Z\" fill=\"currentColor\"/><path d=\"M20 5C20.5523 5 21 5.44772 21 6C21 6.55228 20.5523 7 20 7H10C9.44772 7 9 6.55228 9 6C9 5.44772 9.44772 5 10 5H20Z\" fill=\"currentColor\"/>",
13530
+ "iconName": "list-bullets",
13531
+ "variant": {
13532
+ "join": "round",
13533
+ "filled": "on",
13534
+ "radius": "3",
13535
+ "stroke": "2"
13536
+ },
13537
+ "createdAt": "2026-01-17T09:03:18.498678+00:00",
13538
+ "packageName": "round-filled-radius-3-stroke-2",
13539
+ "componentName": "IconListBullets"
13540
+ },
13513
13541
  {
13514
13542
  "category": "Folders & Files",
13515
13543
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 7C21 4.79086 19.2091 3 17 3H7C4.79086 3 3 4.79086 3 7V17C3 19.2091 4.79086 21 7 21H17C19.2091 21 21 19.2091 21 17V7ZM9.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.75C8.94036 6.75 9.5 7.30964 9.5 8ZM9.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.75C8.94036 10.75 9.5 11.3096 9.5 12ZM8.25 17.25C8.94036 17.25 9.5 16.6904 9.5 16C9.5 15.3096 8.94036 14.75 8.25 14.75C7.55964 14.75 7 15.3096 7 16C7 16.6904 7.55964 17.25 8.25 17.25Z\" fill=\"currentColor\"/>",
13516
- "iconName": "list-bullets",
13544
+ "iconName": "list-bullets-square",
13517
13545
  "variant": {
13518
13546
  "join": "round",
13519
13547
  "filled": "on",
@@ -13522,7 +13550,7 @@
13522
13550
  },
13523
13551
  "createdAt": "2025-02-15T21:11:33.829321+00:00",
13524
13552
  "packageName": "round-filled-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-filled-radius-3-stroke-2",
22877
22905
  "componentName": "IconVoiceHigh"
22878
22906
  },
22907
+ {
22908
+ "category": "Sound & Music",
22909
+ "svg": "<path d=\"M8 6C8.55228 6 9 6.44772 9 7V17C9 17.5523 8.55228 18 8 18C7.44772 18 7 17.5523 7 17V7C7 6.44772 7.44772 6 8 6Z\" fill=\"currentColor\"/><path d=\"M16 8C16.5523 8 17 8.44772 17 9V15C17 15.5523 16.5523 16 16 16C15.4477 16 15 15.5523 15 15V9C15 8.44772 15.4477 8 16 8Z\" fill=\"currentColor\"/><path d=\"M12 10C12.5523 10 13 10.4477 13 11V13C13 13.5523 12.5523 14 12 14C11.4477 14 11 13.5523 11 13V11C11 10.4477 11.4477 10 12 10Z\" fill=\"currentColor\"/><path d=\"M4 10.5C4.55228 10.5 5 10.9477 5 11.5V12.5C5 13.0523 4.55228 13.5 4 13.5C3.44772 13.5 3 13.0523 3 12.5V11.5C3 10.9477 3.44772 10.5 4 10.5Z\" fill=\"currentColor\"/><path d=\"M20 10.5C20.5523 10.5 21 10.9477 21 11.5V12.5C21 13.0523 20.5523 13.5 20 13.5C19.4477 13.5 19 13.0523 19 12.5V11.5C19 10.9477 19.4477 10.5 20 10.5Z\" fill=\"currentColor\"/>",
22910
+ "iconName": "voice-low, wave",
22911
+ "variant": {
22912
+ "join": "round",
22913
+ "filled": "on",
22914
+ "radius": "3",
22915
+ "stroke": "2"
22916
+ },
22917
+ "createdAt": "2026-01-17T09:03:18.498678+00:00",
22918
+ "packageName": "round-filled-radius-3-stroke-2",
22919
+ "componentName": "IconVoiceLow"
22920
+ },
22879
22921
  {
22880
22922
  "category": "Sound & Music",
22881
22923
  "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
@@ -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-filled-radius-3-stroke-2",
3
- "version": "1.1.92",
3
+ "version": "1.1.94",
4
4
  "style": "round-filled-radius-3-stroke-2",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-3-stroke-2/IconHome';",
@@ -11,7 +11,7 @@
11
11
  "withProps": "<IconHome size={32} color=\"#007AFF\" />",
12
12
  "central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
13
13
  },
14
- "totalIcons": 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";