@central-icons-react-native/square-filled-radius-0-stroke-1 1.1.182 → 1.1.183
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/Icon3dPackage2/index.d.ts +4 -0
- package/Icon3dPackage2/index.js +2 -0
- package/Icon3dPackage2/index.js.map +1 -0
- package/Icon3dPackage2/index.mjs +2 -0
- package/Icon3dPackage2/index.mjs.map +1 -0
- package/IconSunHigh/index.d.ts +4 -0
- package/IconSunHigh/index.js +2 -0
- package/IconSunHigh/index.js.map +1 -0
- package/IconSunHigh/index.mjs +2 -0
- package/IconSunHigh/index.mjs.map +1 -0
- package/IconSunLow/index.d.ts +4 -0
- package/IconSunLow/index.js +2 -0
- package/IconSunLow/index.js.map +1 -0
- package/IconSunLow/index.mjs +2 -0
- package/IconSunLow/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 +10 -4
- 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 i=Object.create;var p=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var n in o)p(r,n,{get:o[n],enumerable:!0})},C=(r,o,n,L)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of B(o))!P.call(r,e)&&e!==n&&p(r,e,{get:()=>o[e],enumerable:!(L=u(o,e))||L.enumerable});return r};var a=(r,o,n)=>(n=r!=null?i(I(r)):{},C(o||!r||!r.__esModule?p(n,"default",{value:r,enumerable:!0}):n,r)),g=r=>C(p({},"__esModule",{value:!0}),r);var V={};d(V,{Icon3dPackage2:()=>c,default:()=>x});module.exports=g(V);var t=a(require("react"));var f=a(require("react")),m=require("react-native-svg"),s=({children:r,size:o=24,...n})=>f.default.createElement(m.Svg,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var l=require("react-native-svg"),c=r=>t.default.createElement(s,{...r},t.default.createElement(l.Path,{d:"M11.502 12.2881V22.5381L2.875 17.5576L2.625 17.4141V7.16211L11.502 12.2881Z",fill:"currentColor"}),t.default.createElement(l.Path,{d:"M21.3789 17.4141L21.1289 17.5576L12.502 22.5381V12.2881L16.752 9.83301V15.1484L17.752 14.5713V9.25586L21.3789 7.16211V17.4141Z",fill:"currentColor"}),t.default.createElement(l.Path,{d:"M7.31348 4.16797L15.9375 9.14844L12.001 11.4219L3.125 6.29688L7.0625 4.02344L7.31348 4.16797Z",fill:"currentColor"}),t.default.createElement(l.Path,{d:"M20.877 6.29688L16.9385 8.57031L8.0625 3.44629L12.002 1.17285L20.877 6.29688Z",fill:"currentColor"})),x=c;0&&(module.exports={Icon3dPackage2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/Icon3dPackage2/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 Icon3dPackage2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.502 12.2881V22.5381L2.875 17.5576L2.625 17.4141V7.16211L11.502 12.2881Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.3789 17.4141L21.1289 17.5576L12.502 22.5381V12.2881L16.752 9.83301V15.1484L17.752 14.5713V9.25586L21.3789 7.16211V17.4141Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7.31348 4.16797L15.9375 9.14844L12.001 11.4219L3.125 6.29688L7.0625 4.02344L7.31348 4.16797Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.877 6.29688L16.9385 8.57031L8.0625 3.44629L12.002 1.17285L20.877 6.29688Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default Icon3dPackage2;\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,8EACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iIACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gGACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gFACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["Icon3dPackage2_exports","__export","Icon3dPackage2","Icon3dPackage2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","Icon3dPackage2","props","React","CentralIconBase","Icon3dPackage2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";import{Svg as L}from"react-native-svg";var e=({children:t,size:r=24,...l})=>p.createElement(L,{...l,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Path as n}from"react-native-svg";var C=t=>o.createElement(e,{...t},o.createElement(n,{d:"M11.502 12.2881V22.5381L2.875 17.5576L2.625 17.4141V7.16211L11.502 12.2881Z",fill:"currentColor"}),o.createElement(n,{d:"M21.3789 17.4141L21.1289 17.5576L12.502 22.5381V12.2881L16.752 9.83301V15.1484L17.752 14.5713V9.25586L21.3789 7.16211V17.4141Z",fill:"currentColor"}),o.createElement(n,{d:"M7.31348 4.16797L15.9375 9.14844L12.001 11.4219L3.125 6.29688L7.0625 4.02344L7.31348 4.16797Z",fill:"currentColor"}),o.createElement(n,{d:"M20.877 6.29688L16.9385 8.57031L8.0625 3.44629L12.002 1.17285L20.877 6.29688Z",fill:"currentColor"})),P=C;export{C as Icon3dPackage2,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/Icon3dPackage2/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 Icon3dPackage2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.502 12.2881V22.5381L2.875 17.5576L2.625 17.4141V7.16211L11.502 12.2881Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.3789 17.4141L21.1289 17.5576L12.502 22.5381V12.2881L16.752 9.83301V15.1484L17.752 14.5713V9.25586L21.3789 7.16211V17.4141Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7.31348 4.16797L15.9375 9.14844L12.001 11.4219L3.125 6.29688L7.0625 4.02344L7.31348 4.16797Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.877 6.29688L16.9385 8.57031L8.0625 3.44629L12.002 1.17285L20.877 6.29688Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default Icon3dPackage2;\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,8EACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iIACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gGACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gFACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","Icon3dPackage2","props","React","CentralIconBase","Icon3dPackage2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var m=Object.create;var i=Object.defineProperty;var h=Object.getOwnPropertyDescriptor;var c=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,H=Object.prototype.hasOwnProperty;var M=(r,o)=>{for(var t in o)i(r,t,{get:o[t],enumerable:!0})},C=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of c(o))!H.call(r,e)&&e!==t&&i(r,e,{get:()=>o[e],enumerable:!(p=h(o,e))||p.enumerable});return r};var f=(r,o,t)=>(t=r!=null?m(P(r)):{},C(o||!r||!r.__esModule?i(t,"default",{value:r,enumerable:!0}):t,r)),Z=r=>C(i({},"__esModule",{value:!0}),r);var B={};M(B,{IconSunHigh:()=>d,default:()=>g});module.exports=Z(B);var n=f(require("react"));var u=f(require("react")),L=require("react-native-svg"),s=({children:r,size:o=24,...t})=>u.default.createElement(L.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var l=require("react-native-svg"),d=r=>n.default.createElement(s,{...r},n.default.createElement(l.G,{"clip-Path":"url(#clip0_14944_27796)"},n.default.createElement(l.Path,{d:"M12.5 24H11.5V20H12.5V24Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M6.69629 18.0107L3.86816 20.8389L3.16113 20.1318L5.98926 17.3037L6.69629 18.0107Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M20.8389 20.1318L20.1318 20.8389L17.3037 18.0107L18.0107 17.3037L20.8389 20.1318Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M7.75781 7.75781C10.101 5.41467 13.899 5.41467 16.2422 7.75781C18.5853 10.101 18.5853 13.899 16.2422 16.2422C13.899 18.5853 10.101 18.5853 7.75781 16.2422C5.41467 13.899 5.41467 10.101 7.75781 7.75781Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M4 12.5H0V11.5H4V12.5Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M24 12.5H20V11.5H24V12.5Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M6.69629 5.98926L5.98926 6.69629L3.16113 3.86816L3.86816 3.16113L6.69629 5.98926Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M20.8389 3.86816L18.0107 6.69629L17.3037 5.98926L20.1318 3.16113L20.8389 3.86816Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M12.5 4H11.5V0H12.5V4Z",fill:"currentColor"})),n.default.createElement(l.Defs,null,n.default.createElement(l.ClipPath,{id:"clip0_14944_27796"},n.default.createElement(l.Rect,{width:"24",height:"24",fill:"white"})))),g=d;0&&(module.exports={IconSunHigh});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconSunHigh/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconSunHigh: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G clip-Path=\"url(#clip0_14944_27796)\">\n <Path d=\"M12.5 24H11.5V20H12.5V24Z\" fill=\"currentColor\" />\n <Path\n d=\"M6.69629 18.0107L3.86816 20.8389L3.16113 20.1318L5.98926 17.3037L6.69629 18.0107Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.8389 20.1318L20.1318 20.8389L17.3037 18.0107L18.0107 17.3037L20.8389 20.1318Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7.75781 7.75781C10.101 5.41467 13.899 5.41467 16.2422 7.75781C18.5853 10.101 18.5853 13.899 16.2422 16.2422C13.899 18.5853 10.101 18.5853 7.75781 16.2422C5.41467 13.899 5.41467 10.101 7.75781 7.75781Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M4 12.5H0V11.5H4V12.5Z\" fill=\"currentColor\" />\n <Path d=\"M24 12.5H20V11.5H24V12.5Z\" fill=\"currentColor\" />\n <Path\n d=\"M6.69629 5.98926L5.98926 6.69629L3.16113 3.86816L3.86816 3.16113L6.69629 5.98926Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.8389 3.86816L18.0107 6.69629L17.3037 5.98926L20.1318 3.16113L20.8389 3.86816Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M12.5 4H11.5V0H12.5V4Z\" fill=\"currentColor\" />\n </G>\n <Defs>\n <ClipPath id=\"clip0_14944_27796\">\n <Rect width=\"24\" height=\"24\" fill=\"white\" />\n </ClipPath>\n </Defs>\n </CentralIconBase>\n );\n};\n\nexport default IconSunHigh;\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,iBAAAE,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,EAA8C,4BAEjCC,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,KAAE,YAAU,2BACX,EAAAA,QAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,EACxD,EAAAA,QAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4MACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,yBAAyB,KAAK,eAAe,EACrD,EAAAA,QAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,EACxD,EAAAA,QAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,yBAAyB,KAAK,eAAe,CACvD,EACA,EAAAA,QAAA,cAAC,YACC,EAAAA,QAAA,cAAC,YAAS,GAAG,qBACX,EAAAA,QAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["IconSunHigh_exports","__export","IconSunHigh","IconSunHigh_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconSunHigh","props","React","CentralIconBase","IconSunHigh_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import i from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:l=24,...e})=>i.createElement(p,{...e,width:typeof l=="number"?`${l}px`:l,height:typeof l=="number"?`${l}px`:l,viewBox:"0 0 24 24",fill:"none"},n);import{ClipPath as C,Defs as f,G as u,Path as o,Rect as L}from"react-native-svg";var s=n=>r.createElement(t,{...n},r.createElement(u,{"clip-Path":"url(#clip0_14944_27796)"},r.createElement(o,{d:"M12.5 24H11.5V20H12.5V24Z",fill:"currentColor"}),r.createElement(o,{d:"M6.69629 18.0107L3.86816 20.8389L3.16113 20.1318L5.98926 17.3037L6.69629 18.0107Z",fill:"currentColor"}),r.createElement(o,{d:"M20.8389 20.1318L20.1318 20.8389L17.3037 18.0107L18.0107 17.3037L20.8389 20.1318Z",fill:"currentColor"}),r.createElement(o,{d:"M7.75781 7.75781C10.101 5.41467 13.899 5.41467 16.2422 7.75781C18.5853 10.101 18.5853 13.899 16.2422 16.2422C13.899 18.5853 10.101 18.5853 7.75781 16.2422C5.41467 13.899 5.41467 10.101 7.75781 7.75781Z",fill:"currentColor"}),r.createElement(o,{d:"M4 12.5H0V11.5H4V12.5Z",fill:"currentColor"}),r.createElement(o,{d:"M24 12.5H20V11.5H24V12.5Z",fill:"currentColor"}),r.createElement(o,{d:"M6.69629 5.98926L5.98926 6.69629L3.16113 3.86816L3.86816 3.16113L6.69629 5.98926Z",fill:"currentColor"}),r.createElement(o,{d:"M20.8389 3.86816L18.0107 6.69629L17.3037 5.98926L20.1318 3.16113L20.8389 3.86816Z",fill:"currentColor"}),r.createElement(o,{d:"M12.5 4H11.5V0H12.5V4Z",fill:"currentColor"})),r.createElement(f,null,r.createElement(C,{id:"clip0_14944_27796"},r.createElement(L,{width:"24",height:"24",fill:"white"})))),B=s;export{s as IconSunHigh,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconSunHigh/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconSunHigh: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G clip-Path=\"url(#clip0_14944_27796)\">\n <Path d=\"M12.5 24H11.5V20H12.5V24Z\" fill=\"currentColor\" />\n <Path\n d=\"M6.69629 18.0107L3.86816 20.8389L3.16113 20.1318L5.98926 17.3037L6.69629 18.0107Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.8389 20.1318L20.1318 20.8389L17.3037 18.0107L18.0107 17.3037L20.8389 20.1318Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7.75781 7.75781C10.101 5.41467 13.899 5.41467 16.2422 7.75781C18.5853 10.101 18.5853 13.899 16.2422 16.2422C13.899 18.5853 10.101 18.5853 7.75781 16.2422C5.41467 13.899 5.41467 10.101 7.75781 7.75781Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M4 12.5H0V11.5H4V12.5Z\" fill=\"currentColor\" />\n <Path d=\"M24 12.5H20V11.5H24V12.5Z\" fill=\"currentColor\" />\n <Path\n d=\"M6.69629 5.98926L5.98926 6.69629L3.16113 3.86816L3.86816 3.16113L6.69629 5.98926Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.8389 3.86816L18.0107 6.69629L17.3037 5.98926L20.1318 3.16113L20.8389 3.86816Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M12.5 4H11.5V0H12.5V4Z\" fill=\"currentColor\" />\n </G>\n <Defs>\n <ClipPath id=\"clip0_14944_27796\">\n <Rect width=\"24\" height=\"24\" fill=\"white\" />\n </ClipPath>\n </Defs>\n </CentralIconBase>\n );\n};\n\nexport default IconSunHigh;\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,YAAAG,EAAU,QAAAC,EAAM,KAAAC,EAAG,QAAAC,EAAM,QAAAC,MAAY,mBAEvC,IAAMC,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACL,EAAA,CAAE,YAAU,2BACXK,EAAA,cAACJ,EAAA,CAAK,EAAE,4BAA4B,KAAK,eAAe,EACxDI,EAAA,cAACJ,EAAA,CACC,EAAE,oFACF,KAAK,eACP,EACAI,EAAA,cAACJ,EAAA,CACC,EAAE,oFACF,KAAK,eACP,EACAI,EAAA,cAACJ,EAAA,CACC,EAAE,4MACF,KAAK,eACP,EACAI,EAAA,cAACJ,EAAA,CAAK,EAAE,yBAAyB,KAAK,eAAe,EACrDI,EAAA,cAACJ,EAAA,CAAK,EAAE,4BAA4B,KAAK,eAAe,EACxDI,EAAA,cAACJ,EAAA,CACC,EAAE,oFACF,KAAK,eACP,EACAI,EAAA,cAACJ,EAAA,CACC,EAAE,oFACF,KAAK,eACP,EACAI,EAAA,cAACJ,EAAA,CAAK,EAAE,yBAAyB,KAAK,eAAe,CACvD,EACAI,EAAA,cAACN,EAAA,KACCM,EAAA,cAACP,EAAA,CAAS,GAAG,qBACXO,EAAA,cAACH,EAAA,CAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","ClipPath","Defs","G","Path","Rect","IconSunHigh","props","React","CentralIconBase","IconSunHigh_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var C=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var M=Object.getOwnPropertyNames;var Z=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var H=(r,o)=>{for(var n in o)C(r,n,{get:o[n],enumerable:!0})},f=(r,o,n,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of M(o))!B.call(r,e)&&e!==n&&C(r,e,{get:()=>o[e],enumerable:!(p=c(o,e))||p.enumerable});return r};var L=(r,o,n)=>(n=r!=null?d(Z(r)):{},f(o||!r||!r.__esModule?C(n,"default",{value:r,enumerable:!0}):n,r)),I=r=>f(C({},"__esModule",{value:!0}),r);var a={};H(a,{IconSunLow:()=>s,default:()=>V});module.exports=I(a);var l=L(require("react"));var u=L(require("react")),i=require("react-native-svg"),m=({children:r,size:o=24,...n})=>u.default.createElement(i.Svg,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var t=require("react-native-svg"),s=r=>l.default.createElement(m,{...r},l.default.createElement(t.Path,{d:"M12.5 21.5H11.5V20H12.5V21.5Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M6.69629 18.0107L5.63574 19.0713L4.92871 18.3643L5.98926 17.3037L6.69629 18.0107Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M19.0713 18.3643L18.3643 19.0713L17.3037 18.0107L18.0107 17.3037L19.0713 18.3643Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M7.75781 7.75781C10.101 5.41467 13.899 5.41467 16.2422 7.75781C18.5853 10.101 18.5853 13.899 16.2422 16.2422C13.899 18.5853 10.101 18.5853 7.75781 16.2422C5.41467 13.899 5.41467 10.101 7.75781 7.75781Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M4 12.5H2.5V11.5H4V12.5Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M21.5 12.5H20V11.5H21.5V12.5Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M6.69629 5.98926L5.98926 6.69629L4.92871 5.63574L5.63574 4.92871L6.69629 5.98926Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M19.0713 5.63574L18.0107 6.69629L17.3037 5.98926L18.3643 4.92871L19.0713 5.63574Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M12.5 4H11.5V2.5H12.5V4Z",fill:"currentColor"})),V=s;0&&(module.exports={IconSunLow});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconSunLow/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 IconSunLow: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M12.5 21.5H11.5V20H12.5V21.5Z\" fill=\"currentColor\" />\n <Path\n d=\"M6.69629 18.0107L5.63574 19.0713L4.92871 18.3643L5.98926 17.3037L6.69629 18.0107Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.0713 18.3643L18.3643 19.0713L17.3037 18.0107L18.0107 17.3037L19.0713 18.3643Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7.75781 7.75781C10.101 5.41467 13.899 5.41467 16.2422 7.75781C18.5853 10.101 18.5853 13.899 16.2422 16.2422C13.899 18.5853 10.101 18.5853 7.75781 16.2422C5.41467 13.899 5.41467 10.101 7.75781 7.75781Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M4 12.5H2.5V11.5H4V12.5Z\" fill=\"currentColor\" />\n <Path d=\"M21.5 12.5H20V11.5H21.5V12.5Z\" fill=\"currentColor\" />\n <Path\n d=\"M6.69629 5.98926L5.98926 6.69629L4.92871 5.63574L5.63574 4.92871L6.69629 5.98926Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.0713 5.63574L18.0107 6.69629L17.3037 5.98926L18.3643 4.92871L19.0713 5.63574Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M12.5 4H11.5V2.5H12.5V4Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconSunLow;\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,gBAAAE,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,EAAwCC,GAEjD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QAAK,EAAE,gCAAgC,KAAK,eAAe,EAC5D,EAAAA,QAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4MACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,2BAA2B,KAAK,eAAe,EACvD,EAAAA,QAAA,cAAC,QAAK,EAAE,gCAAgC,KAAK,eAAe,EAC5D,EAAAA,QAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,2BAA2B,KAAK,eAAe,CACzD,EAIGE,EAAQJ","names":["IconSunLow_exports","__export","IconSunLow","IconSunLow_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconSunLow","props","React","CentralIconBase","IconSunLow_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import C from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:l=24,...e})=>C.createElement(p,{...e,width:typeof l=="number"?`${l}px`:l,height:typeof l=="number"?`${l}px`:l,viewBox:"0 0 24 24",fill:"none"},n);import{Path as o}from"react-native-svg";var f=n=>r.createElement(t,{...n},r.createElement(o,{d:"M12.5 21.5H11.5V20H12.5V21.5Z",fill:"currentColor"}),r.createElement(o,{d:"M6.69629 18.0107L5.63574 19.0713L4.92871 18.3643L5.98926 17.3037L6.69629 18.0107Z",fill:"currentColor"}),r.createElement(o,{d:"M19.0713 18.3643L18.3643 19.0713L17.3037 18.0107L18.0107 17.3037L19.0713 18.3643Z",fill:"currentColor"}),r.createElement(o,{d:"M7.75781 7.75781C10.101 5.41467 13.899 5.41467 16.2422 7.75781C18.5853 10.101 18.5853 13.899 16.2422 16.2422C13.899 18.5853 10.101 18.5853 7.75781 16.2422C5.41467 13.899 5.41467 10.101 7.75781 7.75781Z",fill:"currentColor"}),r.createElement(o,{d:"M4 12.5H2.5V11.5H4V12.5Z",fill:"currentColor"}),r.createElement(o,{d:"M21.5 12.5H20V11.5H21.5V12.5Z",fill:"currentColor"}),r.createElement(o,{d:"M6.69629 5.98926L5.98926 6.69629L4.92871 5.63574L5.63574 4.92871L6.69629 5.98926Z",fill:"currentColor"}),r.createElement(o,{d:"M19.0713 5.63574L18.0107 6.69629L17.3037 5.98926L18.3643 4.92871L19.0713 5.63574Z",fill:"currentColor"}),r.createElement(o,{d:"M12.5 4H11.5V2.5H12.5V4Z",fill:"currentColor"})),B=f;export{f as IconSunLow,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconSunLow/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 IconSunLow: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M12.5 21.5H11.5V20H12.5V21.5Z\" fill=\"currentColor\" />\n <Path\n d=\"M6.69629 18.0107L5.63574 19.0713L4.92871 18.3643L5.98926 17.3037L6.69629 18.0107Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.0713 18.3643L18.3643 19.0713L17.3037 18.0107L18.0107 17.3037L19.0713 18.3643Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7.75781 7.75781C10.101 5.41467 13.899 5.41467 16.2422 7.75781C18.5853 10.101 18.5853 13.899 16.2422 16.2422C13.899 18.5853 10.101 18.5853 7.75781 16.2422C5.41467 13.899 5.41467 10.101 7.75781 7.75781Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M4 12.5H2.5V11.5H4V12.5Z\" fill=\"currentColor\" />\n <Path d=\"M21.5 12.5H20V11.5H21.5V12.5Z\" fill=\"currentColor\" />\n <Path\n d=\"M6.69629 5.98926L5.98926 6.69629L4.92871 5.63574L5.63574 4.92871L6.69629 5.98926Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.0713 5.63574L18.0107 6.69629L17.3037 5.98926L18.3643 4.92871L19.0713 5.63574Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M12.5 4H11.5V2.5H12.5V4Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconSunLow;\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,EAAwCC,GAEjDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CAAK,EAAE,gCAAgC,KAAK,eAAe,EAC5DG,EAAA,cAACH,EAAA,CACC,EAAE,oFACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oFACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4MACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,2BAA2B,KAAK,eAAe,EACvDG,EAAA,cAACH,EAAA,CAAK,EAAE,gCAAgC,KAAK,eAAe,EAC5DG,EAAA,cAACH,EAAA,CACC,EAAE,oFACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oFACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,2BAA2B,KAAK,eAAe,CACzD,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconSunLow","props","React","CentralIconBase","IconSunLow_default"]}
|
package/README.md
CHANGED
|
@@ -1518,6 +1518,7 @@ Below is a complete list of available icons:
|
|
|
1518
1518
|
### Shopping & Payment
|
|
1519
1519
|
|
|
1520
1520
|
- Icon3dPackage
|
|
1521
|
+
- Icon3dPackage2
|
|
1521
1522
|
- IconAddToBasket
|
|
1522
1523
|
- IconAddToBasket2
|
|
1523
1524
|
- IconBanknote1
|
|
@@ -2174,6 +2175,8 @@ Below is a complete list of available icons:
|
|
|
2174
2175
|
- IconRainyLight
|
|
2175
2176
|
- IconSnowFlakes
|
|
2176
2177
|
- IconSun
|
|
2178
|
+
- IconSunHigh
|
|
2179
|
+
- IconSunLow
|
|
2177
2180
|
- IconSunrise
|
|
2178
2181
|
- IconSunriseArrowUp
|
|
2179
2182
|
- IconSunset
|
package/filtered-icons.json
CHANGED
|
@@ -56,6 +56,20 @@
|
|
|
56
56
|
"packageName": "square-filled-radius-0-stroke-1",
|
|
57
57
|
"componentName": "Icon3dPackage"
|
|
58
58
|
},
|
|
59
|
+
{
|
|
60
|
+
"category": "Shopping & Payment",
|
|
61
|
+
"svg": "<path d=\"M11.502 12.2881V22.5381L2.875 17.5576L2.625 17.4141V7.16211L11.502 12.2881Z\" fill=\"currentColor\"/><path d=\"M21.3789 17.4141L21.1289 17.5576L12.502 22.5381V12.2881L16.752 9.83301V15.1484L17.752 14.5713V9.25586L21.3789 7.16211V17.4141Z\" fill=\"currentColor\"/><path d=\"M7.31348 4.16797L15.9375 9.14844L12.001 11.4219L3.125 6.29688L7.0625 4.02344L7.31348 4.16797Z\" fill=\"currentColor\"/><path d=\"M20.877 6.29688L16.9385 8.57031L8.0625 3.44629L12.002 1.17285L20.877 6.29688Z\" fill=\"currentColor\"/>",
|
|
62
|
+
"iconName": "3d-package-2, box, delivery",
|
|
63
|
+
"variant": {
|
|
64
|
+
"join": "square",
|
|
65
|
+
"filled": "on",
|
|
66
|
+
"radius": "0",
|
|
67
|
+
"stroke": "1"
|
|
68
|
+
},
|
|
69
|
+
"createdAt": "2026-04-09T14:02:42.532304+00:00",
|
|
70
|
+
"packageName": "square-filled-radius-0-stroke-1",
|
|
71
|
+
"componentName": "Icon3dPackage2"
|
|
72
|
+
},
|
|
59
73
|
{
|
|
60
74
|
"category": "Augmented Reality",
|
|
61
75
|
"svg": "<path d=\"M9.50005 12.0001C9.50005 8.99379 9.83293 6.29012 10.3611 4.35344C10.6262 3.38151 10.9329 2.63112 11.2525 2.13544C11.2784 2.09535 11.3038 2.05765 11.3288 2.02223C11.5506 2.00753 11.7744 2.00006 12 2.00006C17.5228 2.00006 22 6.47721 22 12.0001C22 12.2256 21.9925 12.4495 21.9778 12.6713C21.9424 12.6963 21.9047 12.7217 21.8647 12.7476C21.369 13.0672 20.6186 13.3739 19.6467 13.639C17.71 14.1672 15.0063 14.5001 12.0001 14.5001C11.1648 14.5001 10.3528 14.4744 9.5742 14.4259C9.52575 13.6473 9.50005 12.8354 9.50005 12.0001Z\" fill=\"currentColor\"/><path d=\"M21.8166 13.9165C21.2818 14.1762 20.636 14.4057 19.9098 14.6038C17.8652 15.1614 15.0689 15.5001 12.0001 15.5001C11.1954 15.5001 10.4095 15.4768 9.65101 15.4324C9.79758 17.0464 10.0442 18.4846 10.3611 19.6467C10.6262 20.6186 10.9329 21.369 11.2525 21.8647C11.2784 21.9048 11.3038 21.9425 11.3288 21.9779C11.5507 21.9926 11.7745 22.0001 12 22.0001C16.8674 22.0001 20.9226 18.5225 21.8166 13.9165Z\" fill=\"currentColor\"/><path d=\"M10.0837 21.8166C9.82394 21.2819 9.59442 20.636 9.39635 19.9098C9.05099 18.6435 8.7896 17.0887 8.64065 15.3594C6.91139 15.2105 5.35665 14.9491 4.09032 14.6038C3.36406 14.4057 2.71818 14.1762 2.18343 13.9164C2.957 17.9023 6.0978 21.0431 10.0837 21.8166Z\" fill=\"currentColor\"/><path d=\"M2.02217 12.6712C2.00747 12.4494 2 12.2256 2 12.0001C2 7.13263 5.47757 3.07742 10.0837 2.18348C9.82393 2.71823 9.59441 3.36408 9.39635 4.09032C8.83875 6.13485 8.50005 8.93118 8.50005 12.0001C8.50005 12.8047 8.52334 13.5906 8.56774 14.3491C6.95371 14.2025 5.5155 13.9559 4.35344 13.639C3.38151 13.3739 2.63112 13.0672 2.13544 12.7476C2.09533 12.7217 2.05761 12.6963 2.02217 12.6712Z\" fill=\"currentColor\"/>",
|
|
@@ -23702,6 +23716,34 @@
|
|
|
23702
23716
|
"packageName": "square-filled-radius-0-stroke-1",
|
|
23703
23717
|
"componentName": "IconSunburstChart2"
|
|
23704
23718
|
},
|
|
23719
|
+
{
|
|
23720
|
+
"category": "Weather",
|
|
23721
|
+
"svg": "<g clip-path=\"url(#clip0_14944_27796)\"><path d=\"M12.5 24H11.5V20H12.5V24Z\" fill=\"currentColor\"/><path d=\"M6.69629 18.0107L3.86816 20.8389L3.16113 20.1318L5.98926 17.3037L6.69629 18.0107Z\" fill=\"currentColor\"/><path d=\"M20.8389 20.1318L20.1318 20.8389L17.3037 18.0107L18.0107 17.3037L20.8389 20.1318Z\" fill=\"currentColor\"/><path d=\"M7.75781 7.75781C10.101 5.41467 13.899 5.41467 16.2422 7.75781C18.5853 10.101 18.5853 13.899 16.2422 16.2422C13.899 18.5853 10.101 18.5853 7.75781 16.2422C5.41467 13.899 5.41467 10.101 7.75781 7.75781Z\" fill=\"currentColor\"/><path d=\"M4 12.5H0V11.5H4V12.5Z\" fill=\"currentColor\"/><path d=\"M24 12.5H20V11.5H24V12.5Z\" fill=\"currentColor\"/><path d=\"M6.69629 5.98926L5.98926 6.69629L3.16113 3.86816L3.86816 3.16113L6.69629 5.98926Z\" fill=\"currentColor\"/><path d=\"M20.8389 3.86816L18.0107 6.69629L17.3037 5.98926L20.1318 3.16113L20.8389 3.86816Z\" fill=\"currentColor\"/><path d=\"M12.5 4H11.5V0H12.5V4Z\" fill=\"currentColor\"/></g><defs><clipPath id=\"clip0_14944_27796\"><rect width=\"24\" height=\"24\" fill=\"white\"/></clipPath></defs>",
|
|
23722
|
+
"iconName": "sun-high, light-mode, day, today",
|
|
23723
|
+
"variant": {
|
|
23724
|
+
"join": "square",
|
|
23725
|
+
"filled": "on",
|
|
23726
|
+
"radius": "0",
|
|
23727
|
+
"stroke": "1"
|
|
23728
|
+
},
|
|
23729
|
+
"createdAt": "2026-04-09T14:02:42.532304+00:00",
|
|
23730
|
+
"packageName": "square-filled-radius-0-stroke-1",
|
|
23731
|
+
"componentName": "IconSunHigh"
|
|
23732
|
+
},
|
|
23733
|
+
{
|
|
23734
|
+
"category": "Weather",
|
|
23735
|
+
"svg": "<path d=\"M12.5 21.5H11.5V20H12.5V21.5Z\" fill=\"currentColor\"/><path d=\"M6.69629 18.0107L5.63574 19.0713L4.92871 18.3643L5.98926 17.3037L6.69629 18.0107Z\" fill=\"currentColor\"/><path d=\"M19.0713 18.3643L18.3643 19.0713L17.3037 18.0107L18.0107 17.3037L19.0713 18.3643Z\" fill=\"currentColor\"/><path d=\"M7.75781 7.75781C10.101 5.41467 13.899 5.41467 16.2422 7.75781C18.5853 10.101 18.5853 13.899 16.2422 16.2422C13.899 18.5853 10.101 18.5853 7.75781 16.2422C5.41467 13.899 5.41467 10.101 7.75781 7.75781Z\" fill=\"currentColor\"/><path d=\"M4 12.5H2.5V11.5H4V12.5Z\" fill=\"currentColor\"/><path d=\"M21.5 12.5H20V11.5H21.5V12.5Z\" fill=\"currentColor\"/><path d=\"M6.69629 5.98926L5.98926 6.69629L4.92871 5.63574L5.63574 4.92871L6.69629 5.98926Z\" fill=\"currentColor\"/><path d=\"M19.0713 5.63574L18.0107 6.69629L17.3037 5.98926L18.3643 4.92871L19.0713 5.63574Z\" fill=\"currentColor\"/><path d=\"M12.5 4H11.5V2.5H12.5V4Z\" fill=\"currentColor\"/>",
|
|
23736
|
+
"iconName": "sun-low, light-mode, day, today",
|
|
23737
|
+
"variant": {
|
|
23738
|
+
"join": "square",
|
|
23739
|
+
"filled": "on",
|
|
23740
|
+
"radius": "0",
|
|
23741
|
+
"stroke": "1"
|
|
23742
|
+
},
|
|
23743
|
+
"createdAt": "2026-04-09T14:02:42.532304+00:00",
|
|
23744
|
+
"packageName": "square-filled-radius-0-stroke-1",
|
|
23745
|
+
"componentName": "IconSunLow"
|
|
23746
|
+
},
|
|
23705
23747
|
{
|
|
23706
23748
|
"category": "Weather",
|
|
23707
23749
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.5 3V6H11.5V3H12.5ZM2 12H5.05556V13H2V12ZM18.9444 12H22V13H18.9444V12ZM2 16H22V17H2V16ZM6 19H18V20H6V19Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.5585 7.23598L18.7191 5.07538L19.4262 5.78248L17.2656 7.94309L16.5585 7.23598Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.28125 5.07538L7.44185 7.23598L6.73475 7.94309L4.57414 5.78249L5.28125 5.07538Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7 13C7 10.2386 9.23858 8 12 8C14.7614 8 17 10.2386 17 13C14.9176 13 9.08237 13 7 13Z\" fill=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ export type CentralIconName =
|
|
|
3
3
|
| "Icon3dBoxBottom"
|
|
4
4
|
| "Icon3dBoxTop"
|
|
5
5
|
| "Icon3dPackage"
|
|
6
|
+
| "Icon3dPackage2"
|
|
6
7
|
| "Icon3dSphere"
|
|
7
8
|
| "Icon4k"
|
|
8
9
|
| "IconAddImage"
|
|
@@ -1692,6 +1693,8 @@ export type CentralIconName =
|
|
|
1692
1693
|
| "IconSun"
|
|
1693
1694
|
| "IconSunburstChart"
|
|
1694
1695
|
| "IconSunburstChart2"
|
|
1696
|
+
| "IconSunHigh"
|
|
1697
|
+
| "IconSunLow"
|
|
1695
1698
|
| "IconSunrise"
|
|
1696
1699
|
| "IconSunriseArrowUp"
|
|
1697
1700
|
| "IconSunset"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/square-filled-radius-0-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.183",
|
|
4
4
|
"style": "square-filled-radius-0-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/square-filled-radius-0-stroke-1/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1927,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 76,
|
|
@@ -1439,9 +1439,10 @@
|
|
|
1439
1439
|
]
|
|
1440
1440
|
},
|
|
1441
1441
|
"Shopping & Payment": {
|
|
1442
|
-
"count":
|
|
1442
|
+
"count": 71,
|
|
1443
1443
|
"icons": [
|
|
1444
1444
|
"Icon3dPackage",
|
|
1445
|
+
"Icon3dPackage2",
|
|
1445
1446
|
"IconAddToBasket",
|
|
1446
1447
|
"IconAddToBasket2",
|
|
1447
1448
|
"IconBanknote1",
|
|
@@ -2100,7 +2101,7 @@
|
|
|
2100
2101
|
]
|
|
2101
2102
|
},
|
|
2102
2103
|
"Weather": {
|
|
2103
|
-
"count":
|
|
2104
|
+
"count": 22,
|
|
2104
2105
|
"icons": [
|
|
2105
2106
|
"IconCloudSnow",
|
|
2106
2107
|
"IconCloudWeather",
|
|
@@ -2115,6 +2116,8 @@
|
|
|
2115
2116
|
"IconRainyLight",
|
|
2116
2117
|
"IconSnowFlakes",
|
|
2117
2118
|
"IconSun",
|
|
2119
|
+
"IconSunHigh",
|
|
2120
|
+
"IconSunLow",
|
|
2118
2121
|
"IconSunrise",
|
|
2119
2122
|
"IconSunriseArrowUp",
|
|
2120
2123
|
"IconSunset",
|
|
@@ -2130,6 +2133,7 @@
|
|
|
2130
2133
|
"Icon3dBoxBottom": "3d-box-bottom, shaders, model, room",
|
|
2131
2134
|
"Icon3dBoxTop": "3d-box-top, shaders, model, cube, ar",
|
|
2132
2135
|
"Icon3dPackage": "3d-package, box",
|
|
2136
|
+
"Icon3dPackage2": "3d-package-2, box, delivery",
|
|
2133
2137
|
"Icon3dSphere": "3d-sphere",
|
|
2134
2138
|
"Icon4k": "4k",
|
|
2135
2139
|
"IconAddImage": "add-image, upload-image",
|
|
@@ -3819,6 +3823,8 @@
|
|
|
3819
3823
|
"IconSun": "sun, light-mode, day, today",
|
|
3820
3824
|
"IconSunburstChart": "sunburst-chart",
|
|
3821
3825
|
"IconSunburstChart2": "sunburst-chart-2",
|
|
3826
|
+
"IconSunHigh": "sun-high, light-mode, day, today",
|
|
3827
|
+
"IconSunLow": "sun-low, light-mode, day, today",
|
|
3822
3828
|
"IconSunrise": "sunrise",
|
|
3823
3829
|
"IconSunriseArrowUp": "sunrise-arrow-up",
|
|
3824
3830
|
"IconSunset": "sunset",
|
package/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export { Icon3d, default as Icon3dDefault } from "./Icon3d";
|
|
|
2
2
|
export { Icon3dBoxBottom, default as Icon3dBoxBottomDefault, } from "./Icon3dBoxBottom";
|
|
3
3
|
export { Icon3dBoxTop, default as Icon3dBoxTopDefault } from "./Icon3dBoxTop";
|
|
4
4
|
export { Icon3dPackage, default as Icon3dPackageDefault, } from "./Icon3dPackage";
|
|
5
|
+
export { Icon3dPackage2, default as Icon3dPackage2Default, } from "./Icon3dPackage2";
|
|
5
6
|
export { Icon3dSphere, default as Icon3dSphereDefault } from "./Icon3dSphere";
|
|
6
7
|
export { Icon4k, default as Icon4kDefault } from "./Icon4k";
|
|
7
8
|
export { IconAddImage, default as IconAddImageDefault } from "./IconAddImage";
|
|
@@ -1689,6 +1690,8 @@ export { IconSuitcaseSticker, default as IconSuitcaseStickerDefault, } from "./I
|
|
|
1689
1690
|
export { IconSuitcaseWork, default as IconSuitcaseWorkDefault, } from "./IconSuitcaseWork";
|
|
1690
1691
|
export { IconSummary, default as IconSummaryDefault } from "./IconSummary";
|
|
1691
1692
|
export { IconSun, default as IconSunDefault } from "./IconSun";
|
|
1693
|
+
export { IconSunHigh, default as IconSunHighDefault } from "./IconSunHigh";
|
|
1694
|
+
export { IconSunLow, default as IconSunLowDefault } from "./IconSunLow";
|
|
1692
1695
|
export { IconSunburstChart, default as IconSunburstChartDefault, } from "./IconSunburstChart";
|
|
1693
1696
|
export { IconSunburstChart2, default as IconSunburstChart2Default, } from "./IconSunburstChart2";
|
|
1694
1697
|
export { IconSunrise, default as IconSunriseDefault } from "./IconSunrise";
|