@central-icons-react-native/round-filled-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 u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of I(o))!P.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(l=B(o,e))||l.enumerable});return r};var m=(r,o,t)=>(t=r!=null?u(x(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),F=r=>a(n({},"__esModule",{value:!0}),r);var v={};g(v,{IconFolderOpenFront:()=>i,default:()=>d});module.exports=F(v);var p=m(require("react"));var s=m(require("react")),f=require("react-native-svg"),c=({children:r,size:o=24,...t})=>s.default.createElement(f.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var C=require("react-native-svg"),i=r=>p.default.createElement(c,{...r},p.default.createElement(C.Path,{d:"M20.6625 11C22.7369 11.0001 24.1852 13.0552 23.4877 15.0088L22.4164 18.0088C21.99 19.2026 20.8589 19.9999 19.5912 20H4.40957C3.14202 19.9997 2.01071 19.2025 1.58437 18.0088L0.513081 15.0088C-0.184295 13.0554 1.26413 11.0004 3.33828 11H20.6625Z",fill:"currentColor"}),p.default.createElement(C.Path,{d:"M9.17226 3C9.96769 3.00008 10.7308 3.31652 11.2934 3.87891L12.1215 4.70703C12.3088 4.89438 12.5636 4.99979 12.8285 5H19.0004C20.6572 5 22.0004 6.34315 22.0004 8V9H2.00039V6C2.00039 4.3433 3.34375 3.00026 5.00039 3H9.17226Z",fill:"currentColor"})),d=i;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=\"M20.6625 11C22.7369 11.0001 24.1852 13.0552 23.4877 15.0088L22.4164 18.0088C21.99 19.2026 20.8589 19.9999 19.5912 20H4.40957C3.14202 19.9997 2.01071 19.2025 1.58437 18.0088L0.513081 15.0088C-0.184295 13.0554 1.26413 11.0004 3.33828 11H20.6625Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9.17226 3C9.96769 3.00008 10.7308 3.31652 11.2934 3.87891L12.1215 4.70703C12.3088 4.89438 12.5636 4.99979 12.8285 5H19.0004C20.6572 5 22.0004 6.34315 22.0004 8V9H2.00039V6C2.00039 4.3433 3.34375 3.00026 5.00039 3H9.17226Z\"\n fill=\"currentColor\"\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,sPACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iOACF,KAAK,eACP,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 t from"react";import C from"react";import{Svg as l}from"react-native-svg";var e=({children:o,size:r=24,...p})=>C.createElement(l,{...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=>t.createElement(e,{...o},t.createElement(n,{d:"M20.6625 11C22.7369 11.0001 24.1852 13.0552 23.4877 15.0088L22.4164 18.0088C21.99 19.2026 20.8589 19.9999 19.5912 20H4.40957C3.14202 19.9997 2.01071 19.2025 1.58437 18.0088L0.513081 15.0088C-0.184295 13.0554 1.26413 11.0004 3.33828 11H20.6625Z",fill:"currentColor"}),t.createElement(n,{d:"M9.17226 3C9.96769 3.00008 10.7308 3.31652 11.2934 3.87891L12.1215 4.70703C12.3088 4.89438 12.5636 4.99979 12.8285 5H19.0004C20.6572 5 22.0004 6.34315 22.0004 8V9H2.00039V6C2.00039 4.3433 3.34375 3.00026 5.00039 3H9.17226Z",fill:"currentColor"})),P=a;export{a as IconFolderOpenFront,P 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=\"M20.6625 11C22.7369 11.0001 24.1852 13.0552 23.4877 15.0088L22.4164 18.0088C21.99 19.2026 20.8589 19.9999 19.5912 20H4.40957C3.14202 19.9997 2.01071 19.2025 1.58437 18.0088L0.513081 15.0088C-0.184295 13.0554 1.26413 11.0004 3.33828 11H20.6625Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9.17226 3C9.96769 3.00008 10.7308 3.31652 11.2934 3.87891L12.1215 4.70703C12.3088 4.89438 12.5636 4.99979 12.8285 5H19.0004C20.6572 5 22.0004 6.34315 22.0004 8V9H2.00039V6C2.00039 4.3433 3.34375 3.00026 5.00039 3H9.17226Z\"\n fill=\"currentColor\"\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,sPACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iOACF,KAAK,eACP,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 I=Object.create;var t=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,u=Object.prototype.hasOwnProperty;var x=(C,r)=>{for(var o in r)t(C,o,{get:r[o],enumerable:!0})},a=(C,r,o,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let e of B(r))!u.call(C,e)&&e!==o&&t(C,e,{get:()=>r[e],enumerable:!(p=i(r,e))||p.enumerable});return C};var L=(C,r,o)=>(o=C!=null?I(g(C)):{},a(r||!C||!C.__esModule?t(o,"default",{value:C,enumerable:!0}):o,C)),P=C=>a(t({},"__esModule",{value:!0}),C);var d={};x(d,{IconImagineHead:()=>f,default:()=>v});module.exports=P(d);var n=L(require("react"));var m=L(require("react")),l=require("react-native-svg"),s=({children:C,size:r=24,...o})=>m.default.createElement(l.Svg,{...o,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},C);var c=require("react-native-svg"),f=C=>n.default.createElement(s,{...C},n.default.createElement(c.Path,{d:"M3.875 10.9893C4.40883 10.8489 4.95589 11.1675 5.09668 11.7012C5.23051 12.209 5.49563 12.7406 5.85742 13.3262C6.23282 13.9337 6.63109 14.4774 7.07227 15.1436C7.87731 16.3591 8.78124 17.9014 8.4873 19.665C8.48558 19.6754 8.48349 19.686 8.48145 19.6963L8.18164 21.1963C8.07323 21.7374 7.54602 22.0892 7.00488 21.9814C6.46357 21.8732 6.1119 21.346 6.21973 20.8047L6.51465 19.3301C6.6637 18.42 6.22349 17.485 5.4043 16.248C5.03264 15.6869 4.54621 15.0081 4.15625 14.377C3.75265 13.7237 3.37038 12.9977 3.16309 12.2109C3.02246 11.6769 3.34106 11.13 3.875 10.9893ZM11.5342 2.00977C13.4705 2.07451 14.9472 2.49916 16.0498 3.28125C17.165 4.07249 17.7884 5.15179 18.1602 6.30371C18.2986 6.73203 18.5999 7.07479 19.0869 7.40332C19.6007 7.74982 20.2006 8.00583 20.9004 8.33594C21.7734 8.74831 21.9981 9.83812 21.4482 10.5713L20.6084 11.6904C21.1195 13.3623 21.2645 14.6345 21.0518 15.626C20.7945 16.8235 20.0566 17.4639 19.2832 17.8477C18.925 18.0253 18.5481 18.1549 18.2373 18.2607C17.9045 18.3741 17.6418 18.4628 17.4062 18.5723C16.9849 18.7682 16.7729 18.9694 16.6729 19.3604L16.2158 21.2373C16.0849 21.7734 15.544 22.102 15.0078 21.9717C14.4713 21.841 14.142 21.3001 14.2725 20.7637L14.7324 18.876L14.7354 18.8643C15.0334 17.6995 15.8081 17.1089 16.5635 16.7578C16.9164 16.5938 17.2914 16.4698 17.5928 16.3672C17.916 16.2571 18.172 16.167 18.3945 16.0566C18.7827 15.864 19.0009 15.6519 19.0967 15.2061C19.2157 14.651 19.16 13.6412 18.5518 11.8164C18.4482 11.5053 18.5044 11.1628 18.7012 10.9004L19.4707 9.87305C18.9853 9.64572 18.4447 9.38317 17.9678 9.06152C17.2632 8.58614 16.5804 7.9191 16.2568 6.91699C15.9766 6.04885 15.5603 5.38697 14.8926 4.91309C14.2117 4.43011 13.1597 4.06444 11.4678 4.00781C10.916 3.98939 10.4829 3.52727 10.501 2.97559C10.5194 2.42361 10.9822 1.99133 11.5342 2.00977ZM6 2C6.24094 2 6.4574 2.1482 6.54395 2.37305L7.08105 3.77051C7.2842 4.29855 7.70145 4.71579 8.22949 4.91895L9.62695 5.45605C9.8518 5.5426 10 5.75906 10 6C10 6.24094 9.8518 6.4574 9.62695 6.54395L8.22949 7.08105C7.70145 7.2842 7.28421 7.70145 7.08105 8.22949L6.54395 9.62695C6.4574 9.8518 6.24094 10 6 10C5.75906 10 5.5426 9.8518 5.45605 9.62695L4.91895 8.22949C4.71579 7.70145 4.29855 7.28421 3.77051 7.08105L2.37305 6.54395C2.1482 6.4574 2 6.24094 2 6C2 5.75906 2.1482 5.5426 2.37305 5.45605L3.77051 4.91895C4.29855 4.71579 4.71579 4.29855 4.91895 3.77051L5.45605 2.37305C5.5426 2.1482 5.75906 2 6 2Z",fill:"currentColor"})),v=f;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=\"M3.875 10.9893C4.40883 10.8489 4.95589 11.1675 5.09668 11.7012C5.23051 12.209 5.49563 12.7406 5.85742 13.3262C6.23282 13.9337 6.63109 14.4774 7.07227 15.1436C7.87731 16.3591 8.78124 17.9014 8.4873 19.665C8.48558 19.6754 8.48349 19.686 8.48145 19.6963L8.18164 21.1963C8.07323 21.7374 7.54602 22.0892 7.00488 21.9814C6.46357 21.8732 6.1119 21.346 6.21973 20.8047L6.51465 19.3301C6.6637 18.42 6.22349 17.485 5.4043 16.248C5.03264 15.6869 4.54621 15.0081 4.15625 14.377C3.75265 13.7237 3.37038 12.9977 3.16309 12.2109C3.02246 11.6769 3.34106 11.13 3.875 10.9893ZM11.5342 2.00977C13.4705 2.07451 14.9472 2.49916 16.0498 3.28125C17.165 4.07249 17.7884 5.15179 18.1602 6.30371C18.2986 6.73203 18.5999 7.07479 19.0869 7.40332C19.6007 7.74982 20.2006 8.00583 20.9004 8.33594C21.7734 8.74831 21.9981 9.83812 21.4482 10.5713L20.6084 11.6904C21.1195 13.3623 21.2645 14.6345 21.0518 15.626C20.7945 16.8235 20.0566 17.4639 19.2832 17.8477C18.925 18.0253 18.5481 18.1549 18.2373 18.2607C17.9045 18.3741 17.6418 18.4628 17.4062 18.5723C16.9849 18.7682 16.7729 18.9694 16.6729 19.3604L16.2158 21.2373C16.0849 21.7734 15.544 22.102 15.0078 21.9717C14.4713 21.841 14.142 21.3001 14.2725 20.7637L14.7324 18.876L14.7354 18.8643C15.0334 17.6995 15.8081 17.1089 16.5635 16.7578C16.9164 16.5938 17.2914 16.4698 17.5928 16.3672C17.916 16.2571 18.172 16.167 18.3945 16.0566C18.7827 15.864 19.0009 15.6519 19.0967 15.2061C19.2157 14.651 19.16 13.6412 18.5518 11.8164C18.4482 11.5053 18.5044 11.1628 18.7012 10.9004L19.4707 9.87305C18.9853 9.64572 18.4447 9.38317 17.9678 9.06152C17.2632 8.58614 16.5804 7.9191 16.2568 6.91699C15.9766 6.04885 15.5603 5.38697 14.8926 4.91309C14.2117 4.43011 13.1597 4.06444 11.4678 4.00781C10.916 3.98939 10.4829 3.52727 10.501 2.97559C10.5194 2.42361 10.9822 1.99133 11.5342 2.00977ZM6 2C6.24094 2 6.4574 2.1482 6.54395 2.37305L7.08105 3.77051C7.2842 4.29855 7.70145 4.71579 8.22949 4.91895L9.62695 5.45605C9.8518 5.5426 10 5.75906 10 6C10 6.24094 9.8518 6.4574 9.62695 6.54395L8.22949 7.08105C7.70145 7.2842 7.28421 7.70145 7.08105 8.22949L6.54395 9.62695C6.4574 9.8518 6.24094 10 6 10C5.75906 10 5.5426 9.8518 5.45605 9.62695L4.91895 8.22949C4.71579 7.70145 4.29855 7.28421 3.77051 7.08105L2.37305 6.54395C2.1482 6.4574 2 6.24094 2 6C2 5.75906 2.1482 5.5426 2.37305 5.45605L3.77051 4.91895C4.29855 4.71579 4.71579 4.29855 4.91895 3.77051L5.45605 2.37305C5.5426 2.1482 5.75906 2 6 2Z\"\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,y1EACF,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 n from"react";import{Svg as p}from"react-native-svg";var o=({children:r,size:C=24,...t})=>n.createElement(p,{...t,width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},r);import{Path as a}from"react-native-svg";var L=r=>e.createElement(o,{...r},e.createElement(a,{d:"M3.875 10.9893C4.40883 10.8489 4.95589 11.1675 5.09668 11.7012C5.23051 12.209 5.49563 12.7406 5.85742 13.3262C6.23282 13.9337 6.63109 14.4774 7.07227 15.1436C7.87731 16.3591 8.78124 17.9014 8.4873 19.665C8.48558 19.6754 8.48349 19.686 8.48145 19.6963L8.18164 21.1963C8.07323 21.7374 7.54602 22.0892 7.00488 21.9814C6.46357 21.8732 6.1119 21.346 6.21973 20.8047L6.51465 19.3301C6.6637 18.42 6.22349 17.485 5.4043 16.248C5.03264 15.6869 4.54621 15.0081 4.15625 14.377C3.75265 13.7237 3.37038 12.9977 3.16309 12.2109C3.02246 11.6769 3.34106 11.13 3.875 10.9893ZM11.5342 2.00977C13.4705 2.07451 14.9472 2.49916 16.0498 3.28125C17.165 4.07249 17.7884 5.15179 18.1602 6.30371C18.2986 6.73203 18.5999 7.07479 19.0869 7.40332C19.6007 7.74982 20.2006 8.00583 20.9004 8.33594C21.7734 8.74831 21.9981 9.83812 21.4482 10.5713L20.6084 11.6904C21.1195 13.3623 21.2645 14.6345 21.0518 15.626C20.7945 16.8235 20.0566 17.4639 19.2832 17.8477C18.925 18.0253 18.5481 18.1549 18.2373 18.2607C17.9045 18.3741 17.6418 18.4628 17.4062 18.5723C16.9849 18.7682 16.7729 18.9694 16.6729 19.3604L16.2158 21.2373C16.0849 21.7734 15.544 22.102 15.0078 21.9717C14.4713 21.841 14.142 21.3001 14.2725 20.7637L14.7324 18.876L14.7354 18.8643C15.0334 17.6995 15.8081 17.1089 16.5635 16.7578C16.9164 16.5938 17.2914 16.4698 17.5928 16.3672C17.916 16.2571 18.172 16.167 18.3945 16.0566C18.7827 15.864 19.0009 15.6519 19.0967 15.2061C19.2157 14.651 19.16 13.6412 18.5518 11.8164C18.4482 11.5053 18.5044 11.1628 18.7012 10.9004L19.4707 9.87305C18.9853 9.64572 18.4447 9.38317 17.9678 9.06152C17.2632 8.58614 16.5804 7.9191 16.2568 6.91699C15.9766 6.04885 15.5603 5.38697 14.8926 4.91309C14.2117 4.43011 13.1597 4.06444 11.4678 4.00781C10.916 3.98939 10.4829 3.52727 10.501 2.97559C10.5194 2.42361 10.9822 1.99133 11.5342 2.00977ZM6 2C6.24094 2 6.4574 2.1482 6.54395 2.37305L7.08105 3.77051C7.2842 4.29855 7.70145 4.71579 8.22949 4.91895L9.62695 5.45605C9.8518 5.5426 10 5.75906 10 6C10 6.24094 9.8518 6.4574 9.62695 6.54395L8.22949 7.08105C7.70145 7.2842 7.28421 7.70145 7.08105 8.22949L6.54395 9.62695C6.4574 9.8518 6.24094 10 6 10C5.75906 10 5.5426 9.8518 5.45605 9.62695L4.91895 8.22949C4.71579 7.70145 4.29855 7.28421 3.77051 7.08105L2.37305 6.54395C2.1482 6.4574 2 6.24094 2 6C2 5.75906 2.1482 5.5426 2.37305 5.45605L3.77051 4.91895C4.29855 4.71579 4.71579 4.29855 4.91895 3.77051L5.45605 2.37305C5.5426 2.1482 5.75906 2 6 2Z",fill:"currentColor"})),u=L;export{L as IconImagineHead,u 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=\"M3.875 10.9893C4.40883 10.8489 4.95589 11.1675 5.09668 11.7012C5.23051 12.209 5.49563 12.7406 5.85742 13.3262C6.23282 13.9337 6.63109 14.4774 7.07227 15.1436C7.87731 16.3591 8.78124 17.9014 8.4873 19.665C8.48558 19.6754 8.48349 19.686 8.48145 19.6963L8.18164 21.1963C8.07323 21.7374 7.54602 22.0892 7.00488 21.9814C6.46357 21.8732 6.1119 21.346 6.21973 20.8047L6.51465 19.3301C6.6637 18.42 6.22349 17.485 5.4043 16.248C5.03264 15.6869 4.54621 15.0081 4.15625 14.377C3.75265 13.7237 3.37038 12.9977 3.16309 12.2109C3.02246 11.6769 3.34106 11.13 3.875 10.9893ZM11.5342 2.00977C13.4705 2.07451 14.9472 2.49916 16.0498 3.28125C17.165 4.07249 17.7884 5.15179 18.1602 6.30371C18.2986 6.73203 18.5999 7.07479 19.0869 7.40332C19.6007 7.74982 20.2006 8.00583 20.9004 8.33594C21.7734 8.74831 21.9981 9.83812 21.4482 10.5713L20.6084 11.6904C21.1195 13.3623 21.2645 14.6345 21.0518 15.626C20.7945 16.8235 20.0566 17.4639 19.2832 17.8477C18.925 18.0253 18.5481 18.1549 18.2373 18.2607C17.9045 18.3741 17.6418 18.4628 17.4062 18.5723C16.9849 18.7682 16.7729 18.9694 16.6729 19.3604L16.2158 21.2373C16.0849 21.7734 15.544 22.102 15.0078 21.9717C14.4713 21.841 14.142 21.3001 14.2725 20.7637L14.7324 18.876L14.7354 18.8643C15.0334 17.6995 15.8081 17.1089 16.5635 16.7578C16.9164 16.5938 17.2914 16.4698 17.5928 16.3672C17.916 16.2571 18.172 16.167 18.3945 16.0566C18.7827 15.864 19.0009 15.6519 19.0967 15.2061C19.2157 14.651 19.16 13.6412 18.5518 11.8164C18.4482 11.5053 18.5044 11.1628 18.7012 10.9004L19.4707 9.87305C18.9853 9.64572 18.4447 9.38317 17.9678 9.06152C17.2632 8.58614 16.5804 7.9191 16.2568 6.91699C15.9766 6.04885 15.5603 5.38697 14.8926 4.91309C14.2117 4.43011 13.1597 4.06444 11.4678 4.00781C10.916 3.98939 10.4829 3.52727 10.501 2.97559C10.5194 2.42361 10.9822 1.99133 11.5342 2.00977ZM6 2C6.24094 2 6.4574 2.1482 6.54395 2.37305L7.08105 3.77051C7.2842 4.29855 7.70145 4.71579 8.22949 4.91895L9.62695 5.45605C9.8518 5.5426 10 5.75906 10 6C10 6.24094 9.8518 6.4574 9.62695 6.54395L8.22949 7.08105C7.70145 7.2842 7.28421 7.70145 7.08105 8.22949L6.54395 9.62695C6.4574 9.8518 6.24094 10 6 10C5.75906 10 5.5426 9.8518 5.45605 9.62695L4.91895 8.22949C4.71579 7.70145 4.29855 7.28421 3.77051 7.08105L2.37305 6.54395C2.1482 6.4574 2 6.24094 2 6C2 5.75906 2.1482 5.5426 2.37305 5.45605L3.77051 4.91895C4.29855 4.71579 4.71579 4.29855 4.91895 3.77051L5.45605 2.37305C5.5426 2.1482 5.75906 2 6 2Z\"\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,y1EACF,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 I=Object.create;var n=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)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of B(o))!P.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(l=u(o,e))||l.enumerable});return r};var m=(r,o,t)=>(t=r!=null?I(x(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),v=r=>a(n({},"__esModule",{value:!0}),r);var S={};g(S,{IconInfoSimple:()=>i,default:()=>H});module.exports=v(S);var C=m(require("react"));var f=m(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...t})=>f.default.createElement(s.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 p=require("react-native-svg"),i=r=>C.default.createElement(c,{...r},C.default.createElement(p.Path,{d:"M11 9.5C12.1046 9.5 13 10.3954 13 11.5V18H14C14.5523 18 15 18.4477 15 19C15 19.5523 14.5523 20 14 20H10C9.44772 20 9 19.5523 9 19C9 18.4477 9.44772 18 10 18H11V11.5H10C9.44772 11.5 9 11.0523 9 10.5C9 9.94772 9.44772 9.5 10 9.5H11Z",fill:"currentColor"}),C.default.createElement(p.Path,{d:"M12 4C12.8284 4 13.5 4.67157 13.5 5.5C13.5 6.32843 12.8284 7 12 7C11.1716 7 10.5 6.32843 10.5 5.5C10.5 4.67157 11.1716 4 12 4Z",fill:"currentColor"})),H=i;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 { Path } from \"react-native-svg\";\n\nexport const IconInfoSimple: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11 9.5C12.1046 9.5 13 10.3954 13 11.5V18H14C14.5523 18 15 18.4477 15 19C15 19.5523 14.5523 20 14 20H10C9.44772 20 9 19.5523 9 19C9 18.4477 9.44772 18 10 18H11V11.5H10C9.44772 11.5 9 11.0523 9 10.5C9 9.94772 9.44772 9.5 10 9.5H11Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12 4C12.8284 4 13.5 4.67157 13.5 5.5C13.5 6.32843 12.8284 7 12 7C11.1716 7 10.5 6.32843 10.5 5.5C10.5 4.67157 11.1716 4 12 4Z\"\n fill=\"currentColor\"\n />\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,EAAqB,4BAERC,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,yOACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iIACF,KAAK,eACP,CACF,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 t from"react";import p from"react";import{Svg as l}from"react-native-svg";var e=({children:o,size:r=24,...C})=>p.createElement(l,{...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 a=o=>t.createElement(e,{...o},t.createElement(n,{d:"M11 9.5C12.1046 9.5 13 10.3954 13 11.5V18H14C14.5523 18 15 18.4477 15 19C15 19.5523 14.5523 20 14 20H10C9.44772 20 9 19.5523 9 19C9 18.4477 9.44772 18 10 18H11V11.5H10C9.44772 11.5 9 11.0523 9 10.5C9 9.94772 9.44772 9.5 10 9.5H11Z",fill:"currentColor"}),t.createElement(n,{d:"M12 4C12.8284 4 13.5 4.67157 13.5 5.5C13.5 6.32843 12.8284 7 12 7C11.1716 7 10.5 6.32843 10.5 5.5C10.5 4.67157 11.1716 4 12 4Z",fill:"currentColor"})),P=a;export{a as IconInfoSimple,P 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 { Path } from \"react-native-svg\";\n\nexport const IconInfoSimple: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11 9.5C12.1046 9.5 13 10.3954 13 11.5V18H14C14.5523 18 15 18.4477 15 19C15 19.5523 14.5523 20 14 20H10C9.44772 20 9 19.5523 9 19C9 18.4477 9.44772 18 10 18H11V11.5H10C9.44772 11.5 9 11.0523 9 10.5C9 9.94772 9.44772 9.5 10 9.5H11Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12 4C12.8284 4 13.5 4.67157 13.5 5.5C13.5 6.32843 12.8284 7 12 7C11.1716 7 10.5 6.32843 10.5 5.5C10.5 4.67157 11.1716 4 12 4Z\"\n fill=\"currentColor\"\n />\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,QAAAG,MAAY,mBAEd,IAAMC,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,yOACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iIACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","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-filled-radius-2-stroke-2",
|
|
11537
11537
|
"componentName": "IconFolderOpen"
|
|
11538
11538
|
},
|
|
11539
|
+
{
|
|
11540
|
+
"category": "Folders & Files",
|
|
11541
|
+
"svg": "<path d=\"M20.6625 11C22.7369 11.0001 24.1852 13.0552 23.4877 15.0088L22.4164 18.0088C21.99 19.2026 20.8589 19.9999 19.5912 20H4.40957C3.14202 19.9997 2.01071 19.2025 1.58437 18.0088L0.513081 15.0088C-0.184295 13.0554 1.26413 11.0004 3.33828 11H20.6625Z\" fill=\"currentColor\"/><path d=\"M9.17226 3C9.96769 3.00008 10.7308 3.31652 11.2934 3.87891L12.1215 4.70703C12.3088 4.89438 12.5636 4.99979 12.8285 5H19.0004C20.6572 5 22.0004 6.34315 22.0004 8V9H2.00039V6C2.00039 4.3433 3.34375 3.00026 5.00039 3H9.17226Z\" fill=\"currentColor\"/>",
|
|
11542
|
+
"iconName": "folder-open-front",
|
|
11543
|
+
"variant": {
|
|
11544
|
+
"join": "round",
|
|
11545
|
+
"filled": "on",
|
|
11546
|
+
"radius": "2",
|
|
11547
|
+
"stroke": "2"
|
|
11548
|
+
},
|
|
11549
|
+
"createdAt": "2026-04-06T12:02:28.534874+00:00",
|
|
11550
|
+
"packageName": "round-filled-radius-2-stroke-2",
|
|
11551
|
+
"componentName": "IconFolderOpenFront"
|
|
11552
|
+
},
|
|
11539
11553
|
{
|
|
11540
11554
|
"category": "Folders & Files",
|
|
11541
11555
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 6C3 4.34315 4.34315 3 6 3H14C15.3062 3 16.4175 3.83481 16.8293 5H18C19.6569 5 21 6.34315 21 8V10.267C21.6 10.6132 22.0039 11.2614 22.0039 12.0039V18C22.0039 19.6569 20.6608 21 19.0039 21H5.00391C3.34705 21 2.00391 19.6569 2.00391 18V8.99609C2.00391 8.25806 2.40444 7.61358 3 7.26817V6ZM5 7H8.17548C8.97113 7 9.73419 7.31607 10.2968 7.87868L12.1252 9.70711C12.3128 9.89464 12.5671 10 12.8323 10H15V6C15 5.44772 14.5523 5 14 5H6C5.44772 5 5 5.44772 5 6V7ZM17 7V10H19V8C19 7.44772 18.5523 7 18 7H17Z\" fill=\"currentColor\"/>",
|
|
@@ -13818,6 +13832,20 @@
|
|
|
13818
13832
|
"packageName": "round-filled-radius-2-stroke-2",
|
|
13819
13833
|
"componentName": "IconImagineAi"
|
|
13820
13834
|
},
|
|
13835
|
+
{
|
|
13836
|
+
"category": "AI & Magic",
|
|
13837
|
+
"svg": "<path d=\"M3.875 10.9893C4.40883 10.8489 4.95589 11.1675 5.09668 11.7012C5.23051 12.209 5.49563 12.7406 5.85742 13.3262C6.23282 13.9337 6.63109 14.4774 7.07227 15.1436C7.87731 16.3591 8.78124 17.9014 8.4873 19.665C8.48558 19.6754 8.48349 19.686 8.48145 19.6963L8.18164 21.1963C8.07323 21.7374 7.54602 22.0892 7.00488 21.9814C6.46357 21.8732 6.1119 21.346 6.21973 20.8047L6.51465 19.3301C6.6637 18.42 6.22349 17.485 5.4043 16.248C5.03264 15.6869 4.54621 15.0081 4.15625 14.377C3.75265 13.7237 3.37038 12.9977 3.16309 12.2109C3.02246 11.6769 3.34106 11.13 3.875 10.9893ZM11.5342 2.00977C13.4705 2.07451 14.9472 2.49916 16.0498 3.28125C17.165 4.07249 17.7884 5.15179 18.1602 6.30371C18.2986 6.73203 18.5999 7.07479 19.0869 7.40332C19.6007 7.74982 20.2006 8.00583 20.9004 8.33594C21.7734 8.74831 21.9981 9.83812 21.4482 10.5713L20.6084 11.6904C21.1195 13.3623 21.2645 14.6345 21.0518 15.626C20.7945 16.8235 20.0566 17.4639 19.2832 17.8477C18.925 18.0253 18.5481 18.1549 18.2373 18.2607C17.9045 18.3741 17.6418 18.4628 17.4062 18.5723C16.9849 18.7682 16.7729 18.9694 16.6729 19.3604L16.2158 21.2373C16.0849 21.7734 15.544 22.102 15.0078 21.9717C14.4713 21.841 14.142 21.3001 14.2725 20.7637L14.7324 18.876L14.7354 18.8643C15.0334 17.6995 15.8081 17.1089 16.5635 16.7578C16.9164 16.5938 17.2914 16.4698 17.5928 16.3672C17.916 16.2571 18.172 16.167 18.3945 16.0566C18.7827 15.864 19.0009 15.6519 19.0967 15.2061C19.2157 14.651 19.16 13.6412 18.5518 11.8164C18.4482 11.5053 18.5044 11.1628 18.7012 10.9004L19.4707 9.87305C18.9853 9.64572 18.4447 9.38317 17.9678 9.06152C17.2632 8.58614 16.5804 7.9191 16.2568 6.91699C15.9766 6.04885 15.5603 5.38697 14.8926 4.91309C14.2117 4.43011 13.1597 4.06444 11.4678 4.00781C10.916 3.98939 10.4829 3.52727 10.501 2.97559C10.5194 2.42361 10.9822 1.99133 11.5342 2.00977ZM6 2C6.24094 2 6.4574 2.1482 6.54395 2.37305L7.08105 3.77051C7.2842 4.29855 7.70145 4.71579 8.22949 4.91895L9.62695 5.45605C9.8518 5.5426 10 5.75906 10 6C10 6.24094 9.8518 6.4574 9.62695 6.54395L8.22949 7.08105C7.70145 7.2842 7.28421 7.70145 7.08105 8.22949L6.54395 9.62695C6.4574 9.8518 6.24094 10 6 10C5.75906 10 5.5426 9.8518 5.45605 9.62695L4.91895 8.22949C4.71579 7.70145 4.29855 7.28421 3.77051 7.08105L2.37305 6.54395C2.1482 6.4574 2 6.24094 2 6C2 5.75906 2.1482 5.5426 2.37305 5.45605L3.77051 4.91895C4.29855 4.71579 4.71579 4.29855 4.91895 3.77051L5.45605 2.37305C5.5426 2.1482 5.75906 2 6 2Z\" fill=\"currentColor\"/>",
|
|
13838
|
+
"iconName": "imagine-head, thinking, ai",
|
|
13839
|
+
"variant": {
|
|
13840
|
+
"join": "round",
|
|
13841
|
+
"filled": "on",
|
|
13842
|
+
"radius": "2",
|
|
13843
|
+
"stroke": "2"
|
|
13844
|
+
},
|
|
13845
|
+
"createdAt": "2026-04-06T12:02:28.534874+00:00",
|
|
13846
|
+
"packageName": "round-filled-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-filled-radius-2-stroke-2",
|
|
13917
13945
|
"componentName": "IconInfinity"
|
|
13918
13946
|
},
|
|
13947
|
+
{
|
|
13948
|
+
"category": "Interface General",
|
|
13949
|
+
"svg": "<path d=\"M11 9.5C12.1046 9.5 13 10.3954 13 11.5V18H14C14.5523 18 15 18.4477 15 19C15 19.5523 14.5523 20 14 20H10C9.44772 20 9 19.5523 9 19C9 18.4477 9.44772 18 10 18H11V11.5H10C9.44772 11.5 9 11.0523 9 10.5C9 9.94772 9.44772 9.5 10 9.5H11Z\" fill=\"currentColor\"/><path d=\"M12 4C12.8284 4 13.5 4.67157 13.5 5.5C13.5 6.32843 12.8284 7 12 7C11.1716 7 10.5 6.32843 10.5 5.5C10.5 4.67157 11.1716 4 12 4Z\" fill=\"currentColor\"/>",
|
|
13950
|
+
"iconName": "info-simple, tooltip, information",
|
|
13951
|
+
"variant": {
|
|
13952
|
+
"join": "round",
|
|
13953
|
+
"filled": "on",
|
|
13954
|
+
"radius": "2",
|
|
13955
|
+
"stroke": "2"
|
|
13956
|
+
},
|
|
13957
|
+
"createdAt": "2026-04-06T12:02:28.534874+00:00",
|
|
13958
|
+
"packageName": "round-filled-radius-2-stroke-2",
|
|
13959
|
+
"componentName": "IconInfoSimple"
|
|
13960
|
+
},
|
|
13919
13961
|
{
|
|
13920
13962
|
"category": "Location",
|
|
13921
13963
|
"svg": "<path d=\"M4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12C20 12.9254 19.8433 13.812 19.5558 14.6361C19.3739 15.1576 19.6492 15.7278 20.1706 15.9097C20.6921 16.0916 21.2623 15.8163 21.4442 15.2949C21.8046 14.2619 22 13.1527 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 13.1527 2.19544 14.2619 2.5558 15.2949C2.73772 15.8163 3.30792 16.0916 3.82938 15.9097C4.35085 15.7278 4.62611 15.1576 4.4442 14.6361C4.1567 13.812 4 12.9254 4 12Z\" fill=\"currentColor\"/><path d=\"M13.745 10.5694C12.9813 9.20572 11.0187 9.20572 10.255 10.5694L6.08602 18.014C5.0682 19.8316 7.16025 21.8001 8.91254 20.6736L12 18.6888L15.0875 20.6736C16.8397 21.8001 18.9318 19.8316 17.914 18.014L13.745 10.5694Z\" fill=\"currentColor\"/>",
|
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-filled-radius-2-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.179",
|
|
4
4
|
"style": "round-filled-radius-2-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-filled-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";
|