@central-icons-react-native/round-outlined-radius-2-stroke-2 1.1.178 → 1.1.179
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/IconFolderOpenFront/index.d.ts +4 -0
- package/IconFolderOpenFront/index.js +2 -0
- package/IconFolderOpenFront/index.js.map +1 -0
- package/IconFolderOpenFront/index.mjs +2 -0
- package/IconFolderOpenFront/index.mjs.map +1 -0
- package/IconImagineHead/index.d.ts +4 -0
- package/IconImagineHead/index.js +2 -0
- package/IconImagineHead/index.js.map +1 -0
- package/IconImagineHead/index.mjs +2 -0
- package/IconImagineHead/index.mjs.map +1 -0
- package/IconInfoSimple/index.d.ts +4 -0
- package/IconInfoSimple/index.js +2 -0
- package/IconInfoSimple/index.js.map +1 -0
- package/IconInfoSimple/index.mjs +2 -0
- package/IconInfoSimple/index.mjs.map +1 -0
- package/README.md +3 -0
- package/filtered-icons.json +42 -0
- package/icons/index.d.ts +3 -0
- package/icons-index.json +11 -5
- package/index.d.ts +3 -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 +21 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var n=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var k=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of k(o))!I.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(s=f(o,t))||s.enumerable});return r};var i=(r,o,e)=>(e=r!=null?d(B(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),L=r=>a(n({},"__esModule",{value:!0}),r);var g={};x(g,{IconFolderOpenFront:()=>u,default:()=>P});module.exports=L(g);var p=i(require("react"));var l=i(require("react")),m=require("react-native-svg"),c=({children:r,size:o=24,...e})=>l.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 C=require("react-native-svg"),u=r=>p.default.createElement(c,{...r},p.default.createElement(C.Path,{d:"M3 8.5V6C3 4.89543 3.89543 4 5 4H9.17157C9.70201 4 10.2107 4.21071 10.5858 4.58579L11.4142 5.41421C11.7893 5.78929 12.298 6 12.8284 6H19C20.1046 6 21 6.89543 21 8V8.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(C.Path,{d:"M1.45453 14.6727C0.989352 13.3702 1.95495 12 3.33801 12H20.662C22.0451 12 23.0106 13.3702 22.5455 14.6727L21.474 17.6727C21.1898 18.4687 20.4358 19 19.5906 19H4.40944C3.56421 19 2.81024 18.4687 2.52595 17.6727L1.45453 14.6727Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),P=u;0&&(module.exports={IconFolderOpenFront});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFolderOpenFront/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 IconFolderOpenFront: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3 8.5V6C3 4.89543 3.89543 4 5 4H9.17157C9.70201 4 10.2107 4.21071 10.5858 4.58579L11.4142 5.41421C11.7893 5.78929 12.298 6 12.8284 6H19C20.1046 6 21 6.89543 21 8V8.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M1.45453 14.6727C0.989352 13.3702 1.95495 12 3.33801 12H20.662C22.0451 12 23.0106 13.3702 22.5455 14.6727L21.474 17.6727C21.1898 18.4687 20.4358 19 19.5906 19H4.40944C3.56421 19 2.81024 18.4687 2.52595 17.6727L1.45453 14.6727Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFolderOpenFront;\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,yBAAAE,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,EAAiDC,GAE1D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,yKACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qOACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconFolderOpenFront_exports","__export","IconFolderOpenFront","IconFolderOpenFront_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFolderOpenFront","props","React","CentralIconBase","IconFolderOpenFront_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import C from"react";import{Svg as s}from"react-native-svg";var t=({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 n}from"react-native-svg";var a=o=>e.createElement(t,{...o},e.createElement(n,{d:"M3 8.5V6C3 4.89543 3.89543 4 5 4H9.17157C9.70201 4 10.2107 4.21071 10.5858 4.58579L11.4142 5.41421C11.7893 5.78929 12.298 6 12.8284 6H19C20.1046 6 21 6.89543 21 8V8.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(n,{d:"M1.45453 14.6727C0.989352 13.3702 1.95495 12 3.33801 12H20.662C22.0451 12 23.0106 13.3702 22.5455 14.6727L21.474 17.6727C21.1898 18.4687 20.4358 19 19.5906 19H4.40944C3.56421 19 2.81024 18.4687 2.52595 17.6727L1.45453 14.6727Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),I=a;export{a as IconFolderOpenFront,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFolderOpenFront/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 IconFolderOpenFront: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3 8.5V6C3 4.89543 3.89543 4 5 4H9.17157C9.70201 4 10.2107 4.21071 10.5858 4.58579L11.4142 5.41421C11.7893 5.78929 12.298 6 12.8284 6H19C20.1046 6 21 6.89543 21 8V8.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M1.45453 14.6727C0.989352 13.3702 1.95495 12 3.33801 12H20.662C22.0451 12 23.0106 13.3702 22.5455 14.6727L21.474 17.6727C21.1898 18.4687 20.4358 19 19.5906 19H4.40944C3.56421 19 2.81024 18.4687 2.52595 17.6727L1.45453 14.6727Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFolderOpenFront;\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,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,yKACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qOACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFolderOpenFront","props","React","CentralIconBase","IconFolderOpenFront_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var n=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},s=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!B.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(a=u(o,t))||a.enumerable});return r};var l=(r,o,e)=>(e=r!=null?f(d(r)):{},s(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>s(n({},"__esModule",{value:!0}),r);var h={};g(h,{IconImagineHead:()=>c,default:()=>P});module.exports=x(h);var C=l(require("react"));var m=l(require("react")),L=require("react-native-svg"),i=({children:r,size:o=24,...e})=>m.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 p=require("react-native-svg"),c=r=>C.default.createElement(i,{...r},C.default.createElement(p.Path,{d:"M11.5002 3.0083C15.1294 3.1295 16.5562 4.58907 17.2083 6.60988C17.6702 8.04121 19.1745 8.62782 20.4729 9.24025C20.7517 9.37175 20.8324 9.724 20.6475 9.97059L19.5003 11.5001C22.0003 19.0001 16.5003 16.0001 15.704 19.1118L15.2439 21M7.20027 21L7.50022 19.5001C7.94623 16.8241 4.81147 14.5459 4.12939 11.9557",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),C.default.createElement(p.Path,{d:"M7.08091 3.77036L6.54359 2.37334C6.45708 2.14842 6.24099 2 6 2C5.75901 2 5.54292 2.14842 5.45641 2.37334L4.91909 3.77036C4.71594 4.29854 4.29854 4.71594 3.77036 4.91909L2.37334 5.45641C2.14842 5.54292 2 5.75901 2 6C2 6.24099 2.14842 6.45708 2.37334 6.54359L3.77036 7.08091C4.29854 7.28406 4.71594 7.70146 4.91909 8.22964L5.45641 9.62666C5.54292 9.85158 5.75901 10 6 10C6.24099 10 6.45708 9.85158 6.54359 9.62666L7.08091 8.22964C7.28406 7.70146 7.70146 7.28406 8.22964 7.08091L9.62666 6.54359C9.85158 6.45708 10 6.24099 10 6C10 5.75901 9.85158 5.54292 9.62666 5.45641L8.22964 4.91909C7.70146 4.71594 7.28406 4.29854 7.08091 3.77036Z",fill:"currentColor"})),P=c;0&&(module.exports={IconImagineHead});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconImagineHead/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 IconImagineHead: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.5002 3.0083C15.1294 3.1295 16.5562 4.58907 17.2083 6.60988C17.6702 8.04121 19.1745 8.62782 20.4729 9.24025C20.7517 9.37175 20.8324 9.724 20.6475 9.97059L19.5003 11.5001C22.0003 19.0001 16.5003 16.0001 15.704 19.1118L15.2439 21M7.20027 21L7.50022 19.5001C7.94623 16.8241 4.81147 14.5459 4.12939 11.9557\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7.08091 3.77036L6.54359 2.37334C6.45708 2.14842 6.24099 2 6 2C5.75901 2 5.54292 2.14842 5.45641 2.37334L4.91909 3.77036C4.71594 4.29854 4.29854 4.71594 3.77036 4.91909L2.37334 5.45641C2.14842 5.54292 2 5.75901 2 6C2 6.24099 2.14842 6.45708 2.37334 6.54359L3.77036 7.08091C4.29854 7.28406 4.71594 7.70146 4.91909 8.22964L5.45641 9.62666C5.54292 9.85158 5.75901 10 6 10C6.24099 10 6.45708 9.85158 6.54359 9.62666L7.08091 8.22964C7.28406 7.70146 7.70146 7.28406 8.22964 7.08091L9.62666 6.54359C9.85158 6.45708 10 6.24099 10 6C10 5.75901 9.85158 5.54292 9.62666 5.45641L8.22964 4.91909C7.70146 4.71594 7.28406 4.29854 7.08091 3.77036Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconImagineHead;\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,oTACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0nBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconImagineHead_exports","__export","IconImagineHead","IconImagineHead_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconImagineHead","props","React","CentralIconBase","IconImagineHead_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as a}from"react-native-svg";var t=({children:o,size:r=24,...C})=>p.createElement(a,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as n}from"react-native-svg";var s=o=>e.createElement(t,{...o},e.createElement(n,{d:"M11.5002 3.0083C15.1294 3.1295 16.5562 4.58907 17.2083 6.60988C17.6702 8.04121 19.1745 8.62782 20.4729 9.24025C20.7517 9.37175 20.8324 9.724 20.6475 9.97059L19.5003 11.5001C22.0003 19.0001 16.5003 16.0001 15.704 19.1118L15.2439 21M7.20027 21L7.50022 19.5001C7.94623 16.8241 4.81147 14.5459 4.12939 11.9557",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(n,{d:"M7.08091 3.77036L6.54359 2.37334C6.45708 2.14842 6.24099 2 6 2C5.75901 2 5.54292 2.14842 5.45641 2.37334L4.91909 3.77036C4.71594 4.29854 4.29854 4.71594 3.77036 4.91909L2.37334 5.45641C2.14842 5.54292 2 5.75901 2 6C2 6.24099 2.14842 6.45708 2.37334 6.54359L3.77036 7.08091C4.29854 7.28406 4.71594 7.70146 4.91909 8.22964L5.45641 9.62666C5.54292 9.85158 5.75901 10 6 10C6.24099 10 6.45708 9.85158 6.54359 9.62666L7.08091 8.22964C7.28406 7.70146 7.70146 7.28406 8.22964 7.08091L9.62666 6.54359C9.85158 6.45708 10 6.24099 10 6C10 5.75901 9.85158 5.54292 9.62666 5.45641L8.22964 4.91909C7.70146 4.71594 7.28406 4.29854 7.08091 3.77036Z",fill:"currentColor"})),B=s;export{s as IconImagineHead,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconImagineHead/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 IconImagineHead: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.5002 3.0083C15.1294 3.1295 16.5562 4.58907 17.2083 6.60988C17.6702 8.04121 19.1745 8.62782 20.4729 9.24025C20.7517 9.37175 20.8324 9.724 20.6475 9.97059L19.5003 11.5001C22.0003 19.0001 16.5003 16.0001 15.704 19.1118L15.2439 21M7.20027 21L7.50022 19.5001C7.94623 16.8241 4.81147 14.5459 4.12939 11.9557\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7.08091 3.77036L6.54359 2.37334C6.45708 2.14842 6.24099 2 6 2C5.75901 2 5.54292 2.14842 5.45641 2.37334L4.91909 3.77036C4.71594 4.29854 4.29854 4.71594 3.77036 4.91909L2.37334 5.45641C2.14842 5.54292 2 5.75901 2 6C2 6.24099 2.14842 6.45708 2.37334 6.54359L3.77036 7.08091C4.29854 7.28406 4.71594 7.70146 4.91909 8.22964L5.45641 9.62666C5.54292 9.85158 5.75901 10 6 10C6.24099 10 6.45708 9.85158 6.54359 9.62666L7.08091 8.22964C7.28406 7.70146 7.70146 7.28406 8.22964 7.08091L9.62666 6.54359C9.85158 6.45708 10 6.24099 10 6C10 5.75901 9.85158 5.54292 9.62666 5.45641L8.22964 4.91909C7.70146 4.71594 7.28406 4.29854 7.08091 3.77036Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconImagineHead;\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,oTACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0nBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconImagineHead","props","React","CentralIconBase","IconImagineHead_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of x(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(s=I(o,t))||s.enumerable});return r};var C=(r,o,e)=>(e=r!=null?u(B(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>a(n({},"__esModule",{value:!0}),r);var v={};d(v,{IconInfoSimple:()=>f,default:()=>h});module.exports=g(v);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 l=require("react-native-svg"),f=r=>p.default.createElement(i,{...r},p.default.createElement(l.Path,{d:"M10 10.5H11C11.5523 10.5 12 10.9477 12 11.5V19M12 19H10M12 19H14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(l.Circle,{cx:"12",cy:"5.5",r:"1.5",fill:"currentColor"})),h=f;0&&(module.exports={IconInfoSimple});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconInfoSimple/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 IconInfoSimple: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10 10.5H11C11.5523 10.5 12 10.9477 12 11.5V19M12 19H10M12 19H14\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle cx=\"12\" cy=\"5.5\" r=\"1.5\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconInfoSimple;\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,oBAAAE,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,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,mEACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,MAAM,EAAE,MAAM,KAAK,eAAe,CACvD,EAIGE,EAAQJ","names":["IconInfoSimple_exports","__export","IconInfoSimple","IconInfoSimple_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconInfoSimple","props","React","CentralIconBase","IconInfoSimple_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as l}from"react-native-svg";var t=({children:o,size:r=24,...n})=>p.createElement(l,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Circle as s,Path as a}from"react-native-svg";var C=o=>e.createElement(t,{...o},e.createElement(a,{d:"M10 10.5H11C11.5523 10.5 12 10.9477 12 11.5V19M12 19H10M12 19H14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(s,{cx:"12",cy:"5.5",r:"1.5",fill:"currentColor"})),d=C;export{C as IconInfoSimple,d as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconInfoSimple/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 IconInfoSimple: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10 10.5H11C11.5523 10.5 12 10.9477 12 11.5V19M12 19H10M12 19H14\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle cx=\"12\" cy=\"5.5\" r=\"1.5\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconInfoSimple;\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,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,mEACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,MAAM,EAAE,MAAM,KAAK,eAAe,CACvD,EAIGM,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconInfoSimple","props","React","CentralIconBase","IconInfoSimple_default"]}
|
package/README.md
CHANGED
|
@@ -177,6 +177,7 @@ Below is a complete list of available icons:
|
|
|
177
177
|
- IconImagesSparkle
|
|
178
178
|
- IconImagine
|
|
179
179
|
- IconImagineAi
|
|
180
|
+
- IconImagineHead
|
|
180
181
|
- IconLightbulbSparkle
|
|
181
182
|
- IconListSparkle
|
|
182
183
|
- IconLiveVoiceTranslate
|
|
@@ -832,6 +833,7 @@ Below is a complete list of available icons:
|
|
|
832
833
|
- IconFolderLink
|
|
833
834
|
- IconFolderLink2
|
|
834
835
|
- IconFolderOpen
|
|
836
|
+
- IconFolderOpenFront
|
|
835
837
|
- IconFolderPaper
|
|
836
838
|
- IconFolderRestricted
|
|
837
839
|
- IconFolders
|
|
@@ -1120,6 +1122,7 @@ Below is a complete list of available icons:
|
|
|
1120
1122
|
- IconImport2
|
|
1121
1123
|
- IconInboxChecked
|
|
1122
1124
|
- IconInboxEmpty
|
|
1125
|
+
- IconInfoSimple
|
|
1123
1126
|
- IconLightBulb
|
|
1124
1127
|
- IconLightbulbGlow
|
|
1125
1128
|
- IconLightBulbSimple
|
package/filtered-icons.json
CHANGED
|
@@ -11536,6 +11536,20 @@
|
|
|
11536
11536
|
"packageName": "round-outlined-radius-2-stroke-2",
|
|
11537
11537
|
"componentName": "IconFolderOpen"
|
|
11538
11538
|
},
|
|
11539
|
+
{
|
|
11540
|
+
"category": "Folders & Files",
|
|
11541
|
+
"svg": "<path d=\"M3 8.5V6C3 4.89543 3.89543 4 5 4H9.17157C9.70201 4 10.2107 4.21071 10.5858 4.58579L11.4142 5.41421C11.7893 5.78929 12.298 6 12.8284 6H19C20.1046 6 21 6.89543 21 8V8.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M1.45453 14.6727C0.989352 13.3702 1.95495 12 3.33801 12H20.662C22.0451 12 23.0106 13.3702 22.5455 14.6727L21.474 17.6727C21.1898 18.4687 20.4358 19 19.5906 19H4.40944C3.56421 19 2.81024 18.4687 2.52595 17.6727L1.45453 14.6727Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
11542
|
+
"iconName": "folder-open-front",
|
|
11543
|
+
"variant": {
|
|
11544
|
+
"join": "round",
|
|
11545
|
+
"filled": "off",
|
|
11546
|
+
"radius": "2",
|
|
11547
|
+
"stroke": "2"
|
|
11548
|
+
},
|
|
11549
|
+
"createdAt": "2026-04-06T12:02:28.534874+00:00",
|
|
11550
|
+
"packageName": "round-outlined-radius-2-stroke-2",
|
|
11551
|
+
"componentName": "IconFolderOpenFront"
|
|
11552
|
+
},
|
|
11539
11553
|
{
|
|
11540
11554
|
"category": "Folders & Files",
|
|
11541
11555
|
"svg": "<path d=\"M4 8V6C4 4.89543 4.89543 4 6 4H14C15.1046 4 16 4.89543 16 6M4 8H8.17548C8.70591 8 9.21462 8.21071 9.58969 8.58579L11.4181 10.4142C11.7932 10.7893 12.3019 11 12.8323 11H16M4 8C3.44987 8 3.00391 8.44597 3.00391 8.99609V18C3.00391 19.1046 3.89934 20 5.00391 20H19.0039C20.1085 20 21.0039 19.1046 21.0039 18V12.0039C21.0039 11.4495 20.5544 11 20 11M16 11V6M16 11H20M16 6H18C19.1046 6 20 6.89543 20 8V11\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/>",
|
|
@@ -13818,6 +13832,20 @@
|
|
|
13818
13832
|
"packageName": "round-outlined-radius-2-stroke-2",
|
|
13819
13833
|
"componentName": "IconImagineAi"
|
|
13820
13834
|
},
|
|
13835
|
+
{
|
|
13836
|
+
"category": "AI & Magic",
|
|
13837
|
+
"svg": "<path d=\"M11.5002 3.0083C15.1294 3.1295 16.5562 4.58907 17.2083 6.60988C17.6702 8.04121 19.1745 8.62782 20.4729 9.24025C20.7517 9.37175 20.8324 9.724 20.6475 9.97059L19.5003 11.5001C22.0003 19.0001 16.5003 16.0001 15.704 19.1118L15.2439 21M7.20027 21L7.50022 19.5001C7.94623 16.8241 4.81147 14.5459 4.12939 11.9557\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.08091 3.77036L6.54359 2.37334C6.45708 2.14842 6.24099 2 6 2C5.75901 2 5.54292 2.14842 5.45641 2.37334L4.91909 3.77036C4.71594 4.29854 4.29854 4.71594 3.77036 4.91909L2.37334 5.45641C2.14842 5.54292 2 5.75901 2 6C2 6.24099 2.14842 6.45708 2.37334 6.54359L3.77036 7.08091C4.29854 7.28406 4.71594 7.70146 4.91909 8.22964L5.45641 9.62666C5.54292 9.85158 5.75901 10 6 10C6.24099 10 6.45708 9.85158 6.54359 9.62666L7.08091 8.22964C7.28406 7.70146 7.70146 7.28406 8.22964 7.08091L9.62666 6.54359C9.85158 6.45708 10 6.24099 10 6C10 5.75901 9.85158 5.54292 9.62666 5.45641L8.22964 4.91909C7.70146 4.71594 7.28406 4.29854 7.08091 3.77036Z\" fill=\"currentColor\"/>",
|
|
13838
|
+
"iconName": "imagine-head, thinking, ai",
|
|
13839
|
+
"variant": {
|
|
13840
|
+
"join": "round",
|
|
13841
|
+
"filled": "off",
|
|
13842
|
+
"radius": "2",
|
|
13843
|
+
"stroke": "2"
|
|
13844
|
+
},
|
|
13845
|
+
"createdAt": "2026-04-06T12:02:28.534874+00:00",
|
|
13846
|
+
"packageName": "round-outlined-radius-2-stroke-2",
|
|
13847
|
+
"componentName": "IconImagineHead"
|
|
13848
|
+
},
|
|
13821
13849
|
{
|
|
13822
13850
|
"category": "Social Media & Brands",
|
|
13823
13851
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.4554 2.25C19.8272 2.25 21.75 4.17278 21.75 6.54465V17.4554C21.75 19.8272 19.8272 21.75 17.4554 21.75H6.54465C4.17278 21.75 2.25 19.8272 2.25 17.4554V6.54465C2.25 4.17278 4.17278 2.25 6.54465 2.25H17.4554ZM12.0002 5.62563C10.1019 5.62565 8.28146 6.25372 6.93922 7.37172C5.59697 8.48972 4.8429 10.0061 4.84289 11.5871C4.84462 12.6156 5.16573 13.6261 5.77501 14.5206C6.38428 15.4151 7.26101 16.1631 8.31998 16.6919C8.03794 17.3233 7.61493 17.9154 7.06848 18.4437C8.12818 18.2577 9.12295 17.8669 9.97535 17.3017C10.6326 17.4644 11.3145 17.5476 12.0002 17.5487C13.8984 17.5487 15.7188 16.9206 17.0611 15.8026C18.4033 14.6846 19.1574 13.1682 19.1574 11.5871C19.1574 10.0061 18.4033 8.48972 17.0611 7.37172C15.7188 6.25373 13.8984 5.62565 12.0002 5.62563Z\" fill=\"currentColor\"/>",
|
|
@@ -13916,6 +13944,20 @@
|
|
|
13916
13944
|
"packageName": "round-outlined-radius-2-stroke-2",
|
|
13917
13945
|
"componentName": "IconInfinity"
|
|
13918
13946
|
},
|
|
13947
|
+
{
|
|
13948
|
+
"category": "Interface General",
|
|
13949
|
+
"svg": "<path d=\"M10 10.5H11C11.5523 10.5 12 10.9477 12 11.5V19M12 19H10M12 19H14\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"12\" cy=\"5.5\" r=\"1.5\" fill=\"currentColor\"/>",
|
|
13950
|
+
"iconName": "info-simple, tooltip, information",
|
|
13951
|
+
"variant": {
|
|
13952
|
+
"join": "round",
|
|
13953
|
+
"filled": "off",
|
|
13954
|
+
"radius": "2",
|
|
13955
|
+
"stroke": "2"
|
|
13956
|
+
},
|
|
13957
|
+
"createdAt": "2026-04-06T12:02:28.534874+00:00",
|
|
13958
|
+
"packageName": "round-outlined-radius-2-stroke-2",
|
|
13959
|
+
"componentName": "IconInfoSimple"
|
|
13960
|
+
},
|
|
13919
13961
|
{
|
|
13920
13962
|
"category": "Location",
|
|
13921
13963
|
"svg": "<path d=\"M3.5 14.9655C3.17607 14.0369 3 13.039 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12C21 13.039 20.8239 14.0369 20.5 14.9655\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.95797 18.5026L11.1269 11.058C11.5088 10.3762 12.4901 10.3762 12.872 11.058L17.0409 18.5026C17.5498 19.4114 16.5038 20.3956 15.6277 19.8324L12.5402 17.8476C12.2108 17.6358 11.7881 17.6358 11.4587 17.8476L8.37123 19.8324C7.49509 20.3956 6.44905 19.4114 6.95797 18.5026Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -823,6 +823,7 @@ export type CentralIconName =
|
|
|
823
823
|
| "IconFolderLink"
|
|
824
824
|
| "IconFolderLink2"
|
|
825
825
|
| "IconFolderOpen"
|
|
826
|
+
| "IconFolderOpenFront"
|
|
826
827
|
| "IconFolderPaper"
|
|
827
828
|
| "IconFolderRestricted"
|
|
828
829
|
| "IconFolders"
|
|
@@ -986,6 +987,7 @@ export type CentralIconName =
|
|
|
986
987
|
| "IconImagesSparkle"
|
|
987
988
|
| "IconImagine"
|
|
988
989
|
| "IconImagineAi"
|
|
990
|
+
| "IconImagineHead"
|
|
989
991
|
| "IconImessage"
|
|
990
992
|
| "IconImport"
|
|
991
993
|
| "IconImport2"
|
|
@@ -993,6 +995,7 @@ export type CentralIconName =
|
|
|
993
995
|
| "IconInboxEmpty"
|
|
994
996
|
| "IconIncrease"
|
|
995
997
|
| "IconInfinity"
|
|
998
|
+
| "IconInfoSimple"
|
|
996
999
|
| "IconInitiatives"
|
|
997
1000
|
| "IconInjection"
|
|
998
1001
|
| "IconInputForm"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-2-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.179",
|
|
4
4
|
"style": "round-outlined-radius-2-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-2-stroke-2/IconHome';",
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1920,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
|
-
"count":
|
|
17
|
+
"count": 75,
|
|
18
18
|
"icons": [
|
|
19
19
|
"IconAiTokens",
|
|
20
20
|
"IconAiTranslate",
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"IconImagesSparkle",
|
|
48
48
|
"IconImagine",
|
|
49
49
|
"IconImagineAi",
|
|
50
|
+
"IconImagineHead",
|
|
50
51
|
"IconLightbulbSparkle",
|
|
51
52
|
"IconListSparkle",
|
|
52
53
|
"IconLiveVoiceTranslate",
|
|
@@ -689,7 +690,7 @@
|
|
|
689
690
|
]
|
|
690
691
|
},
|
|
691
692
|
"Folders & Files": {
|
|
692
|
-
"count":
|
|
693
|
+
"count": 84,
|
|
693
694
|
"icons": [
|
|
694
695
|
"IconArchive",
|
|
695
696
|
"IconBlankPageLandscape",
|
|
@@ -728,6 +729,7 @@
|
|
|
728
729
|
"IconFolderLink",
|
|
729
730
|
"IconFolderLink2",
|
|
730
731
|
"IconFolderOpen",
|
|
732
|
+
"IconFolderOpenFront",
|
|
731
733
|
"IconFolderPaper",
|
|
732
734
|
"IconFolderRestricted",
|
|
733
735
|
"IconFolders",
|
|
@@ -927,7 +929,7 @@
|
|
|
927
929
|
]
|
|
928
930
|
},
|
|
929
931
|
"Interface General": {
|
|
930
|
-
"count":
|
|
932
|
+
"count": 196,
|
|
931
933
|
"icons": [
|
|
932
934
|
"IconAnchor1",
|
|
933
935
|
"IconAnchor2",
|
|
@@ -1028,6 +1030,7 @@
|
|
|
1028
1030
|
"IconImport2",
|
|
1029
1031
|
"IconInboxChecked",
|
|
1030
1032
|
"IconInboxEmpty",
|
|
1033
|
+
"IconInfoSimple",
|
|
1031
1034
|
"IconLightBulb",
|
|
1032
1035
|
"IconLightbulbGlow",
|
|
1033
1036
|
"IconLightBulbSimple",
|
|
@@ -2943,6 +2946,7 @@
|
|
|
2943
2946
|
"IconFolderLink": "folder-link, link, attachment",
|
|
2944
2947
|
"IconFolderLink2": "folder-link-2, link, attachment",
|
|
2945
2948
|
"IconFolderOpen": "folder-open",
|
|
2949
|
+
"IconFolderOpenFront": "folder-open-front",
|
|
2946
2950
|
"IconFolderPaper": "folder-paper",
|
|
2947
2951
|
"IconFolderRestricted": "folder-restricted",
|
|
2948
2952
|
"IconFolders": "folders",
|
|
@@ -3106,6 +3110,7 @@
|
|
|
3106
3110
|
"IconImagesSparkle": "images-sparkle, photos, pictures, shot, generate",
|
|
3107
3111
|
"IconImagine": "imagine, head, thinking",
|
|
3108
3112
|
"IconImagineAi": "imagine-ai, cube, room, 3d, opject, vector",
|
|
3113
|
+
"IconImagineHead": "imagine-head, thinking, ai",
|
|
3109
3114
|
"IconImessage": "imessage",
|
|
3110
3115
|
"IconImport": "import, download, save",
|
|
3111
3116
|
"IconImport2": "import-2, download, save",
|
|
@@ -3113,6 +3118,7 @@
|
|
|
3113
3118
|
"IconInboxEmpty": "inbox-empty",
|
|
3114
3119
|
"IconIncrease": "increase, scale, show-more, change-position",
|
|
3115
3120
|
"IconInfinity": "infinity, loop, boomerang",
|
|
3121
|
+
"IconInfoSimple": "info-simple, tooltip, information",
|
|
3116
3122
|
"IconInitiatives": "initiatives, nav, rooting",
|
|
3117
3123
|
"IconInjection": "injection",
|
|
3118
3124
|
"IconInputForm": "input-form, text-area, prompt, rename",
|
package/index.d.ts
CHANGED
|
@@ -822,6 +822,7 @@ export { IconFolderDownload, default as IconFolderDownloadDefault, } from "./Ico
|
|
|
822
822
|
export { IconFolderLink, default as IconFolderLinkDefault, } from "./IconFolderLink";
|
|
823
823
|
export { IconFolderLink2, default as IconFolderLink2Default, } from "./IconFolderLink2";
|
|
824
824
|
export { IconFolderOpen, default as IconFolderOpenDefault, } from "./IconFolderOpen";
|
|
825
|
+
export { IconFolderOpenFront, default as IconFolderOpenFrontDefault, } from "./IconFolderOpenFront";
|
|
825
826
|
export { IconFolderPaper, default as IconFolderPaperDefault, } from "./IconFolderPaper";
|
|
826
827
|
export { IconFolderRestricted, default as IconFolderRestrictedDefault, } from "./IconFolderRestricted";
|
|
827
828
|
export { IconFolderShared, default as IconFolderSharedDefault, } from "./IconFolderShared";
|
|
@@ -985,6 +986,7 @@ export { IconImagesCircle, default as IconImagesCircleDefault, } from "./IconIma
|
|
|
985
986
|
export { IconImagesSparkle, default as IconImagesSparkleDefault, } from "./IconImagesSparkle";
|
|
986
987
|
export { IconImagine, default as IconImagineDefault } from "./IconImagine";
|
|
987
988
|
export { IconImagineAi, default as IconImagineAiDefault, } from "./IconImagineAi";
|
|
989
|
+
export { IconImagineHead, default as IconImagineHeadDefault, } from "./IconImagineHead";
|
|
988
990
|
export { IconImessage, default as IconImessageDefault } from "./IconImessage";
|
|
989
991
|
export { IconImport, default as IconImportDefault } from "./IconImport";
|
|
990
992
|
export { IconImport2, default as IconImport2Default } from "./IconImport2";
|
|
@@ -992,6 +994,7 @@ export { IconInboxChecked, default as IconInboxCheckedDefault, } from "./IconInb
|
|
|
992
994
|
export { IconInboxEmpty, default as IconInboxEmptyDefault, } from "./IconInboxEmpty";
|
|
993
995
|
export { IconIncrease, default as IconIncreaseDefault } from "./IconIncrease";
|
|
994
996
|
export { IconInfinity, default as IconInfinityDefault } from "./IconInfinity";
|
|
997
|
+
export { IconInfoSimple, default as IconInfoSimpleDefault, } from "./IconInfoSimple";
|
|
995
998
|
export { IconInitiatives, default as IconInitiativesDefault, } from "./IconInitiatives";
|
|
996
999
|
export { IconInjection, default as IconInjectionDefault, } from "./IconInjection";
|
|
997
1000
|
export { IconInputForm, default as IconInputFormDefault, } from "./IconInputForm";
|