@central-icons-react-native/round-filled-radius-2-stroke-1 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.7628 11C22.3584 11 23.5456 12.4744 23.2052 14.0332L22.3312 18.0332C22.0803 19.1812 21.0639 20 19.8888 20H4.10852C2.93403 19.9998 1.91827 19.1815 1.66711 18.0342L0.791136 14.0342C0.450143 12.4752 1.63761 11.0001 3.23352 11H20.7628Z",fill:"currentColor"}),p.default.createElement(C.Path,{d:"M9.09094 3C9.73057 3 10.3463 3.24566 10.8107 3.68555L11.7648 4.58887C12.0433 4.8527 12.4123 4.99995 12.796 5H19.4991C20.8799 5 21.9991 6.11929 21.9991 7.5V10H1.99914V5.5C1.99914 4.11933 3.11849 3.00007 4.49914 3H9.09094Z",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.7628 11C22.3584 11 23.5456 12.4744 23.2052 14.0332L22.3312 18.0332C22.0803 19.1812 21.0639 20 19.8888 20H4.10852C2.93403 19.9998 1.91827 19.1815 1.66711 18.0342L0.791136 14.0342C0.450143 12.4752 1.63761 11.0001 3.23352 11H20.7628Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9.09094 3C9.73057 3 10.3463 3.24566 10.8107 3.68555L11.7648 4.58887C12.0433 4.8527 12.4123 4.99995 12.796 5H19.4991C20.8799 5 21.9991 6.11929 21.9991 7.5V10H1.99914V5.5C1.99914 4.11933 3.11849 3.00007 4.49914 3H9.09094Z\"\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,6OACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+NACF,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.7628 11C22.3584 11 23.5456 12.4744 23.2052 14.0332L22.3312 18.0332C22.0803 19.1812 21.0639 20 19.8888 20H4.10852C2.93403 19.9998 1.91827 19.1815 1.66711 18.0342L0.791136 14.0342C0.450143 12.4752 1.63761 11.0001 3.23352 11H20.7628Z",fill:"currentColor"}),t.createElement(n,{d:"M9.09094 3C9.73057 3 10.3463 3.24566 10.8107 3.68555L11.7648 4.58887C12.0433 4.8527 12.4123 4.99995 12.796 5H19.4991C20.8799 5 21.9991 6.11929 21.9991 7.5V10H1.99914V5.5C1.99914 4.11933 3.11849 3.00007 4.49914 3H9.09094Z",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.7628 11C22.3584 11 23.5456 12.4744 23.2052 14.0332L22.3312 18.0332C22.0803 19.1812 21.0639 20 19.8888 20H4.10852C2.93403 19.9998 1.91827 19.1815 1.66711 18.0342L0.791136 14.0342C0.450143 12.4752 1.63761 11.0001 3.23352 11H20.7628Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9.09094 3C9.73057 3 10.3463 3.24566 10.8107 3.68555L11.7648 4.58887C12.0433 4.8527 12.4123 4.99995 12.796 5H19.4991C20.8799 5 21.9991 6.11929 21.9991 7.5V10H1.99914V5.5C1.99914 4.11933 3.11849 3.00007 4.49914 3H9.09094Z\"\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,6OACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+NACF,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 u=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var x=(C,r)=>{for(var o in r)t(C,o,{get:r[o],enumerable:!0})},a=(C,r,o,l)=>{if(r&&typeof r=="object"||typeof r=="function")for(let e of I(r))!g.call(C,e)&&e!==o&&t(C,e,{get:()=>r[e],enumerable:!(l=u(r,e))||l.enumerable});return C};var L=(C,r,o)=>(o=C!=null?i(B(C)):{},a(r||!C||!C.__esModule?t(o,"default",{value:C,enumerable:!0}):o,C)),P=C=>a(t({},"__esModule",{value:!0}),C);var v={};x(v,{IconImagineHead:()=>c,default:()=>d});module.exports=P(v);var n=L(require("react"));var m=L(require("react")),f=require("react-native-svg"),s=({children:C,size:r=24,...o})=>m.default.createElement(f.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 p=require("react-native-svg"),c=C=>n.default.createElement(s,{...C},n.default.createElement(p.Path,{d:"M3.42676 10.7295C3.69986 10.6891 3.95364 10.8773 3.99414 11.1504C4.08599 11.7713 4.36358 12.3947 4.75195 13.0459C5.14327 13.702 5.61754 14.3402 6.09375 15.0234C7.00752 16.3345 7.95781 17.8374 7.66797 19.5195C7.66706 19.5248 7.66611 19.53 7.66504 19.5352L7.13477 22.1016C7.07875 22.3718 6.8142 22.545 6.54395 22.4893C6.27352 22.4333 6.09936 22.1689 6.15527 21.8984L6.68262 19.3428C6.89014 18.1208 6.21533 16.9472 5.27344 15.5957C4.82113 14.9467 4.30911 14.2553 3.89355 13.5586C3.47509 12.857 3.12517 12.1033 3.00586 11.2969C2.96546 11.0238 3.15366 10.77 3.42676 10.7295Z",fill:"currentColor"}),n.default.createElement(p.Path,{d:"M10.8896 2C13.0658 2.00006 14.6375 2.39325 15.7725 3.11816C16.919 3.85054 17.5637 4.88557 17.9512 6.04688C18.2986 7.08755 19.339 7.63369 20.6064 8.20508C21.4814 8.59961 21.7307 9.68962 21.1523 10.4355L20.4648 11.3213C21.0635 13.1326 21.2129 14.4131 21.0049 15.3506C20.7748 16.3872 20.1314 16.9291 19.4219 17.2695C19.0803 17.4334 18.7152 17.5553 18.3818 17.665C18.0377 17.7784 17.7276 17.8785 17.4443 18.0059C16.9014 18.2499 16.5241 18.5604 16.3643 19.1572L15.6182 22.1221C15.5507 22.3898 15.2794 22.5517 15.0117 22.4844C14.744 22.4169 14.5811 22.1457 14.6484 21.8779L15.3955 18.9131L15.3965 18.9082C15.66 17.9122 16.33 17.4103 17.0342 17.0938C17.3752 16.9405 17.7406 16.8231 18.0693 16.7148C18.4088 16.6031 18.7146 16.4999 18.9893 16.3682C19.5128 16.117 19.8839 15.7846 20.0283 15.1338C20.1849 14.428 20.09 13.2858 19.4355 11.3867C19.3806 11.2272 19.4103 11.0503 19.5137 10.917L20.3623 9.82227C20.5539 9.57498 20.466 9.23934 20.1953 9.11719C19.0024 8.57942 17.5088 7.88218 17.002 6.36328C16.6665 5.3579 16.1397 4.53925 15.2344 3.96094C14.3176 3.37533 12.9572 3.00006 10.8896 3C10.6135 3 10.3896 2.77614 10.3896 2.5C10.3896 2.22386 10.6135 2 10.8896 2Z",fill:"currentColor"}),n.default.createElement(p.Path,{d:"M6 2C6.41775 2 6.79242 2.25756 6.94238 2.64746L7.53223 4.18066C7.58301 4.3127 7.6873 4.41699 7.81934 4.46777L9.35254 5.05762C9.74244 5.20758 10 5.58225 10 6C10 6.41775 9.74244 6.79242 9.35254 6.94238L7.81934 7.53223C7.6873 7.58301 7.58301 7.6873 7.53223 7.81934L6.94238 9.35254C6.79242 9.74244 6.41775 10 6 10C5.58225 10 5.20758 9.74244 5.05762 9.35254L4.46777 7.81934C4.41699 7.6873 4.3127 7.58301 4.18066 7.53223L2.64746 6.94238C2.25756 6.79242 2 6.41775 2 6C2 5.58225 2.25756 5.20758 2.64746 5.05762L4.18066 4.46777C4.3127 4.41699 4.41699 4.3127 4.46777 4.18066L5.05762 2.64746C5.20758 2.25756 5.58225 2 6 2Z",fill:"currentColor"})),d=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=\"M3.42676 10.7295C3.69986 10.6891 3.95364 10.8773 3.99414 11.1504C4.08599 11.7713 4.36358 12.3947 4.75195 13.0459C5.14327 13.702 5.61754 14.3402 6.09375 15.0234C7.00752 16.3345 7.95781 17.8374 7.66797 19.5195C7.66706 19.5248 7.66611 19.53 7.66504 19.5352L7.13477 22.1016C7.07875 22.3718 6.8142 22.545 6.54395 22.4893C6.27352 22.4333 6.09936 22.1689 6.15527 21.8984L6.68262 19.3428C6.89014 18.1208 6.21533 16.9472 5.27344 15.5957C4.82113 14.9467 4.30911 14.2553 3.89355 13.5586C3.47509 12.857 3.12517 12.1033 3.00586 11.2969C2.96546 11.0238 3.15366 10.77 3.42676 10.7295Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M10.8896 2C13.0658 2.00006 14.6375 2.39325 15.7725 3.11816C16.919 3.85054 17.5637 4.88557 17.9512 6.04688C18.2986 7.08755 19.339 7.63369 20.6064 8.20508C21.4814 8.59961 21.7307 9.68962 21.1523 10.4355L20.4648 11.3213C21.0635 13.1326 21.2129 14.4131 21.0049 15.3506C20.7748 16.3872 20.1314 16.9291 19.4219 17.2695C19.0803 17.4334 18.7152 17.5553 18.3818 17.665C18.0377 17.7784 17.7276 17.8785 17.4443 18.0059C16.9014 18.2499 16.5241 18.5604 16.3643 19.1572L15.6182 22.1221C15.5507 22.3898 15.2794 22.5517 15.0117 22.4844C14.744 22.4169 14.5811 22.1457 14.6484 21.8779L15.3955 18.9131L15.3965 18.9082C15.66 17.9122 16.33 17.4103 17.0342 17.0938C17.3752 16.9405 17.7406 16.8231 18.0693 16.7148C18.4088 16.6031 18.7146 16.4999 18.9893 16.3682C19.5128 16.117 19.8839 15.7846 20.0283 15.1338C20.1849 14.428 20.09 13.2858 19.4355 11.3867C19.3806 11.2272 19.4103 11.0503 19.5137 10.917L20.3623 9.82227C20.5539 9.57498 20.466 9.23934 20.1953 9.11719C19.0024 8.57942 17.5088 7.88218 17.002 6.36328C16.6665 5.3579 16.1397 4.53925 15.2344 3.96094C14.3176 3.37533 12.9572 3.00006 10.8896 3C10.6135 3 10.3896 2.77614 10.3896 2.5C10.3896 2.22386 10.6135 2 10.8896 2Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M6 2C6.41775 2 6.79242 2.25756 6.94238 2.64746L7.53223 4.18066C7.58301 4.3127 7.6873 4.41699 7.81934 4.46777L9.35254 5.05762C9.74244 5.20758 10 5.58225 10 6C10 6.41775 9.74244 6.79242 9.35254 6.94238L7.81934 7.53223C7.6873 7.58301 7.58301 7.6873 7.53223 7.81934L6.94238 9.35254C6.79242 9.74244 6.41775 10 6 10C5.58225 10 5.20758 9.74244 5.05762 9.35254L4.46777 7.81934C4.41699 7.6873 4.3127 7.58301 4.18066 7.53223L2.64746 6.94238C2.25756 6.79242 2 6.41775 2 6C2 5.58225 2.25756 5.20758 2.64746 5.05762L4.18066 4.46777C4.3127 4.41699 4.41699 4.3127 4.46777 4.18066L5.05762 2.64746C5.20758 2.25756 5.58225 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,4jBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,koCACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,smBACF,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 r from"react";import p from"react";import{Svg as l}from"react-native-svg";var n=({children:o,size:C=24,...t})=>p.createElement(l,{...t,width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},o);import{Path as e}from"react-native-svg";var a=o=>r.createElement(n,{...o},r.createElement(e,{d:"M3.42676 10.7295C3.69986 10.6891 3.95364 10.8773 3.99414 11.1504C4.08599 11.7713 4.36358 12.3947 4.75195 13.0459C5.14327 13.702 5.61754 14.3402 6.09375 15.0234C7.00752 16.3345 7.95781 17.8374 7.66797 19.5195C7.66706 19.5248 7.66611 19.53 7.66504 19.5352L7.13477 22.1016C7.07875 22.3718 6.8142 22.545 6.54395 22.4893C6.27352 22.4333 6.09936 22.1689 6.15527 21.8984L6.68262 19.3428C6.89014 18.1208 6.21533 16.9472 5.27344 15.5957C4.82113 14.9467 4.30911 14.2553 3.89355 13.5586C3.47509 12.857 3.12517 12.1033 3.00586 11.2969C2.96546 11.0238 3.15366 10.77 3.42676 10.7295Z",fill:"currentColor"}),r.createElement(e,{d:"M10.8896 2C13.0658 2.00006 14.6375 2.39325 15.7725 3.11816C16.919 3.85054 17.5637 4.88557 17.9512 6.04688C18.2986 7.08755 19.339 7.63369 20.6064 8.20508C21.4814 8.59961 21.7307 9.68962 21.1523 10.4355L20.4648 11.3213C21.0635 13.1326 21.2129 14.4131 21.0049 15.3506C20.7748 16.3872 20.1314 16.9291 19.4219 17.2695C19.0803 17.4334 18.7152 17.5553 18.3818 17.665C18.0377 17.7784 17.7276 17.8785 17.4443 18.0059C16.9014 18.2499 16.5241 18.5604 16.3643 19.1572L15.6182 22.1221C15.5507 22.3898 15.2794 22.5517 15.0117 22.4844C14.744 22.4169 14.5811 22.1457 14.6484 21.8779L15.3955 18.9131L15.3965 18.9082C15.66 17.9122 16.33 17.4103 17.0342 17.0938C17.3752 16.9405 17.7406 16.8231 18.0693 16.7148C18.4088 16.6031 18.7146 16.4999 18.9893 16.3682C19.5128 16.117 19.8839 15.7846 20.0283 15.1338C20.1849 14.428 20.09 13.2858 19.4355 11.3867C19.3806 11.2272 19.4103 11.0503 19.5137 10.917L20.3623 9.82227C20.5539 9.57498 20.466 9.23934 20.1953 9.11719C19.0024 8.57942 17.5088 7.88218 17.002 6.36328C16.6665 5.3579 16.1397 4.53925 15.2344 3.96094C14.3176 3.37533 12.9572 3.00006 10.8896 3C10.6135 3 10.3896 2.77614 10.3896 2.5C10.3896 2.22386 10.6135 2 10.8896 2Z",fill:"currentColor"}),r.createElement(e,{d:"M6 2C6.41775 2 6.79242 2.25756 6.94238 2.64746L7.53223 4.18066C7.58301 4.3127 7.6873 4.41699 7.81934 4.46777L9.35254 5.05762C9.74244 5.20758 10 5.58225 10 6C10 6.41775 9.74244 6.79242 9.35254 6.94238L7.81934 7.53223C7.6873 7.58301 7.58301 7.6873 7.53223 7.81934L6.94238 9.35254C6.79242 9.74244 6.41775 10 6 10C5.58225 10 5.20758 9.74244 5.05762 9.35254L4.46777 7.81934C4.41699 7.6873 4.3127 7.58301 4.18066 7.53223L2.64746 6.94238C2.25756 6.79242 2 6.41775 2 6C2 5.58225 2.25756 5.20758 2.64746 5.05762L4.18066 4.46777C4.3127 4.41699 4.41699 4.3127 4.46777 4.18066L5.05762 2.64746C5.20758 2.25756 5.58225 2 6 2Z",fill:"currentColor"})),g=a;export{a as IconImagineHead,g 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.42676 10.7295C3.69986 10.6891 3.95364 10.8773 3.99414 11.1504C4.08599 11.7713 4.36358 12.3947 4.75195 13.0459C5.14327 13.702 5.61754 14.3402 6.09375 15.0234C7.00752 16.3345 7.95781 17.8374 7.66797 19.5195C7.66706 19.5248 7.66611 19.53 7.66504 19.5352L7.13477 22.1016C7.07875 22.3718 6.8142 22.545 6.54395 22.4893C6.27352 22.4333 6.09936 22.1689 6.15527 21.8984L6.68262 19.3428C6.89014 18.1208 6.21533 16.9472 5.27344 15.5957C4.82113 14.9467 4.30911 14.2553 3.89355 13.5586C3.47509 12.857 3.12517 12.1033 3.00586 11.2969C2.96546 11.0238 3.15366 10.77 3.42676 10.7295Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M10.8896 2C13.0658 2.00006 14.6375 2.39325 15.7725 3.11816C16.919 3.85054 17.5637 4.88557 17.9512 6.04688C18.2986 7.08755 19.339 7.63369 20.6064 8.20508C21.4814 8.59961 21.7307 9.68962 21.1523 10.4355L20.4648 11.3213C21.0635 13.1326 21.2129 14.4131 21.0049 15.3506C20.7748 16.3872 20.1314 16.9291 19.4219 17.2695C19.0803 17.4334 18.7152 17.5553 18.3818 17.665C18.0377 17.7784 17.7276 17.8785 17.4443 18.0059C16.9014 18.2499 16.5241 18.5604 16.3643 19.1572L15.6182 22.1221C15.5507 22.3898 15.2794 22.5517 15.0117 22.4844C14.744 22.4169 14.5811 22.1457 14.6484 21.8779L15.3955 18.9131L15.3965 18.9082C15.66 17.9122 16.33 17.4103 17.0342 17.0938C17.3752 16.9405 17.7406 16.8231 18.0693 16.7148C18.4088 16.6031 18.7146 16.4999 18.9893 16.3682C19.5128 16.117 19.8839 15.7846 20.0283 15.1338C20.1849 14.428 20.09 13.2858 19.4355 11.3867C19.3806 11.2272 19.4103 11.0503 19.5137 10.917L20.3623 9.82227C20.5539 9.57498 20.466 9.23934 20.1953 9.11719C19.0024 8.57942 17.5088 7.88218 17.002 6.36328C16.6665 5.3579 16.1397 4.53925 15.2344 3.96094C14.3176 3.37533 12.9572 3.00006 10.8896 3C10.6135 3 10.3896 2.77614 10.3896 2.5C10.3896 2.22386 10.6135 2 10.8896 2Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M6 2C6.41775 2 6.79242 2.25756 6.94238 2.64746L7.53223 4.18066C7.58301 4.3127 7.6873 4.41699 7.81934 4.46777L9.35254 5.05762C9.74244 5.20758 10 5.58225 10 6C10 6.41775 9.74244 6.79242 9.35254 6.94238L7.81934 7.53223C7.6873 7.58301 7.58301 7.6873 7.53223 7.81934L6.94238 9.35254C6.79242 9.74244 6.41775 10 6 10C5.58225 10 5.20758 9.74244 5.05762 9.35254L4.46777 7.81934C4.41699 7.6873 4.3127 7.58301 4.18066 7.53223L2.64746 6.94238C2.25756 6.79242 2 6.41775 2 6C2 5.58225 2.25756 5.20758 2.64746 5.05762L4.18066 4.46777C4.3127 4.41699 4.41699 4.3127 4.46777 4.18066L5.05762 2.64746C5.20758 2.25756 5.58225 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,4jBACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,koCACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,smBACF,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 9C11.8284 9 12.5 9.67157 12.5 10.5V19H14.5C14.7761 19 15 19.2239 15 19.5C15 19.7761 14.7761 20 14.5 20H9.5C9.22386 20 9 19.7761 9 19.5C9 19.2239 9.22386 19 9.5 19H11.5V10.5C11.5 10.2239 11.2761 10 11 10H9.5C9.22386 10 9 9.77614 9 9.5C9 9.22386 9.22386 9 9.5 9H11Z",fill:"currentColor"}),C.default.createElement(p.Path,{d:"M12 4C12.5523 4 13 4.44772 13 5C13 5.55228 12.5523 6 12 6C11.4477 6 11 5.55228 11 5C11 4.44772 11.4477 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 9C11.8284 9 12.5 9.67157 12.5 10.5V19H14.5C14.7761 19 15 19.2239 15 19.5C15 19.7761 14.7761 20 14.5 20H9.5C9.22386 20 9 19.7761 9 19.5C9 19.2239 9.22386 19 9.5 19H11.5V10.5C11.5 10.2239 11.2761 10 11 10H9.5C9.22386 10 9 9.77614 9 9.5C9 9.22386 9.22386 9 9.5 9H11Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12 4C12.5523 4 13 4.44772 13 5C13 5.55228 12.5523 6 12 6C11.4477 6 11 5.55228 11 5C11 4.44772 11.4477 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,8QACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iHACF,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 9C11.8284 9 12.5 9.67157 12.5 10.5V19H14.5C14.7761 19 15 19.2239 15 19.5C15 19.7761 14.7761 20 14.5 20H9.5C9.22386 20 9 19.7761 9 19.5C9 19.2239 9.22386 19 9.5 19H11.5V10.5C11.5 10.2239 11.2761 10 11 10H9.5C9.22386 10 9 9.77614 9 9.5C9 9.22386 9.22386 9 9.5 9H11Z",fill:"currentColor"}),t.createElement(n,{d:"M12 4C12.5523 4 13 4.44772 13 5C13 5.55228 12.5523 6 12 6C11.4477 6 11 5.55228 11 5C11 4.44772 11.4477 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 9C11.8284 9 12.5 9.67157 12.5 10.5V19H14.5C14.7761 19 15 19.2239 15 19.5C15 19.7761 14.7761 20 14.5 20H9.5C9.22386 20 9 19.7761 9 19.5C9 19.2239 9.22386 19 9.5 19H11.5V10.5C11.5 10.2239 11.2761 10 11 10H9.5C9.22386 10 9 9.77614 9 9.5C9 9.22386 9.22386 9 9.5 9H11Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12 4C12.5523 4 13 4.44772 13 5C13 5.55228 12.5523 6 12 6C11.4477 6 11 5.55228 11 5C11 4.44772 11.4477 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,8QACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iHACF,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-1",
|
|
11537
11537
|
"componentName": "IconFolderOpen"
|
|
11538
11538
|
},
|
|
11539
|
+
{
|
|
11540
|
+
"category": "Folders & Files",
|
|
11541
|
+
"svg": "<path d=\"M20.7628 11C22.3584 11 23.5456 12.4744 23.2052 14.0332L22.3312 18.0332C22.0803 19.1812 21.0639 20 19.8888 20H4.10852C2.93403 19.9998 1.91827 19.1815 1.66711 18.0342L0.791136 14.0342C0.450143 12.4752 1.63761 11.0001 3.23352 11H20.7628Z\" fill=\"currentColor\"/><path d=\"M9.09094 3C9.73057 3 10.3463 3.24566 10.8107 3.68555L11.7648 4.58887C12.0433 4.8527 12.4123 4.99995 12.796 5H19.4991C20.8799 5 21.9991 6.11929 21.9991 7.5V10H1.99914V5.5C1.99914 4.11933 3.11849 3.00007 4.49914 3H9.09094Z\" fill=\"currentColor\"/>",
|
|
11542
|
+
"iconName": "folder-open-front",
|
|
11543
|
+
"variant": {
|
|
11544
|
+
"join": "round",
|
|
11545
|
+
"filled": "on",
|
|
11546
|
+
"radius": "2",
|
|
11547
|
+
"stroke": "1"
|
|
11548
|
+
},
|
|
11549
|
+
"createdAt": "2026-04-06T12:02:28.534874+00:00",
|
|
11550
|
+
"packageName": "round-filled-radius-2-stroke-1",
|
|
11551
|
+
"componentName": "IconFolderOpenFront"
|
|
11552
|
+
},
|
|
11539
11553
|
{
|
|
11540
11554
|
"category": "Folders & Files",
|
|
11541
11555
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 5.5C3 4.11929 4.11929 3 5.5 3H14.5C15.7095 3 16.7184 3.85888 16.95 5H18.5C19.8807 5 21 6.11929 21 7.5V10.0854C21.5826 10.2913 22 10.8469 22 11.5V18.5C22 19.8807 20.8807 21 19.5 21H4.5C3.11929 21 2 19.8807 2 18.5V8.5C2 7.84689 2.4174 7.29127 3 7.08535V5.5ZM4 7H7.42157C8.08461 7 8.7205 7.26339 9.18934 7.73223L11.0178 9.56066C11.2991 9.84196 11.6806 10 12.0784 10H16V5.5C16 4.67157 15.3284 4 14.5 4H5.5C4.67157 4 4 4.67157 4 5.5V7ZM17 10H20V7.5C20 6.67157 19.3284 6 18.5 6H17V10Z\" fill=\"currentColor\"/>",
|
|
@@ -13818,6 +13832,20 @@
|
|
|
13818
13832
|
"packageName": "round-filled-radius-2-stroke-1",
|
|
13819
13833
|
"componentName": "IconImagineAi"
|
|
13820
13834
|
},
|
|
13835
|
+
{
|
|
13836
|
+
"category": "AI & Magic",
|
|
13837
|
+
"svg": "<path d=\"M3.42676 10.7295C3.69986 10.6891 3.95364 10.8773 3.99414 11.1504C4.08599 11.7713 4.36358 12.3947 4.75195 13.0459C5.14327 13.702 5.61754 14.3402 6.09375 15.0234C7.00752 16.3345 7.95781 17.8374 7.66797 19.5195C7.66706 19.5248 7.66611 19.53 7.66504 19.5352L7.13477 22.1016C7.07875 22.3718 6.8142 22.545 6.54395 22.4893C6.27352 22.4333 6.09936 22.1689 6.15527 21.8984L6.68262 19.3428C6.89014 18.1208 6.21533 16.9472 5.27344 15.5957C4.82113 14.9467 4.30911 14.2553 3.89355 13.5586C3.47509 12.857 3.12517 12.1033 3.00586 11.2969C2.96546 11.0238 3.15366 10.77 3.42676 10.7295Z\" fill=\"currentColor\"/><path d=\"M10.8896 2C13.0658 2.00006 14.6375 2.39325 15.7725 3.11816C16.919 3.85054 17.5637 4.88557 17.9512 6.04688C18.2986 7.08755 19.339 7.63369 20.6064 8.20508C21.4814 8.59961 21.7307 9.68962 21.1523 10.4355L20.4648 11.3213C21.0635 13.1326 21.2129 14.4131 21.0049 15.3506C20.7748 16.3872 20.1314 16.9291 19.4219 17.2695C19.0803 17.4334 18.7152 17.5553 18.3818 17.665C18.0377 17.7784 17.7276 17.8785 17.4443 18.0059C16.9014 18.2499 16.5241 18.5604 16.3643 19.1572L15.6182 22.1221C15.5507 22.3898 15.2794 22.5517 15.0117 22.4844C14.744 22.4169 14.5811 22.1457 14.6484 21.8779L15.3955 18.9131L15.3965 18.9082C15.66 17.9122 16.33 17.4103 17.0342 17.0938C17.3752 16.9405 17.7406 16.8231 18.0693 16.7148C18.4088 16.6031 18.7146 16.4999 18.9893 16.3682C19.5128 16.117 19.8839 15.7846 20.0283 15.1338C20.1849 14.428 20.09 13.2858 19.4355 11.3867C19.3806 11.2272 19.4103 11.0503 19.5137 10.917L20.3623 9.82227C20.5539 9.57498 20.466 9.23934 20.1953 9.11719C19.0024 8.57942 17.5088 7.88218 17.002 6.36328C16.6665 5.3579 16.1397 4.53925 15.2344 3.96094C14.3176 3.37533 12.9572 3.00006 10.8896 3C10.6135 3 10.3896 2.77614 10.3896 2.5C10.3896 2.22386 10.6135 2 10.8896 2Z\" fill=\"currentColor\"/><path d=\"M6 2C6.41775 2 6.79242 2.25756 6.94238 2.64746L7.53223 4.18066C7.58301 4.3127 7.6873 4.41699 7.81934 4.46777L9.35254 5.05762C9.74244 5.20758 10 5.58225 10 6C10 6.41775 9.74244 6.79242 9.35254 6.94238L7.81934 7.53223C7.6873 7.58301 7.58301 7.6873 7.53223 7.81934L6.94238 9.35254C6.79242 9.74244 6.41775 10 6 10C5.58225 10 5.20758 9.74244 5.05762 9.35254L4.46777 7.81934C4.41699 7.6873 4.3127 7.58301 4.18066 7.53223L2.64746 6.94238C2.25756 6.79242 2 6.41775 2 6C2 5.58225 2.25756 5.20758 2.64746 5.05762L4.18066 4.46777C4.3127 4.41699 4.41699 4.3127 4.46777 4.18066L5.05762 2.64746C5.20758 2.25756 5.58225 2 6 2Z\" fill=\"currentColor\"/>",
|
|
13838
|
+
"iconName": "imagine-head, thinking, ai",
|
|
13839
|
+
"variant": {
|
|
13840
|
+
"join": "round",
|
|
13841
|
+
"filled": "on",
|
|
13842
|
+
"radius": "2",
|
|
13843
|
+
"stroke": "1"
|
|
13844
|
+
},
|
|
13845
|
+
"createdAt": "2026-04-06T12:02:28.534874+00:00",
|
|
13846
|
+
"packageName": "round-filled-radius-2-stroke-1",
|
|
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-1",
|
|
13917
13945
|
"componentName": "IconInfinity"
|
|
13918
13946
|
},
|
|
13947
|
+
{
|
|
13948
|
+
"category": "Interface General",
|
|
13949
|
+
"svg": "<path d=\"M11 9C11.8284 9 12.5 9.67157 12.5 10.5V19H14.5C14.7761 19 15 19.2239 15 19.5C15 19.7761 14.7761 20 14.5 20H9.5C9.22386 20 9 19.7761 9 19.5C9 19.2239 9.22386 19 9.5 19H11.5V10.5C11.5 10.2239 11.2761 10 11 10H9.5C9.22386 10 9 9.77614 9 9.5C9 9.22386 9.22386 9 9.5 9H11Z\" fill=\"currentColor\"/><path d=\"M12 4C12.5523 4 13 4.44772 13 5C13 5.55228 12.5523 6 12 6C11.4477 6 11 5.55228 11 5C11 4.44772 11.4477 4 12 4Z\" fill=\"currentColor\"/>",
|
|
13950
|
+
"iconName": "info-simple, tooltip, information",
|
|
13951
|
+
"variant": {
|
|
13952
|
+
"join": "round",
|
|
13953
|
+
"filled": "on",
|
|
13954
|
+
"radius": "2",
|
|
13955
|
+
"stroke": "1"
|
|
13956
|
+
},
|
|
13957
|
+
"createdAt": "2026-04-06T12:02:28.534874+00:00",
|
|
13958
|
+
"packageName": "round-filled-radius-2-stroke-1",
|
|
13959
|
+
"componentName": "IconInfoSimple"
|
|
13960
|
+
},
|
|
13919
13961
|
{
|
|
13920
13962
|
"category": "Location",
|
|
13921
13963
|
"svg": "<path d=\"M13.2956 11.2442C12.7168 10.2519 11.2831 10.2519 10.7043 11.2442L6.54149 18.3804C5.75872 19.7223 7.28165 21.223 8.6119 20.4206L11.7417 18.5328C11.9005 18.437 12.0994 18.437 12.2582 18.5328L15.388 20.4206C16.7183 21.223 18.2412 19.7223 17.4584 18.3804L13.2956 11.2442Z\" fill=\"currentColor\"/><path d=\"M3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12C21 13.5433 20.612 14.9945 19.9285 16.2628C19.7975 16.5059 19.8884 16.8092 20.1315 16.9402C20.3746 17.0712 20.6779 16.9803 20.8089 16.7372C21.5689 15.3267 22 13.713 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 13.713 2.43111 15.3267 3.19114 16.7372C3.32213 16.9803 3.62539 17.0712 3.86849 16.9402C4.11159 16.8092 4.20246 16.5059 4.07147 16.2628C3.38804 14.9945 3 13.5433 3 12Z\" 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-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.179",
|
|
4
4
|
"style": "round-filled-radius-2-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-2-stroke-1/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";
|