@central-icons-react-native/round-outlined-radius-3-stroke-1 1.1.92 → 1.1.95
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.
- package/IconArrowLoopDownLeft/index.d.ts +4 -0
- package/IconArrowLoopDownLeft/index.js +2 -0
- package/IconArrowLoopDownLeft/index.js.map +1 -0
- package/IconArrowLoopDownLeft/index.mjs +2 -0
- package/IconArrowLoopDownLeft/index.mjs.map +1 -0
- package/IconBag3/index.d.ts +4 -0
- package/IconBag3/index.js +2 -0
- package/IconBag3/index.js.map +1 -0
- package/IconBag3/index.mjs +2 -0
- package/IconBag3/index.mjs.map +1 -0
- package/IconFolders2/index.d.ts +4 -0
- package/IconFolders2/index.js +2 -0
- package/IconFolders2/index.js.map +1 -0
- package/IconFolders2/index.mjs +2 -0
- package/IconFolders2/index.mjs.map +1 -0
- package/IconIconists/index.d.ts +4 -0
- package/IconIconists/index.js +2 -0
- package/IconIconists/index.js.map +1 -0
- package/IconIconists/index.mjs +2 -0
- package/IconIconists/index.mjs.map +1 -0
- package/IconListBullets/index.js +1 -1
- package/IconListBullets/index.js.map +1 -1
- package/IconListBullets/index.mjs +1 -1
- package/IconListBullets/index.mjs.map +1 -1
- package/IconListBulletsSquare/index.d.ts +4 -0
- package/IconListBulletsSquare/index.js +2 -0
- package/IconListBulletsSquare/index.js.map +1 -0
- package/IconListBulletsSquare/index.mjs +2 -0
- package/IconListBulletsSquare/index.mjs.map +1 -0
- package/IconVoiceLow/index.d.ts +4 -0
- package/IconVoiceLow/index.js +2 -0
- package/IconVoiceLow/index.js.map +1 -0
- package/IconVoiceLow/index.mjs +2 -0
- package/IconVoiceLow/index.mjs.map +1 -0
- package/README.md +7 -1
- package/filtered-icons.json +86 -2
- package/icons/index.d.ts +6 -0
- package/icons-index.json +21 -9
- package/index.d.ts +6 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/tsx-icons.json +44 -2
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var t=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,L=Object.prototype.hasOwnProperty;var x=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0})},C=(o,r,e,a)=>{if(r&&typeof r=="object"||typeof r=="function")for(let n of B(r))!L.call(o,n)&&n!==e&&t(o,n,{get:()=>r[n],enumerable:!(a=d(r,n))||a.enumerable});return o};var m=(o,r,e)=>(e=o!=null?f(I(o)):{},C(r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e,o)),P=o=>C(t({},"__esModule",{value:!0}),o);var k={};x(k,{IconArrowLoopDownLeft:()=>u,default:()=>g});module.exports=P(k);var p=m(require("react"));var c=m(require("react")),i=require("react-native-svg"),l=({children:o,size:r=24,...e})=>c.default.createElement(i.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 s=require("react-native-svg"),u=o=>p.default.createElement(l,{...o},p.default.createElement(s.Path,{d:"M12.5 17.5C16.366 17.5 19.5 14.366 19.5 10.5C19.5 6.63401 16.366 3.5 12.5 3.5C8.63401 3.5 5.5 6.63401 5.5 10.5V20",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(s.Path,{d:"M2 17L5.5 20.5L9 17",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),g=u;0&&(module.exports={IconArrowLoopDownLeft});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconArrowLoopDownLeft/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 IconArrowLoopDownLeft: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12.5 17.5C16.366 17.5 19.5 14.366 19.5 10.5C19.5 6.63401 16.366 3.5 12.5 3.5C8.63401 3.5 5.5 6.63401 5.5 10.5V20\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2 17L5.5 20.5L9 17\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowLoopDownLeft;\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,oHACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconArrowLoopDownLeft_exports","__export","IconArrowLoopDownLeft","IconArrowLoopDownLeft_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconArrowLoopDownLeft","props","React","CentralIconBase","IconArrowLoopDownLeft_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import s from"react";import{Svg as a}from"react-native-svg";var n=({children:r,size:o=24,...p})=>s.createElement(a,{...p,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 t}from"react-native-svg";var C=r=>e.createElement(n,{...r},e.createElement(t,{d:"M12.5 17.5C16.366 17.5 19.5 14.366 19.5 10.5C19.5 6.63401 16.366 3.5 12.5 3.5C8.63401 3.5 5.5 6.63401 5.5 10.5V20",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(t,{d:"M2 17L5.5 20.5L9 17",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),L=C;export{C as IconArrowLoopDownLeft,L as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconArrowLoopDownLeft/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 IconArrowLoopDownLeft: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12.5 17.5C16.366 17.5 19.5 14.366 19.5 10.5C19.5 6.63401 16.366 3.5 12.5 3.5C8.63401 3.5 5.5 6.63401 5.5 10.5V20\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2 17L5.5 20.5L9 17\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowLoopDownLeft;\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,oHACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconArrowLoopDownLeft","props","React","CentralIconBase","IconArrowLoopDownLeft_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var s=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var L=(r,o)=>{for(var n in o)s(r,n,{get:o[n],enumerable:!0})},a=(r,o,n,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of f(o))!I.call(r,t)&&t!==n&&s(r,t,{get:()=>o[t],enumerable:!(C=k(o,t))||C.enumerable});return r};var u=(r,o,n)=>(n=r!=null?d(B(r)):{},a(o||!r||!r.__esModule?s(n,"default",{value:r,enumerable:!0}):n,r)),g=r=>a(s({},"__esModule",{value:!0}),r);var P={};L(P,{IconBag3:()=>m,default:()=>x});module.exports=g(P);var e=u(require("react"));var i=u(require("react")),l=require("react-native-svg"),c=({children:r,size:o=24,...n})=>i.default.createElement(l.Svg,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),m=r=>e.default.createElement(c,{...r},e.default.createElement(p.Path,{d:"M18.5 20.5C20.1569 20.5 21.5 19.1569 21.5 17.5V9.5C21.5 7.84315 20.1569 6.5 18.5 6.5H5.5C3.84315 6.5 2.5 7.84315 2.5 9.5V17.5C2.5 19.1569 3.84315 20.5 5.5 20.5H18.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(p.Path,{d:"M7.5 6.5V5.5C7.5 3.84315 8.84315 2.5 10.5 2.5H13.5C15.1569 2.5 16.5 3.84315 16.5 5.5V6.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(p.Path,{d:"M12 12V14",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(p.Path,{d:"M2.5 11L12 13L21.5 11",stroke:"currentColor"})),x=m;0&&(module.exports={IconBag3});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBag3/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 IconBag3: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M18.5 20.5C20.1569 20.5 21.5 19.1569 21.5 17.5V9.5C21.5 7.84315 20.1569 6.5 18.5 6.5H5.5C3.84315 6.5 2.5 7.84315 2.5 9.5V17.5C2.5 19.1569 3.84315 20.5 5.5 20.5H18.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7.5 6.5V5.5C7.5 3.84315 8.84315 2.5 10.5 2.5H13.5C15.1569 2.5 16.5 3.84315 16.5 5.5V6.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 12V14\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path d=\"M2.5 11L12 13L21.5 11\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconBag3;\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,cAAAE,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,EAAsCC,GAE/C,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,wKACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2FACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,YACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,wBAAwB,OAAO,eAAe,CACxD,EAIGE,EAAQJ","names":["IconBag3_exports","__export","IconBag3","IconBag3_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconBag3","props","React","CentralIconBase","IconBag3_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import s from"react";import{Svg as C}from"react-native-svg";var t=({children:e,size:r=24,...p})=>s.createElement(C,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as n}from"react-native-svg";var a=e=>o.createElement(t,{...e},o.createElement(n,{d:"M18.5 20.5C20.1569 20.5 21.5 19.1569 21.5 17.5V9.5C21.5 7.84315 20.1569 6.5 18.5 6.5H5.5C3.84315 6.5 2.5 7.84315 2.5 9.5V17.5C2.5 19.1569 3.84315 20.5 5.5 20.5H18.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M7.5 6.5V5.5C7.5 3.84315 8.84315 2.5 10.5 2.5H13.5C15.1569 2.5 16.5 3.84315 16.5 5.5V6.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M12 12V14",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M2.5 11L12 13L21.5 11",stroke:"currentColor"})),I=a;export{a as IconBag3,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBag3/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 IconBag3: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M18.5 20.5C20.1569 20.5 21.5 19.1569 21.5 17.5V9.5C21.5 7.84315 20.1569 6.5 18.5 6.5H5.5C3.84315 6.5 2.5 7.84315 2.5 9.5V17.5C2.5 19.1569 3.84315 20.5 5.5 20.5H18.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7.5 6.5V5.5C7.5 3.84315 8.84315 2.5 10.5 2.5H13.5C15.1569 2.5 16.5 3.84315 16.5 5.5V6.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 12V14\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path d=\"M2.5 11L12 13L21.5 11\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconBag3;\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,EAAsCC,GAE/CC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,wKACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2FACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,YACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,wBAAwB,OAAO,eAAe,CACxD,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconBag3","props","React","CentralIconBase","IconBag3_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var t=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of B(o))!x.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(s=f(o,n))||s.enumerable});return r};var l=(r,o,e)=>(e=r!=null?d(I(r)):{},a(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>a(t({},"__esModule",{value:!0}),r);var v={};P(v,{IconFolders2:()=>u,default:()=>k});module.exports=g(v);var p=l(require("react"));var m=l(require("react")),c=require("react-native-svg"),i=({children:r,size:o=24,...e})=>m.default.createElement(c.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var C=require("react-native-svg"),u=r=>p.default.createElement(i,{...r},p.default.createElement(C.Path,{d:"M4.5 14.5V5.5C4.5 4.39543 5.39543 3.5 6.5 3.5H9.17157C9.70201 3.5 10.2107 3.71071 10.5858 4.08579L11.9142 5.41421C12.2893 5.78929 12.798 6 13.3284 6H19.5C20.6046 6 21.5 6.89543 21.5 8V14.5C21.5 16.1569 20.1569 17.5 18.5 17.5H7.5C5.84315 17.5 4.5 16.1569 4.5 14.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(C.Path,{d:"M2.5 5.5V16.5C2.5 18.1569 3.84315 19.5 5.5 19.5H19.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),k=u;0&&(module.exports={IconFolders2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFolders2/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 IconFolders2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4.5 14.5V5.5C4.5 4.39543 5.39543 3.5 6.5 3.5H9.17157C9.70201 3.5 10.2107 3.71071 10.5858 4.08579L11.9142 5.41421C12.2893 5.78929 12.798 6 13.3284 6H19.5C20.6046 6 21.5 6.89543 21.5 8V14.5C21.5 16.1569 20.1569 17.5 18.5 17.5H7.5C5.84315 17.5 4.5 16.1569 4.5 14.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2.5 5.5V16.5C2.5 18.1569 3.84315 19.5 5.5 19.5H19.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFolders2;\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,0QACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uDACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconFolders2_exports","__export","IconFolders2","IconFolders2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFolders2","props","React","CentralIconBase","IconFolders2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import C from"react";import{Svg as s}from"react-native-svg";var n=({children:o,size:r=24,...p})=>C.createElement(s,{...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 t}from"react-native-svg";var a=o=>e.createElement(n,{...o},e.createElement(t,{d:"M4.5 14.5V5.5C4.5 4.39543 5.39543 3.5 6.5 3.5H9.17157C9.70201 3.5 10.2107 3.71071 10.5858 4.08579L11.9142 5.41421C12.2893 5.78929 12.798 6 13.3284 6H19.5C20.6046 6 21.5 6.89543 21.5 8V14.5C21.5 16.1569 20.1569 17.5 18.5 17.5H7.5C5.84315 17.5 4.5 16.1569 4.5 14.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(t,{d:"M2.5 5.5V16.5C2.5 18.1569 3.84315 19.5 5.5 19.5H19.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),x=a;export{a as IconFolders2,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFolders2/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 IconFolders2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4.5 14.5V5.5C4.5 4.39543 5.39543 3.5 6.5 3.5H9.17157C9.70201 3.5 10.2107 3.71071 10.5858 4.08579L11.9142 5.41421C12.2893 5.78929 12.798 6 13.3284 6H19.5C20.6046 6 21.5 6.89543 21.5 8V14.5C21.5 16.1569 20.1569 17.5 18.5 17.5H7.5C5.84315 17.5 4.5 16.1569 4.5 14.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2.5 5.5V16.5C2.5 18.1569 3.84315 19.5 5.5 19.5H19.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFolders2;\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,0QACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,uDACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFolders2","props","React","CentralIconBase","IconFolders2_default"]}
|
|
@@ -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"]}
|
package/IconListBullets/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var f=Object.create;var p=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var y=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},s=(r,o,e,c)=>{if(o&&typeof o=="object"||typeof o=="function")for(let l of B(o))!I.call(r,l)&&l!==e&&p(r,l,{get:()=>o[l],enumerable:!(c=x(o,l))||c.enumerable});return r};var C=(r,o,e)=>(e=r!=null?f(d(r)):{},s(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),L=r=>s(p({},"__esModule",{value:!0}),r);var g={};y(g,{IconListBullets:()=>m,default:()=>P});module.exports=L(g);var n=C(require("react"));var u=C(require("react")),i=require("react-native-svg"),a=({children:r,size:o=24,...e})=>u.default.createElement(i.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var t=require("react-native-svg"),m=r=>n.default.createElement(a,{...r},n.default.createElement(t.Path,{d:"M8.5 6.5L20.5 6.5",stroke:"currentColor",strokeLinecap:"round"}),n.default.createElement(t.Circle,{cx:"4",cy:"6.5",r:"1",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M8.5 12L20.5 12",stroke:"currentColor",strokeLinecap:"round"}),n.default.createElement(t.Circle,{cx:"4",cy:"12",r:"1",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M8.5 17.5L20.5 17.5",stroke:"currentColor",strokeLinecap:"round"}),n.default.createElement(t.Circle,{cx:"4",cy:"17.5",r:"1",fill:"currentColor"})),P=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
|
|
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 d=\"M8.5 6.5L20.5 6.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Circle cx=\"4\" cy=\"6.5\" r=\"1\" fill=\"currentColor\" />\n <Path d=\"M8.5 12L20.5 12\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Circle cx=\"4\" cy=\"12\" r=\"1\" fill=\"currentColor\" />\n <Path\n d=\"M8.5 17.5L20.5 17.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n <Circle cx=\"4\" cy=\"17.5\" r=\"1\" 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,QAAK,EAAE,oBAAoB,OAAO,eAAe,cAAc,QAAQ,EACxE,EAAAA,QAAA,cAAC,UAAO,GAAG,IAAI,GAAG,MAAM,EAAE,IAAI,KAAK,eAAe,EAClD,EAAAA,QAAA,cAAC,QAAK,EAAE,kBAAkB,OAAO,eAAe,cAAc,QAAQ,EACtE,EAAAA,QAAA,cAAC,UAAO,GAAG,IAAI,GAAG,KAAK,EAAE,IAAI,KAAK,eAAe,EACjD,EAAAA,QAAA,cAAC,QACC,EAAE,sBACF,OAAO,eACP,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,UAAO,GAAG,IAAI,GAAG,OAAO,EAAE,IAAI,KAAK,eAAe,CACrD,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
|
|
1
|
+
import r from"react";import c from"react";import{Svg as s}from"react-native-svg";var l=({children:e,size:o=24,...p})=>c.createElement(s,{...p,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},e);import{Circle as n,Path as t}from"react-native-svg";var C=e=>r.createElement(l,{...e},r.createElement(t,{d:"M8.5 6.5L20.5 6.5",stroke:"currentColor",strokeLinecap:"round"}),r.createElement(n,{cx:"4",cy:"6.5",r:"1",fill:"currentColor"}),r.createElement(t,{d:"M8.5 12L20.5 12",stroke:"currentColor",strokeLinecap:"round"}),r.createElement(n,{cx:"4",cy:"12",r:"1",fill:"currentColor"}),r.createElement(t,{d:"M8.5 17.5L20.5 17.5",stroke:"currentColor",strokeLinecap:"round"}),r.createElement(n,{cx:"4",cy:"17.5",r:"1",fill:"currentColor"})),y=C;export{C as IconListBullets,y 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
|
|
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 d=\"M8.5 6.5L20.5 6.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Circle cx=\"4\" cy=\"6.5\" r=\"1\" fill=\"currentColor\" />\n <Path d=\"M8.5 12L20.5 12\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Circle cx=\"4\" cy=\"12\" r=\"1\" fill=\"currentColor\" />\n <Path\n d=\"M8.5 17.5L20.5 17.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n <Circle cx=\"4\" cy=\"17.5\" r=\"1\" 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,CAAK,EAAE,oBAAoB,OAAO,eAAe,cAAc,QAAQ,EACxEG,EAAA,cAACJ,EAAA,CAAO,GAAG,IAAI,GAAG,MAAM,EAAE,IAAI,KAAK,eAAe,EAClDI,EAAA,cAACH,EAAA,CAAK,EAAE,kBAAkB,OAAO,eAAe,cAAc,QAAQ,EACtEG,EAAA,cAACJ,EAAA,CAAO,GAAG,IAAI,GAAG,KAAK,EAAE,IAAI,KAAK,eAAe,EACjDI,EAAA,cAACH,EAAA,CACC,EAAE,sBACF,OAAO,eACP,cAAc,QAChB,EACAG,EAAA,cAACJ,EAAA,CAAO,GAAG,IAAI,GAAG,OAAO,EAAE,IAAI,KAAK,eAAe,CACrD,EAIGM,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconListBullets","props","React","CentralIconBase","IconListBullets_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var c=Object.create;var l=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var d=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 I(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(d(r)):{},s(o||!r||!r.__esModule?l(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>s(l({},"__esModule",{value:!0}),r);var S={};P(S,{IconListBulletsSquare:()=>i,default:()=>v});module.exports=g(S);var e=a(require("react"));var m=a(require("react")),u=require("react-native-svg"),f=({children:r,size:o=24,...t})=>m.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 C=require("react-native-svg"),i=r=>e.default.createElement(f,{...r},e.default.createElement(C.Path,{d:"M20.5 6.5C20.5 4.84315 19.1569 3.5 17.5 3.5H6.5C4.84315 3.5 3.5 4.84315 3.5 6.5V17.5C3.5 19.1569 4.84315 20.5 6.5 20.5H17.5C19.1569 20.5 20.5 19.1569 20.5 17.5V6.5Z",stroke:"currentColor",strokeLinejoin:"round"}),e.default.createElement(C.Path,{d:"M7.25 15C7.94036 15 8.5 15.5596 8.5 16.25C8.5 16.9404 7.94036 17.5 7.25 17.5C6.55964 17.5 6 16.9404 6 16.25C6 15.5596 6.55964 15 7.25 15Z",fill:"currentColor"}),e.default.createElement(C.Path,{d:"M7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75Z",fill:"currentColor"}),e.default.createElement(C.Path,{d:"M7.25 6.5C7.94036 6.5 8.5 7.05964 8.5 7.75C8.5 8.44036 7.94036 9 7.25 9C6.55964 9 6 8.44036 6 7.75C6 7.05964 6.55964 6.5 7.25 6.5Z",fill:"currentColor"})),v=i;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.5 6.5C20.5 4.84315 19.1569 3.5 17.5 3.5H6.5C4.84315 3.5 3.5 4.84315 3.5 6.5V17.5C3.5 19.1569 4.84315 20.5 6.5 20.5H17.5C19.1569 20.5 20.5 19.1569 20.5 17.5V6.5Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7.25 15C7.94036 15 8.5 15.5596 8.5 16.25C8.5 16.9404 7.94036 17.5 7.25 17.5C6.55964 17.5 6 16.9404 6 16.25C6 15.5596 6.55964 15 7.25 15Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7.25 6.5C7.94036 6.5 8.5 7.05964 8.5 7.75C8.5 8.44036 7.94036 9 7.25 9C6.55964 9 6 8.44036 6 7.75C6 7.05964 6.55964 6.5 7.25 6.5Z\"\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,uKACF,OAAO,eACP,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4IACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qJACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qIACF,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.5 6.5C20.5 4.84315 19.1569 3.5 17.5 3.5H6.5C4.84315 3.5 3.5 4.84315 3.5 6.5V17.5C3.5 19.1569 4.84315 20.5 6.5 20.5H17.5C19.1569 20.5 20.5 19.1569 20.5 17.5V6.5Z",stroke:"currentColor",strokeLinejoin:"round"}),o.createElement(t,{d:"M7.25 15C7.94036 15 8.5 15.5596 8.5 16.25C8.5 16.9404 7.94036 17.5 7.25 17.5C6.55964 17.5 6 16.9404 6 16.25C6 15.5596 6.55964 15 7.25 15Z",fill:"currentColor"}),o.createElement(t,{d:"M7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75Z",fill:"currentColor"}),o.createElement(t,{d:"M7.25 6.5C7.94036 6.5 8.5 7.05964 8.5 7.75C8.5 8.44036 7.94036 9 7.25 9C6.55964 9 6 8.44036 6 7.75C6 7.05964 6.55964 6.5 7.25 6.5Z",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.5 6.5C20.5 4.84315 19.1569 3.5 17.5 3.5H6.5C4.84315 3.5 3.5 4.84315 3.5 6.5V17.5C3.5 19.1569 4.84315 20.5 6.5 20.5H17.5C19.1569 20.5 20.5 19.1569 20.5 17.5V6.5Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7.25 15C7.94036 15 8.5 15.5596 8.5 16.25C8.5 16.9404 7.94036 17.5 7.25 17.5C6.55964 17.5 6 16.9404 6 16.25C6 15.5596 6.55964 15 7.25 15Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7.25 6.5C7.94036 6.5 8.5 7.05964 8.5 7.75C8.5 8.44036 7.94036 9 7.25 9C6.55964 9 6 8.44036 6 7.75C6 7.05964 6.55964 6.5 7.25 6.5Z\"\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,uKACF,OAAO,eACP,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4IACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qJACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qIACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconListBulletsSquare","props","React","CentralIconBase","IconListBulletsSquare_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var i=Object.create;var s=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0})},c=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let p of f(o))!I.call(r,p)&&p!==e&&s(r,p,{get:()=>o[p],enumerable:!(a=k(o,p))||a.enumerable});return r};var u=(r,o,e)=>(e=r!=null?i(B(r)):{},c(o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),P=r=>c(s({},"__esModule",{value:!0}),r);var L={};x(L,{IconVoiceLow:()=>d,default:()=>g});module.exports=P(L);var n=u(require("react"));var C=u(require("react")),l=require("react-native-svg"),m=({children:r,size:o=24,...e})=>C.default.createElement(l.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 t=require("react-native-svg"),d=r=>n.default.createElement(m,{...r},n.default.createElement(t.Path,{d:"M7.5 6.5V17.5",stroke:"currentColor",strokeLinecap:"round"}),n.default.createElement(t.Path,{d:"M3.5 11V13",stroke:"currentColor",strokeLinecap:"round"}),n.default.createElement(t.Path,{d:"M12 10.5V13.5",stroke:"currentColor",strokeLinecap:"round"}),n.default.createElement(t.Path,{d:"M16.5 8.5V15.5",stroke:"currentColor",strokeLinecap:"round"}),n.default.createElement(t.Path,{d:"M20.5 11V13",stroke:"currentColor",strokeLinecap:"round"})),g=d;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 d=\"M7.5 6.5V17.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path d=\"M3.5 11V13\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path d=\"M12 10.5V13.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path d=\"M16.5 8.5V15.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path d=\"M20.5 11V13\" stroke=\"currentColor\" strokeLinecap=\"round\" />\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,QAAK,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,EACpE,EAAAA,QAAA,cAAC,QAAK,EAAE,aAAa,OAAO,eAAe,cAAc,QAAQ,EACjE,EAAAA,QAAA,cAAC,QAAK,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,EACpE,EAAAA,QAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,EACrE,EAAAA,QAAA,cAAC,QAAK,EAAE,cAAc,OAAO,eAAe,cAAc,QAAQ,CACpE,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 s from"react";import{Svg as a}from"react-native-svg";var t=({children:n,size:r=24,...p})=>s.createElement(a,{...p,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 e}from"react-native-svg";var c=n=>o.createElement(t,{...n},o.createElement(e,{d:"M7.5 6.5V17.5",stroke:"currentColor",strokeLinecap:"round"}),o.createElement(e,{d:"M3.5 11V13",stroke:"currentColor",strokeLinecap:"round"}),o.createElement(e,{d:"M12 10.5V13.5",stroke:"currentColor",strokeLinecap:"round"}),o.createElement(e,{d:"M16.5 8.5V15.5",stroke:"currentColor",strokeLinecap:"round"}),o.createElement(e,{d:"M20.5 11V13",stroke:"currentColor",strokeLinecap:"round"})),I=c;export{c as IconVoiceLow,I 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 d=\"M7.5 6.5V17.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path d=\"M3.5 11V13\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path d=\"M12 10.5V13.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path d=\"M16.5 8.5V15.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path d=\"M20.5 11V13\" stroke=\"currentColor\" strokeLinecap=\"round\" />\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,CAAK,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,EACpEG,EAAA,cAACH,EAAA,CAAK,EAAE,aAAa,OAAO,eAAe,cAAc,QAAQ,EACjEG,EAAA,cAACH,EAAA,CAAK,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,EACpEG,EAAA,cAACH,EAAA,CAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,EACrEG,EAAA,cAACH,EAAA,CAAK,EAAE,cAAc,OAAO,eAAe,cAAc,QAAQ,CACpE,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconVoiceLow","props","React","CentralIconBase","IconVoiceLow_default"]}
|
package/README.md
CHANGED
|
@@ -251,6 +251,7 @@ Below is a complete list of available icons:
|
|
|
251
251
|
- IconArrowLeftRight
|
|
252
252
|
- IconArrowLeftSquare
|
|
253
253
|
- IconArrowLeftUpCircle
|
|
254
|
+
- IconArrowLoopDownLeft
|
|
254
255
|
- IconArrowPathDown
|
|
255
256
|
- IconArrowPathLeft
|
|
256
257
|
- IconArrowPathRight
|
|
@@ -778,11 +779,12 @@ Below is a complete list of available icons:
|
|
|
778
779
|
- IconFolderPaper
|
|
779
780
|
- IconFolderRestricted
|
|
780
781
|
- IconFolders
|
|
782
|
+
- IconFolders2
|
|
781
783
|
- IconFolderShared
|
|
782
784
|
- IconFolderShield
|
|
783
785
|
- IconFolderUpload
|
|
784
786
|
- IconLibrary
|
|
785
|
-
-
|
|
787
|
+
- IconListBulletsSquare
|
|
786
788
|
- IconMoveFolder
|
|
787
789
|
- IconNote1
|
|
788
790
|
- IconNote2
|
|
@@ -1030,6 +1032,7 @@ Below is a complete list of available icons:
|
|
|
1030
1032
|
- IconLightBulb
|
|
1031
1033
|
- IconLightbulbGlow
|
|
1032
1034
|
- IconLightBulbSimple
|
|
1035
|
+
- IconListBullets
|
|
1033
1036
|
- IconLoader
|
|
1034
1037
|
- IconLoadingCircle
|
|
1035
1038
|
- IconMagnifyingGlass
|
|
@@ -1500,6 +1503,7 @@ Below is a complete list of available icons:
|
|
|
1500
1503
|
- IconGoose
|
|
1501
1504
|
- IconGrok
|
|
1502
1505
|
- IconGumroad
|
|
1506
|
+
- IconIconists
|
|
1503
1507
|
- IconImessage
|
|
1504
1508
|
- IconInstagram
|
|
1505
1509
|
- IconJava
|
|
@@ -1615,6 +1619,7 @@ Below is a complete list of available icons:
|
|
|
1615
1619
|
- IconVocalMicrophone
|
|
1616
1620
|
- IconVoice3
|
|
1617
1621
|
- IconVoiceHigh
|
|
1622
|
+
- IconVoiceLow
|
|
1618
1623
|
- IconVoiceMid
|
|
1619
1624
|
- IconVoiceMode
|
|
1620
1625
|
- IconVoiceRecord
|
|
@@ -1677,6 +1682,7 @@ Below is a complete list of available icons:
|
|
|
1677
1682
|
- IconBackpack
|
|
1678
1683
|
- IconBag
|
|
1679
1684
|
- IconBag2
|
|
1685
|
+
- IconBag3
|
|
1680
1686
|
- IconBalloon
|
|
1681
1687
|
- IconBaymax
|
|
1682
1688
|
- IconBean
|
package/filtered-icons.json
CHANGED
|
@@ -1400,6 +1400,20 @@
|
|
|
1400
1400
|
"packageName": "round-outlined-radius-3-stroke-1",
|
|
1401
1401
|
"componentName": "IconArrowLeftX"
|
|
1402
1402
|
},
|
|
1403
|
+
{
|
|
1404
|
+
"category": "Arrows",
|
|
1405
|
+
"svg": "<path d=\"M12.5 17.5C16.366 17.5 19.5 14.366 19.5 10.5C19.5 6.63401 16.366 3.5 12.5 3.5C8.63401 3.5 5.5 6.63401 5.5 10.5V20\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M2 17L5.5 20.5L9 17\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1406
|
+
"iconName": "arrow-loop-down-left, restore, reset",
|
|
1407
|
+
"variant": {
|
|
1408
|
+
"join": "round",
|
|
1409
|
+
"filled": "off",
|
|
1410
|
+
"radius": "3",
|
|
1411
|
+
"stroke": "1"
|
|
1412
|
+
},
|
|
1413
|
+
"createdAt": "2026-01-22T12:01:00.42597+00:00",
|
|
1414
|
+
"packageName": "round-outlined-radius-3-stroke-1",
|
|
1415
|
+
"componentName": "IconArrowLoopDownLeft"
|
|
1416
|
+
},
|
|
1403
1417
|
{
|
|
1404
1418
|
"category": "Interface General",
|
|
1405
1419
|
"svg": "<path d=\"M12 3.5V15.5M12 3.5L16.5 8M12 3.5L7.5 8M20.5 14.5V17.5C20.5 19.1569 19.1569 20.5 17.5 20.5H6.5C4.84315 20.5 3.5 19.1569 3.5 17.5V14.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -2464,6 +2478,20 @@
|
|
|
2464
2478
|
"packageName": "round-outlined-radius-3-stroke-1",
|
|
2465
2479
|
"componentName": "IconBag2Sparkle"
|
|
2466
2480
|
},
|
|
2481
|
+
{
|
|
2482
|
+
"category": "Things",
|
|
2483
|
+
"svg": "<path d=\"M18.5 20.5C20.1569 20.5 21.5 19.1569 21.5 17.5V9.5C21.5 7.84315 20.1569 6.5 18.5 6.5H5.5C3.84315 6.5 2.5 7.84315 2.5 9.5V17.5C2.5 19.1569 3.84315 20.5 5.5 20.5H18.5Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.5 6.5V5.5C7.5 3.84315 8.84315 2.5 10.5 2.5H13.5C15.1569 2.5 16.5 3.84315 16.5 5.5V6.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 12V14\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M2.5 11L12 13L21.5 11\" stroke=\"currentColor\"/>",
|
|
2484
|
+
"iconName": "bag-3, luggage, suitcase, work",
|
|
2485
|
+
"variant": {
|
|
2486
|
+
"join": "round",
|
|
2487
|
+
"filled": "off",
|
|
2488
|
+
"radius": "3",
|
|
2489
|
+
"stroke": "1"
|
|
2490
|
+
},
|
|
2491
|
+
"createdAt": "2026-01-22T12:01:00.42597+00:00",
|
|
2492
|
+
"packageName": "round-outlined-radius-3-stroke-1",
|
|
2493
|
+
"componentName": "IconBag3"
|
|
2494
|
+
},
|
|
2467
2495
|
{
|
|
2468
2496
|
"category": "Things",
|
|
2469
2497
|
"svg": "<path d=\"M12 20C15.1875 20 20.5 16.1912 20.5 9.69286C20.5 4.58422 16.6944 1.5 12 1.5C7.30558 1.5 3.5 4.58422 3.5 9.69286C3.5 16.1912 8.8125 20 12 20Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.4994 20L14.2298 20.8469C14.7888 21.4949 14.3284 22.5 13.4726 22.5H10.58C9.7415 22.5 9.27532 21.5301 9.79913 20.8753L10.4994 20\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.50781 9.69326C6.65643 6.63321 8.79591 4.72819 11.4996 4.51953\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -10710,6 +10738,20 @@
|
|
|
10710
10738
|
"packageName": "round-outlined-radius-3-stroke-1",
|
|
10711
10739
|
"componentName": "IconFolders"
|
|
10712
10740
|
},
|
|
10741
|
+
{
|
|
10742
|
+
"category": "Folders & Files",
|
|
10743
|
+
"svg": "<path d=\"M4.5 14.5V5.5C4.5 4.39543 5.39543 3.5 6.5 3.5H9.17157C9.70201 3.5 10.2107 3.71071 10.5858 4.08579L11.9142 5.41421C12.2893 5.78929 12.798 6 13.3284 6H19.5C20.6046 6 21.5 6.89543 21.5 8V14.5C21.5 16.1569 20.1569 17.5 18.5 17.5H7.5C5.84315 17.5 4.5 16.1569 4.5 14.5Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M2.5 5.5V16.5C2.5 18.1569 3.84315 19.5 5.5 19.5H19.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
10744
|
+
"iconName": "folders-2, collection, stuff",
|
|
10745
|
+
"variant": {
|
|
10746
|
+
"join": "round",
|
|
10747
|
+
"filled": "off",
|
|
10748
|
+
"radius": "3",
|
|
10749
|
+
"stroke": "1"
|
|
10750
|
+
},
|
|
10751
|
+
"createdAt": "2026-01-22T12:01:00.42597+00:00",
|
|
10752
|
+
"packageName": "round-outlined-radius-3-stroke-1",
|
|
10753
|
+
"componentName": "IconFolders2"
|
|
10754
|
+
},
|
|
10713
10755
|
{
|
|
10714
10756
|
"category": "Folders & Files",
|
|
10715
10757
|
"svg": "<path d=\"M2.5003 8.5V6.5C2.5003 4.84315 3.84345 3.5 5.5003 3.5H8.92994C9.59864 3.5 10.2231 3.8342 10.594 4.3906L11.4066 5.6094C11.7775 6.1658 12.402 6.5 13.0707 6.5H18.5003C20.1572 6.5 21.5003 7.84315 21.5003 9.5V16.5C21.5003 18.1569 20.1572 19.5 18.5003 19.5H12.5003M7.5003 12.5C7.5003 13.6046 6.60487 14.5 5.5003 14.5C4.39573 14.5 3.5003 13.6046 3.5003 12.5C3.5003 11.3954 4.39573 10.5 5.5003 10.5C6.60487 10.5 7.5003 11.3954 7.5003 12.5ZM1.89036 18.2548C2.78098 17.177 4.06809 16.5 5.49952 16.5C6.93095 16.5 8.21807 17.177 9.10868 18.2548C9.93002 19.2488 8.97875 20.5 7.68936 20.5H3.30969C2.0203 20.5 1.06902 19.2488 1.89036 18.2548Z\" stroke=\"currentColor\" stroke-linecap=\"round\"/>",
|
|
@@ -12292,6 +12334,20 @@
|
|
|
12292
12334
|
"packageName": "round-outlined-radius-3-stroke-1",
|
|
12293
12335
|
"componentName": "IconIceHockey"
|
|
12294
12336
|
},
|
|
12337
|
+
{
|
|
12338
|
+
"category": "Social Media & Brands",
|
|
12339
|
+
"svg": "<path d=\"M12 2V22L8 20V4L12 2Z\" fill=\"currentColor\"/><path opacity=\"0.35\" d=\"M16 4V20L12 22V2L16 4Z\" fill=\"currentColor\"/>",
|
|
12340
|
+
"iconName": "iconists",
|
|
12341
|
+
"variant": {
|
|
12342
|
+
"join": "round",
|
|
12343
|
+
"filled": "off",
|
|
12344
|
+
"radius": "3",
|
|
12345
|
+
"stroke": "1"
|
|
12346
|
+
},
|
|
12347
|
+
"createdAt": "2026-01-17T09:03:18.498678+00:00",
|
|
12348
|
+
"packageName": "round-outlined-radius-3-stroke-1",
|
|
12349
|
+
"componentName": "IconIconists"
|
|
12350
|
+
},
|
|
12295
12351
|
{
|
|
12296
12352
|
"category": "Devices & Signals",
|
|
12297
12353
|
"svg": "<path d=\"M21.5 13.5H2.5M9.5 17.5H14.5V21.5H9.5V17.5ZM5.5 17.5H18.5C20.1569 17.5 21.5 16.1569 21.5 14.5V6.5C21.5 4.84315 20.1569 3.5 18.5 3.5H5.5C3.84315 3.5 2.5 4.84315 2.5 6.5V14.5C2.5 16.1569 3.84315 17.5 5.5 17.5Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -13510,10 +13566,24 @@
|
|
|
13510
13566
|
"packageName": "round-outlined-radius-3-stroke-1",
|
|
13511
13567
|
"componentName": "IconLiquidGlass"
|
|
13512
13568
|
},
|
|
13569
|
+
{
|
|
13570
|
+
"category": "Interface General",
|
|
13571
|
+
"svg": "<path d=\"M8.5 6.5L20.5 6.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><circle cx=\"4\" cy=\"6.5\" r=\"1\" fill=\"currentColor\"/><path d=\"M8.5 12L20.5 12\" stroke=\"currentColor\" stroke-linecap=\"round\"/><circle cx=\"4\" cy=\"12\" r=\"1\" fill=\"currentColor\"/><path d=\"M8.5 17.5L20.5 17.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><circle cx=\"4\" cy=\"17.5\" r=\"1\" fill=\"currentColor\"/>",
|
|
13572
|
+
"iconName": "list-bullets",
|
|
13573
|
+
"variant": {
|
|
13574
|
+
"join": "round",
|
|
13575
|
+
"filled": "off",
|
|
13576
|
+
"radius": "3",
|
|
13577
|
+
"stroke": "1"
|
|
13578
|
+
},
|
|
13579
|
+
"createdAt": "2026-01-17T09:03:18.498678+00:00",
|
|
13580
|
+
"packageName": "round-outlined-radius-3-stroke-1",
|
|
13581
|
+
"componentName": "IconListBullets"
|
|
13582
|
+
},
|
|
13513
13583
|
{
|
|
13514
13584
|
"category": "Folders & Files",
|
|
13515
13585
|
"svg": "<path d=\"M20.5 6.5C20.5 4.84315 19.1569 3.5 17.5 3.5H6.5C4.84315 3.5 3.5 4.84315 3.5 6.5V17.5C3.5 19.1569 4.84315 20.5 6.5 20.5H17.5C19.1569 20.5 20.5 19.1569 20.5 17.5V6.5Z\" stroke=\"currentColor\" stroke-linejoin=\"round\"/><path d=\"M7.25 15C7.94036 15 8.5 15.5596 8.5 16.25C8.5 16.9404 7.94036 17.5 7.25 17.5C6.55964 17.5 6 16.9404 6 16.25C6 15.5596 6.55964 15 7.25 15Z\" fill=\"currentColor\"/><path d=\"M7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75Z\" fill=\"currentColor\"/><path d=\"M7.25 6.5C7.94036 6.5 8.5 7.05964 8.5 7.75C8.5 8.44036 7.94036 9 7.25 9C6.55964 9 6 8.44036 6 7.75C6 7.05964 6.55964 6.5 7.25 6.5Z\" fill=\"currentColor\"/>",
|
|
13516
|
-
"iconName": "list-bullets",
|
|
13586
|
+
"iconName": "list-bullets-square",
|
|
13517
13587
|
"variant": {
|
|
13518
13588
|
"join": "round",
|
|
13519
13589
|
"filled": "off",
|
|
@@ -13522,7 +13592,7 @@
|
|
|
13522
13592
|
},
|
|
13523
13593
|
"createdAt": "2025-02-15T21:11:33.829321+00:00",
|
|
13524
13594
|
"packageName": "round-outlined-radius-3-stroke-1",
|
|
13525
|
-
"componentName": "
|
|
13595
|
+
"componentName": "IconListBulletsSquare"
|
|
13526
13596
|
},
|
|
13527
13597
|
{
|
|
13528
13598
|
"category": "AI & Magic",
|
|
@@ -22876,6 +22946,20 @@
|
|
|
22876
22946
|
"packageName": "round-outlined-radius-3-stroke-1",
|
|
22877
22947
|
"componentName": "IconVoiceHigh"
|
|
22878
22948
|
},
|
|
22949
|
+
{
|
|
22950
|
+
"category": "Sound & Music",
|
|
22951
|
+
"svg": "<path d=\"M7.5 6.5V17.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M3.5 11V13\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M12 10.5V13.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M16.5 8.5V15.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M20.5 11V13\" stroke=\"currentColor\" stroke-linecap=\"round\"/>",
|
|
22952
|
+
"iconName": "voice-low, wave",
|
|
22953
|
+
"variant": {
|
|
22954
|
+
"join": "round",
|
|
22955
|
+
"filled": "off",
|
|
22956
|
+
"radius": "3",
|
|
22957
|
+
"stroke": "1"
|
|
22958
|
+
},
|
|
22959
|
+
"createdAt": "2026-01-17T09:03:18.498678+00:00",
|
|
22960
|
+
"packageName": "round-outlined-radius-3-stroke-1",
|
|
22961
|
+
"componentName": "IconVoiceLow"
|
|
22962
|
+
},
|
|
22879
22963
|
{
|
|
22880
22964
|
"category": "Sound & Music",
|
|
22881
22965
|
"svg": "<path d=\"M7.5 5.5V18.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M3.5 10.5V13.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M12 9.5V14.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M16.5 7.5V16.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M20.5 10.5V13.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -99,6 +99,7 @@ export type CentralIconName =
|
|
|
99
99
|
| "IconArrowLeftSquare"
|
|
100
100
|
| "IconArrowLeftUpCircle"
|
|
101
101
|
| "IconArrowLeftX"
|
|
102
|
+
| "IconArrowLoopDownLeft"
|
|
102
103
|
| "IconArrowOutOfBox"
|
|
103
104
|
| "IconArrowPathDown"
|
|
104
105
|
| "IconArrowPathLeft"
|
|
@@ -175,6 +176,7 @@ export type CentralIconName =
|
|
|
175
176
|
| "IconBag"
|
|
176
177
|
| "IconBag2"
|
|
177
178
|
| "IconBag2Sparkle"
|
|
179
|
+
| "IconBag3"
|
|
178
180
|
| "IconBalloon"
|
|
179
181
|
| "IconBanana"
|
|
180
182
|
| "IconBank"
|
|
@@ -764,6 +766,7 @@ export type CentralIconName =
|
|
|
764
766
|
| "IconFolderPaper"
|
|
765
767
|
| "IconFolderRestricted"
|
|
766
768
|
| "IconFolders"
|
|
769
|
+
| "IconFolders2"
|
|
767
770
|
| "IconFolderShared"
|
|
768
771
|
| "IconFolderShield"
|
|
769
772
|
| "IconFolderSparkle"
|
|
@@ -877,6 +880,7 @@ export type CentralIconName =
|
|
|
877
880
|
| "IconHumanMashine"
|
|
878
881
|
| "IconIcebowl"
|
|
879
882
|
| "IconIceHockey"
|
|
883
|
+
| "IconIconists"
|
|
880
884
|
| "IconImac"
|
|
881
885
|
| "IconImageAltText"
|
|
882
886
|
| "IconImageAvatarSparkle"
|
|
@@ -965,6 +969,7 @@ export type CentralIconName =
|
|
|
965
969
|
| "IconLinktree"
|
|
966
970
|
| "IconLiquidGlass"
|
|
967
971
|
| "IconListBullets"
|
|
972
|
+
| "IconListBulletsSquare"
|
|
968
973
|
| "IconListSparkle"
|
|
969
974
|
| "IconLiveActivity"
|
|
970
975
|
| "IconLiveFull"
|
|
@@ -1633,6 +1638,7 @@ export type CentralIconName =
|
|
|
1633
1638
|
| "IconVoice3"
|
|
1634
1639
|
| "IconVoiceAndVideo"
|
|
1635
1640
|
| "IconVoiceHigh"
|
|
1641
|
+
| "IconVoiceLow"
|
|
1636
1642
|
| "IconVoiceMid"
|
|
1637
1643
|
| "IconVoiceMode"
|
|
1638
1644
|
| "IconVoiceRecord"
|