@central-icons-react-native/square-filled-radius-0-stroke-2 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 +43 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var I=Object.create;var n=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var u=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(o,r)=>{for(var t in r)n(o,t,{get:r[t],enumerable:!0})},a=(o,r,t,C)=>{if(r&&typeof r=="object"||typeof r=="function")for(let e of i(r))!x.call(o,e)&&e!==t&&n(o,e,{get:()=>r[e],enumerable:!(C=L(r,e))||C.enumerable});return o};var l=(o,r,t)=>(t=o!=null?I(u(o)):{},a(r||!o||!o.__esModule?n(t,"default",{value:o,enumerable:!0}):t,o)),g=o=>a(n({},"__esModule",{value:!0}),o);var V={};P(V,{IconArrowLoopDownLeft:()=>B,default:()=>v});module.exports=g(V);var p=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),f=({children:o,size:r=24,...t})=>m.default.createElement(s.Svg,{...t,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var c=require("react-native-svg"),B=o=>p.default.createElement(f,{...o},p.default.createElement(c.Path,{d:"M12.5 3C16.6421 3 20 6.35786 20 10.5V11C20 14.866 16.866 18 13 18V16C15.7614 16 18 13.7614 18 11V10.5C18 7.46243 15.5376 5 12.5 5C9.46243 5 7 7.46243 7 10.5V17.5859L9.29297 15.293L10.707 16.707L6 21.4141L1.29297 16.707L2.70703 15.293L5 17.5859V10.5C5 6.35786 8.35786 3 12.5 3Z",fill:"currentColor"})),v=B;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 3C16.6421 3 20 6.35786 20 10.5V11C20 14.866 16.866 18 13 18V16C15.7614 16 18 13.7614 18 11V10.5C18 7.46243 15.5376 5 12.5 5C9.46243 5 7 7.46243 7 10.5V17.5859L9.29297 15.293L10.707 16.707L6 21.4141L1.29297 16.707L2.70703 15.293L5 17.5859V10.5C5 6.35786 8.35786 3 12.5 3Z\"\n fill=\"currentColor\"\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,uRACF,KAAK,eACP,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 p from"react";import{Svg as C}from"react-native-svg";var t=({children:r,size:o=24,...n})=>p.createElement(C,{...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 a}from"react-native-svg";var l=r=>e.createElement(t,{...r},e.createElement(a,{d:"M12.5 3C16.6421 3 20 6.35786 20 10.5V11C20 14.866 16.866 18 13 18V16C15.7614 16 18 13.7614 18 11V10.5C18 7.46243 15.5376 5 12.5 5C9.46243 5 7 7.46243 7 10.5V17.5859L9.29297 15.293L10.707 16.707L6 21.4141L1.29297 16.707L2.70703 15.293L5 17.5859V10.5C5 6.35786 8.35786 3 12.5 3Z",fill:"currentColor"})),x=l;export{l as IconArrowLoopDownLeft,x 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 3C16.6421 3 20 6.35786 20 10.5V11C20 14.866 16.866 18 13 18V16C15.7614 16 18 13.7614 18 11V10.5C18 7.46243 15.5376 5 12.5 5C9.46243 5 7 7.46243 7 10.5V17.5859L9.29297 15.293L10.707 16.707L6 21.4141L1.29297 16.707L2.70703 15.293L5 17.5859V10.5C5 6.35786 8.35786 3 12.5 3Z\"\n fill=\"currentColor\"\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,uRACF,KAAK,eACP,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 i=Object.create;var t=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,H=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},m=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of B(o))!H.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(a=u(o,n))||a.enumerable});return r};var C=(r,o,e)=>(e=r!=null?i(d(r)):{},m(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>m(t({},"__esModule",{value:!0}),r);var x={};I(x,{IconBag3:()=>c,default:()=>v});module.exports=g(x);var p=C(require("react"));var f=C(require("react")),s=require("react-native-svg"),V=({children:r,size:o=24,...e})=>f.default.createElement(s.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var l=require("react-native-svg"),c=r=>p.default.createElement(V,{...r},p.default.createElement(l.Path,{d:"M22 21H2V12.3467L11 13.8467V15H13V13.8018L22 11.8018V21Z",fill:"currentColor"}),p.default.createElement(l.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M17.0039 6H22V9.75293L13 11.752V11H11V11.8193L2 10.3193V6H7.00391V2H17.0039V6ZM9.00391 6H15.0039V4H9.00391V6Z",fill:"currentColor"})),v=c;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=\"M22 21H2V12.3467L11 13.8467V15H13V13.8018L22 11.8018V21Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M17.0039 6H22V9.75293L13 11.752V11H11V11.8193L2 10.3193V6H7.00391V2H17.0039V6ZM9.00391 6H15.0039V4H9.00391V6Z\"\n fill=\"currentColor\"\n />\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,2DACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,gHACF,KAAK,eACP,CACF,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 e 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 t}from"react-native-svg";var m=o=>e.createElement(n,{...o},e.createElement(t,{d:"M22 21H2V12.3467L11 13.8467V15H13V13.8018L22 11.8018V21Z",fill:"currentColor"}),e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M17.0039 6H22V9.75293L13 11.752V11H11V11.8193L2 10.3193V6H7.00391V2H17.0039V6ZM9.00391 6H15.0039V4H9.00391V6Z",fill:"currentColor"})),H=m;export{m as IconBag3,H 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=\"M22 21H2V12.3467L11 13.8467V15H13V13.8018L22 11.8018V21Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M17.0039 6H22V9.75293L13 11.752V11H11V11.8193L2 10.3193V6H7.00391V2H17.0039V6ZM9.00391 6H15.0039V4H9.00391V6Z\"\n fill=\"currentColor\"\n />\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,2DACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,gHACF,KAAK,eACP,CACF,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 f=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!x.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(a=B(o,t))||a.enumerable});return r};var C=(r,o,e)=>(e=r!=null?f(d(r)):{},l(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>l(n({},"__esModule",{value:!0}),r);var k={};P(k,{IconFolders2:()=>u,default:()=>h});module.exports=g(k);var p=C(require("react"));var c=C(require("react")),m=require("react-native-svg"),i=({children:r,size:o=24,...e})=>c.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 s=require("react-native-svg"),u=r=>p.default.createElement(i,{...r},p.default.createElement(s.Path,{d:"M7 15V4H11.5L13.5 6H21V15H7Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),p.default.createElement(s.Path,{d:"M3 8V19H17",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),h=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=\"M7 15V4H11.5L13.5 6H21V15H7Z\"\n fill=\"currentColor\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M3 8V19H17\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\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,+BACF,KAAK,eACL,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,aACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,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 s from"react";import{Svg as a}from"react-native-svg";var t=({children:o,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"},o);import{Path as n}from"react-native-svg";var l=o=>e.createElement(t,{...o},e.createElement(n,{d:"M7 15V4H11.5L13.5 6H21V15H7Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),e.createElement(n,{d:"M3 8V19H17",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),x=l;export{l 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=\"M7 15V4H11.5L13.5 6H21V15H7Z\"\n fill=\"currentColor\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M3 8V19H17\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\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,+BACF,KAAK,eACL,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,aACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,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 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 n in o)e(r,n,{get:o[n],enumerable:!0})},f=(r,o,n,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let C of d(o))!x.call(r,C)&&C!==n&&e(r,C,{get:()=>o[C],enumerable:!(p=B(o,C))||p.enumerable});return r};var s=(r,o,n)=>(n=r!=null?c(I(r)):{},f(o||!r||!r.__esModule?e(n,"default",{value:r,enumerable:!0}):n,r)),g=r=>f(e({},"__esModule",{value:!0}),r);var M={};P(M,{IconListBullets:()=>a,default:()=>H});module.exports=g(M);var t=s(require("react"));var i=s(require("react")),m=require("react-native-svg"),u=({children:r,size:o=24,...n})=>i.default.createElement(m.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 l=require("react-native-svg"),a=r=>t.default.createElement(u,{...r},t.default.createElement(l.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"}),t.default.createElement(l.Path,{d:"M21 19H9V17H21V19Z",fill:"currentColor"}),t.default.createElement(l.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"}),t.default.createElement(l.Path,{d:"M21 13H9V11H21V13Z",fill:"currentColor"}),t.default.createElement(l.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"}),t.default.createElement(l.Path,{d:"M21 7H9V5H21V7Z",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
|
|
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 d=\"M21 19H9V17H21V19Z\" fill=\"currentColor\" />\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 d=\"M21 13H9V11H21V13Z\" fill=\"currentColor\" />\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 d=\"M21 7H9V5H21V7Z\" 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,EAAqB,4BAERC,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,qIACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,qBAAqB,KAAK,eAAe,EACjD,EAAAA,QAAA,cAAC,QACC,EAAE,qIACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,qBAAqB,KAAK,eAAe,EACjD,EAAAA,QAAA,cAAC,QACC,EAAE,4HACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,kBAAkB,KAAK,eAAe,CAChD,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 e from"react";import{Svg as p}from"react-native-svg";var l=({children:t,size:o=24,...C})=>e.createElement(p,{...C,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},t);import{Path as n}from"react-native-svg";var f=t=>r.createElement(l,{...t},r.createElement(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",fill:"currentColor"}),r.createElement(n,{d:"M21 19H9V17H21V19Z",fill:"currentColor"}),r.createElement(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",fill:"currentColor"}),r.createElement(n,{d:"M21 13H9V11H21V13Z",fill:"currentColor"}),r.createElement(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",fill:"currentColor"}),r.createElement(n,{d:"M21 7H9V5H21V7Z",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
|
|
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 d=\"M21 19H9V17H21V19Z\" fill=\"currentColor\" />\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 d=\"M21 13H9V11H21V13Z\" fill=\"currentColor\" />\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 d=\"M21 7H9V5H21V7Z\" 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,QAAAG,MAAY,mBAEd,IAAMC,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,qIACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,qBAAqB,KAAK,eAAe,EACjDG,EAAA,cAACH,EAAA,CACC,EAAE,qIACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,qBAAqB,KAAK,eAAe,EACjDG,EAAA,cAACH,EAAA,CACC,EAAE,4HACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,kBAAkB,KAAK,eAAe,CAChD,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconListBullets","props","React","CentralIconBase","IconListBullets_default"]}
|
|
@@ -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 3H3V21H21V3ZM9.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 3H3V21H21V3ZM9.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,wbACF,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 3H3V21H21V3ZM9.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 3H3V21H21V3ZM9.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,wbACF,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 u=Object.create;var p=Object.defineProperty;var V=Object.getOwnPropertyDescriptor;var H=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var n in o)p(r,n,{get:o[n],enumerable:!0})},f=(r,o,n,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let l of H(o))!I.call(r,l)&&l!==n&&p(r,l,{get:()=>o[l],enumerable:!(C=V(o,l))||C.enumerable});return r};var m=(r,o,n)=>(n=r!=null?u(B(r)):{},f(o||!r||!r.__esModule?p(n,"default",{value:r,enumerable:!0}):n,r)),x=r=>f(p({},"__esModule",{value:!0}),r);var g={};d(g,{IconVoiceLow:()=>c,default:()=>P});module.exports=x(g);var t=m(require("react"));var i=m(require("react")),s=require("react-native-svg"),a=({children:r,size:o=24,...n})=>i.default.createElement(s.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 e=require("react-native-svg"),c=r=>t.default.createElement(a,{...r},t.default.createElement(e.Path,{d:"M9 18H7V6H9V18Z",fill:"currentColor"}),t.default.createElement(e.Path,{d:"M17 16H15V8H17V16Z",fill:"currentColor"}),t.default.createElement(e.Path,{d:"M13 14H11V10H13V14Z",fill:"currentColor"}),t.default.createElement(e.Path,{d:"M5 13.5H3V10.5H5V13.5Z",fill:"currentColor"}),t.default.createElement(e.Path,{d:"M21 13.5H19V10.5H21V13.5Z",fill:"currentColor"})),P=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 d=\"M9 18H7V6H9V18Z\" fill=\"currentColor\" />\n <Path d=\"M17 16H15V8H17V16Z\" fill=\"currentColor\" />\n <Path d=\"M13 14H11V10H13V14Z\" fill=\"currentColor\" />\n <Path d=\"M5 13.5H3V10.5H5V13.5Z\" fill=\"currentColor\" />\n <Path d=\"M21 13.5H19V10.5H21V13.5Z\" fill=\"currentColor\" />\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,kBAAkB,KAAK,eAAe,EAC9C,EAAAA,QAAA,cAAC,QAAK,EAAE,qBAAqB,KAAK,eAAe,EACjD,EAAAA,QAAA,cAAC,QAAK,EAAE,sBAAsB,KAAK,eAAe,EAClD,EAAAA,QAAA,cAAC,QAAK,EAAE,yBAAyB,KAAK,eAAe,EACrD,EAAAA,QAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,CAC1D,EAIGE,EAAQJ","names":["IconVoiceLow_exports","__export","IconVoiceLow","IconVoiceLow_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconVoiceLow","props","React","CentralIconBase","IconVoiceLow_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";import{Svg as C}from"react-native-svg";var e=({children:t,size:r=24,...l})=>p.createElement(C,{...l,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Path as n}from"react-native-svg";var f=t=>o.createElement(e,{...t},o.createElement(n,{d:"M9 18H7V6H9V18Z",fill:"currentColor"}),o.createElement(n,{d:"M17 16H15V8H17V16Z",fill:"currentColor"}),o.createElement(n,{d:"M13 14H11V10H13V14Z",fill:"currentColor"}),o.createElement(n,{d:"M5 13.5H3V10.5H5V13.5Z",fill:"currentColor"}),o.createElement(n,{d:"M21 13.5H19V10.5H21V13.5Z",fill:"currentColor"})),I=f;export{f 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=\"M9 18H7V6H9V18Z\" fill=\"currentColor\" />\n <Path d=\"M17 16H15V8H17V16Z\" fill=\"currentColor\" />\n <Path d=\"M13 14H11V10H13V14Z\" fill=\"currentColor\" />\n <Path d=\"M5 13.5H3V10.5H5V13.5Z\" fill=\"currentColor\" />\n <Path d=\"M21 13.5H19V10.5H21V13.5Z\" fill=\"currentColor\" />\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,kBAAkB,KAAK,eAAe,EAC9CG,EAAA,cAACH,EAAA,CAAK,EAAE,qBAAqB,KAAK,eAAe,EACjDG,EAAA,cAACH,EAAA,CAAK,EAAE,sBAAsB,KAAK,eAAe,EAClDG,EAAA,cAACH,EAAA,CAAK,EAAE,yBAAyB,KAAK,eAAe,EACrDG,EAAA,cAACH,EAAA,CAAK,EAAE,4BAA4B,KAAK,eAAe,CAC1D,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": "square-filled-radius-0-stroke-2",
|
|
1401
1401
|
"componentName": "IconArrowLeftX"
|
|
1402
1402
|
},
|
|
1403
|
+
{
|
|
1404
|
+
"category": "Arrows",
|
|
1405
|
+
"svg": "<path d=\"M12.5 3C16.6421 3 20 6.35786 20 10.5V11C20 14.866 16.866 18 13 18V16C15.7614 16 18 13.7614 18 11V10.5C18 7.46243 15.5376 5 12.5 5C9.46243 5 7 7.46243 7 10.5V17.5859L9.29297 15.293L10.707 16.707L6 21.4141L1.29297 16.707L2.70703 15.293L5 17.5859V10.5C5 6.35786 8.35786 3 12.5 3Z\" fill=\"currentColor\"/>",
|
|
1406
|
+
"iconName": "arrow-loop-down-left, restore, reset",
|
|
1407
|
+
"variant": {
|
|
1408
|
+
"join": "square",
|
|
1409
|
+
"filled": "on",
|
|
1410
|
+
"radius": "0",
|
|
1411
|
+
"stroke": "2"
|
|
1412
|
+
},
|
|
1413
|
+
"createdAt": "2026-01-22T12:01:00.42597+00:00",
|
|
1414
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
1415
|
+
"componentName": "IconArrowLoopDownLeft"
|
|
1416
|
+
},
|
|
1403
1417
|
{
|
|
1404
1418
|
"category": "Interface General",
|
|
1405
1419
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5 13.7502V19.0002H19V13.7502H21V21.0002H3V13.7502H5Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2.58594L17.9142 8.50015L16.5 9.91436L13 6.41436V16.2502H11V6.41437L7.5 9.91436L6.08579 8.50015L12 2.58594Z\" fill=\"currentColor\"/>",
|
|
@@ -2464,6 +2478,20 @@
|
|
|
2464
2478
|
"packageName": "square-filled-radius-0-stroke-2",
|
|
2465
2479
|
"componentName": "IconBag2Sparkle"
|
|
2466
2480
|
},
|
|
2481
|
+
{
|
|
2482
|
+
"category": "Things",
|
|
2483
|
+
"svg": "<path d=\"M22 21H2V12.3467L11 13.8467V15H13V13.8018L22 11.8018V21Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0039 6H22V9.75293L13 11.752V11H11V11.8193L2 10.3193V6H7.00391V2H17.0039V6ZM9.00391 6H15.0039V4H9.00391V6Z\" fill=\"currentColor\"/>",
|
|
2484
|
+
"iconName": "bag-3, luggage, suitcase, work",
|
|
2485
|
+
"variant": {
|
|
2486
|
+
"join": "square",
|
|
2487
|
+
"filled": "on",
|
|
2488
|
+
"radius": "0",
|
|
2489
|
+
"stroke": "2"
|
|
2490
|
+
},
|
|
2491
|
+
"createdAt": "2026-01-22T12:01:00.42597+00:00",
|
|
2492
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
2493
|
+
"componentName": "IconBag3"
|
|
2494
|
+
},
|
|
2467
2495
|
{
|
|
2468
2496
|
"category": "Things",
|
|
2469
2497
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.67635 3.25864C7.33264 1.77667 9.58091 1 12 1C14.4191 1 16.6674 1.77667 18.3237 3.25864C19.9923 4.75165 21 6.90902 21 9.52857C21 12.8115 19.6207 15.426 17.8313 17.2115C16.8761 18.1646 15.7786 18.9051 14.6816 19.3827L15.8874 23H8.11257L9.31835 19.3827C8.22137 18.9051 7.12393 18.1646 6.16867 17.2115C4.3793 15.426 3 12.8115 3 9.52857C3 6.90902 4.00771 4.75165 5.67635 3.25864ZM11.2393 19.9445L10.8874 21H13.1126L12.7607 19.9445C12.5012 19.9812 12.2469 20 12 20C11.7531 20 11.4988 19.9812 11.2393 19.9445ZM9.85932 7.78683C9.34991 8.26943 9 8.99613 9 9.98571H7C7 8.49001 7.54552 7.22386 8.48382 6.33493C9.41409 5.45362 10.6695 5 12 5V7C11.1214 7 10.3768 7.2966 9.85932 7.78683Z\" fill=\"currentColor\"/>",
|
|
@@ -10710,6 +10738,20 @@
|
|
|
10710
10738
|
"packageName": "square-filled-radius-0-stroke-2",
|
|
10711
10739
|
"componentName": "IconFolders"
|
|
10712
10740
|
},
|
|
10741
|
+
{
|
|
10742
|
+
"category": "Folders & Files",
|
|
10743
|
+
"svg": "<path d=\"M7 15V4H11.5L13.5 6H21V15H7Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M3 8V19H17\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/>",
|
|
10744
|
+
"iconName": "folders-2, collection, stuff",
|
|
10745
|
+
"variant": {
|
|
10746
|
+
"join": "square",
|
|
10747
|
+
"filled": "on",
|
|
10748
|
+
"radius": "0",
|
|
10749
|
+
"stroke": "2"
|
|
10750
|
+
},
|
|
10751
|
+
"createdAt": "2026-01-22T12:01:00.42597+00:00",
|
|
10752
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
10753
|
+
"componentName": "IconFolders2"
|
|
10754
|
+
},
|
|
10713
10755
|
{
|
|
10714
10756
|
"category": "Folders & Files",
|
|
10715
10757
|
"svg": "<path d=\"M2 3H10.5352L12.5352 6H22V20H12.9289C12.8385 19.37 12.6641 18.7655 12.4167 18.1993C11.8825 16.9766 11.008 15.9348 9.9122 15.1947C10.4406 14.429 10.75 13.5007 10.75 12.5C10.75 9.87665 8.62335 7.75 6 7.75C4.32053 7.75 2.84463 8.62162 2 9.93718V3Z\" fill=\"currentColor\"/><path d=\"M2 15.0628V15.255C2.02911 15.2347 2.05837 15.2146 2.0878 15.1947C2.05782 15.1513 2.02855 15.1073 2 15.0628Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.584 19C9.8124 17.2341 8.05032 16 6 16C3.94968 16 2.1876 17.2341 1.41604 19C1.14845 19.6125 1 20.2889 1 21H11C11 20.2889 10.8516 19.6125 10.584 19ZM6 18C5.1115 18 4.31321 18.3863 3.76389 19H8.23611C7.68679 18.3863 6.8885 18 6 18Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 9.75C4.48122 9.75 3.25 10.9812 3.25 12.5C3.25 14.0188 4.48122 15.25 6 15.25C7.51878 15.25 8.75 14.0188 8.75 12.5C8.75 10.9812 7.51878 9.75 6 9.75ZM5.25 12.5C5.25 12.0858 5.58579 11.75 6 11.75C6.41421 11.75 6.75 12.0858 6.75 12.5C6.75 12.9142 6.41421 13.25 6 13.25C5.58579 13.25 5.25 12.9142 5.25 12.5Z\" fill=\"currentColor\"/>",
|
|
@@ -12292,6 +12334,20 @@
|
|
|
12292
12334
|
"packageName": "square-filled-radius-0-stroke-2",
|
|
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": "square",
|
|
12343
|
+
"filled": "on",
|
|
12344
|
+
"radius": "0",
|
|
12345
|
+
"stroke": "2"
|
|
12346
|
+
},
|
|
12347
|
+
"createdAt": "2026-01-17T09:03:18.498678+00:00",
|
|
12348
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
12349
|
+
"componentName": "IconIconists"
|
|
12350
|
+
},
|
|
12295
12351
|
{
|
|
12296
12352
|
"category": "Devices & Signals",
|
|
12297
12353
|
"svg": "<path d=\"M2 3V12H22V3H2Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 18V14H22V18H15V22H9V18H2ZM11 18V20H13V18H11Z\" fill=\"currentColor\"/>",
|
|
@@ -13510,10 +13566,24 @@
|
|
|
13510
13566
|
"packageName": "square-filled-radius-0-stroke-2",
|
|
13511
13567
|
"componentName": "IconLiquidGlass"
|
|
13512
13568
|
},
|
|
13569
|
+
{
|
|
13570
|
+
"category": "Interface General",
|
|
13571
|
+
"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=\"M21 19H9V17H21V19Z\" 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=\"M21 13H9V11H21V13Z\" 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=\"M21 7H9V5H21V7Z\" fill=\"currentColor\"/>",
|
|
13572
|
+
"iconName": "list-bullets",
|
|
13573
|
+
"variant": {
|
|
13574
|
+
"join": "square",
|
|
13575
|
+
"filled": "on",
|
|
13576
|
+
"radius": "0",
|
|
13577
|
+
"stroke": "2"
|
|
13578
|
+
},
|
|
13579
|
+
"createdAt": "2026-01-17T09:03:18.498678+00:00",
|
|
13580
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
13581
|
+
"componentName": "IconListBullets"
|
|
13582
|
+
},
|
|
13513
13583
|
{
|
|
13514
13584
|
"category": "Folders & Files",
|
|
13515
13585
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 3H3V21H21V3ZM9.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",
|
|
13586
|
+
"iconName": "list-bullets-square",
|
|
13517
13587
|
"variant": {
|
|
13518
13588
|
"join": "square",
|
|
13519
13589
|
"filled": "on",
|
|
@@ -13522,7 +13592,7 @@
|
|
|
13522
13592
|
},
|
|
13523
13593
|
"createdAt": "2025-02-15T21:11:33.829321+00:00",
|
|
13524
13594
|
"packageName": "square-filled-radius-0-stroke-2",
|
|
13525
|
-
"componentName": "
|
|
13595
|
+
"componentName": "IconListBulletsSquare"
|
|
13526
13596
|
},
|
|
13527
13597
|
{
|
|
13528
13598
|
"category": "AI & Magic",
|
|
@@ -22876,6 +22946,20 @@
|
|
|
22876
22946
|
"packageName": "square-filled-radius-0-stroke-2",
|
|
22877
22947
|
"componentName": "IconVoiceHigh"
|
|
22878
22948
|
},
|
|
22949
|
+
{
|
|
22950
|
+
"category": "Sound & Music",
|
|
22951
|
+
"svg": "<path d=\"M9 18H7V6H9V18Z\" fill=\"currentColor\"/><path d=\"M17 16H15V8H17V16Z\" fill=\"currentColor\"/><path d=\"M13 14H11V10H13V14Z\" fill=\"currentColor\"/><path d=\"M5 13.5H3V10.5H5V13.5Z\" fill=\"currentColor\"/><path d=\"M21 13.5H19V10.5H21V13.5Z\" fill=\"currentColor\"/>",
|
|
22952
|
+
"iconName": "voice-low, wave",
|
|
22953
|
+
"variant": {
|
|
22954
|
+
"join": "square",
|
|
22955
|
+
"filled": "on",
|
|
22956
|
+
"radius": "0",
|
|
22957
|
+
"stroke": "2"
|
|
22958
|
+
},
|
|
22959
|
+
"createdAt": "2026-01-17T09:03:18.498678+00:00",
|
|
22960
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
22961
|
+
"componentName": "IconVoiceLow"
|
|
22962
|
+
},
|
|
22879
22963
|
{
|
|
22880
22964
|
"category": "Sound & Music",
|
|
22881
22965
|
"svg": "<path d=\"M9 19H7V5H9V19Z\" fill=\"currentColor\"/><path d=\"M17 17H15V7H17V17Z\" fill=\"currentColor\"/><path d=\"M13 15H11V9H13V15Z\" fill=\"currentColor\"/><path d=\"M5 14H3V10H5V14Z\" fill=\"currentColor\"/><path d=\"M21 14H19V10H21V14Z\" fill=\"currentColor\"/>",
|
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"
|