@central-icons-react-native/square-filled-radius-0-stroke-2 1.1.182 → 1.1.184
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/IconLens/index.d.ts +4 -0
- package/IconLens/index.js +2 -0
- package/IconLens/index.js.map +1 -0
- package/IconLens/index.mjs +2 -0
- package/IconLens/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 +4 -0
- package/filtered-icons.json +56 -0
- package/icons/index.d.ts +4 -0
- package/icons-index.json +13 -5
- package/index.d.ts +4 -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 +28 -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})},a=(r,o,n,C)=>{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:!(C=u(o,e))||C.enumerable});return r};var L=(r,o,n)=>(n=r!=null?i(I(r)):{},a(o||!r||!r.__esModule?p(n,"default",{value:r,enumerable:!0}):n,r)),g=r=>a(p({},"__esModule",{value:!0}),r);var V={};d(V,{Icon3dPackage2:()=>c,default:()=>x});module.exports=g(V);var t=L(require("react"));var f=L(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 12.5771V22.5762L2.33984 17.5771V7.57715L11 12.5771Z",fill:"currentColor"}),t.default.createElement(l.Path,{d:"M21.6602 17.5771L13 22.5762V12.5771L16.3301 10.6543V15.6543L18.3301 14.499V9.49902L21.6602 7.57715V17.5771Z",fill:"currentColor"}),t.default.createElement(l.Path,{d:"M15.3291 8.92188L12 10.8447L3.33984 5.84473L6.66895 3.92285L15.3291 8.92188Z",fill:"currentColor"}),t.default.createElement(l.Path,{d:"M20.6592 5.84473L17.3281 7.76758L8.66895 2.76758L12 0.845703L20.6592 5.84473Z",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 12.5771V22.5762L2.33984 17.5771V7.57715L11 12.5771Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.6602 17.5771L13 22.5762V12.5771L16.3301 10.6543V15.6543L18.3301 14.499V9.49902L21.6602 7.57715V17.5771Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15.3291 8.92188L12 10.8447L3.33984 5.84473L6.66895 3.92285L15.3291 8.92188Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.6592 5.84473L17.3281 7.76758L8.66895 2.76758L12 0.845703L20.6592 5.84473Z\"\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,0DACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8GACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+EACF,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 C}from"react-native-svg";var e=({children:t,size:r=24,...l})=>p.createElement(C,{...l,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Path as n}from"react-native-svg";var a=t=>o.createElement(e,{...t},o.createElement(n,{d:"M11 12.5771V22.5762L2.33984 17.5771V7.57715L11 12.5771Z",fill:"currentColor"}),o.createElement(n,{d:"M21.6602 17.5771L13 22.5762V12.5771L16.3301 10.6543V15.6543L18.3301 14.499V9.49902L21.6602 7.57715V17.5771Z",fill:"currentColor"}),o.createElement(n,{d:"M15.3291 8.92188L12 10.8447L3.33984 5.84473L6.66895 3.92285L15.3291 8.92188Z",fill:"currentColor"}),o.createElement(n,{d:"M20.6592 5.84473L17.3281 7.76758L8.66895 2.76758L12 0.845703L20.6592 5.84473Z",fill:"currentColor"})),P=a;export{a 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 12.5771V22.5762L2.33984 17.5771V7.57715L11 12.5771Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.6602 17.5771L13 22.5762V12.5771L16.3301 10.6543V15.6543L18.3301 14.499V9.49902L21.6602 7.57715V17.5771Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15.3291 8.92188L12 10.8447L3.33984 5.84473L6.66895 3.92285L15.3291 8.92188Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.6592 5.84473L17.3281 7.76758L8.66895 2.76758L12 0.845703L20.6592 5.84473Z\"\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,0DACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8GACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+EACF,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 c=Object.create;var C=Object.defineProperty;var a=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var x=(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 d(o))!I.call(r,e)&&e!==n&&C(r,e,{get:()=>o[e],enumerable:!(p=a(o,e))||p.enumerable});return r};var i=(r,o,n)=>(n=r!=null?c(B(r)):{},f(o||!r||!r.__esModule?C(n,"default",{value:r,enumerable:!0}):n,r)),M=r=>f(C({},"__esModule",{value:!0}),r);var Z={};x(Z,{IconLens:()=>L,default:()=>P});module.exports=M(Z);var l=i(require("react"));var m=i(require("react")),s=require("react-native-svg"),u=({children:r,size:o=24,...n})=>m.default.createElement(s.Svg,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var t=require("react-native-svg"),L=r=>l.default.createElement(u,{...r},l.default.createElement(t.Path,{d:"M15.0996 21.5078C14.1235 21.8258 13.0822 22 12 22C10.1369 22 8.39376 21.4888 6.90039 20.6016L15.0996 15.8682V21.5078Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M21.7842 14.0693C21.1836 16.923 19.3664 19.3263 16.9004 20.7158V11.249L21.7842 14.0693Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M10.1992 16.6182L5.31641 19.4375C3.28069 17.6069 2 14.9532 2 12C2 11.9619 2.00153 11.9238 2.00195 11.8857L10.1992 16.6182Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M15.0996 10.209V13.79L12 15.5781L8.90039 13.7891V10.209L12 8.41992L15.0996 10.209Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M7.09961 12.749L2.21484 9.92969C2.81557 7.07622 4.63358 4.67253 7.09961 3.2832V12.749Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M18.6826 4.56152C20.7189 6.39212 22 9.04626 22 12C22 12.0375 21.9975 12.0749 21.9971 12.1123L13.7998 7.38086L18.6826 4.56152Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M12 2C13.8626 2 15.6055 2.5106 17.0986 3.39746L8.90039 8.13086V2.49121C9.8764 2.17327 10.9179 2 12 2Z",fill:"currentColor"})),P=L;0&&(module.exports={IconLens});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconLens/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 IconLens: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15.0996 21.5078C14.1235 21.8258 13.0822 22 12 22C10.1369 22 8.39376 21.4888 6.90039 20.6016L15.0996 15.8682V21.5078Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.7842 14.0693C21.1836 16.923 19.3664 19.3263 16.9004 20.7158V11.249L21.7842 14.0693Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M10.1992 16.6182L5.31641 19.4375C3.28069 17.6069 2 14.9532 2 12C2 11.9619 2.00153 11.9238 2.00195 11.8857L10.1992 16.6182Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15.0996 10.209V13.79L12 15.5781L8.90039 13.7891V10.209L12 8.41992L15.0996 10.209Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7.09961 12.749L2.21484 9.92969C2.81557 7.07622 4.63358 4.67253 7.09961 3.2832V12.749Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M18.6826 4.56152C20.7189 6.39212 22 9.04626 22 12C22 12.0375 21.9975 12.0749 21.9971 12.1123L13.7998 7.38086L18.6826 4.56152Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12 2C13.8626 2 15.6055 2.5106 17.0986 3.39746L8.90039 8.13086V2.49121C9.8764 2.17327 10.9179 2 12 2Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconLens;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,cAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAsCC,GAE/C,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,wHACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0FACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6HACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gIACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,wGACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconLens_exports","__export","IconLens","IconLens_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconLens","props","React","CentralIconBase","IconLens_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:l,size:n=24,...e})=>C.createElement(p,{...e,width:typeof n=="number"?`${n}px`:n,height:typeof n=="number"?`${n}px`:n,viewBox:"0 0 24 24",fill:"none"},l);import{Path as o}from"react-native-svg";var f=l=>r.createElement(t,{...l},r.createElement(o,{d:"M15.0996 21.5078C14.1235 21.8258 13.0822 22 12 22C10.1369 22 8.39376 21.4888 6.90039 20.6016L15.0996 15.8682V21.5078Z",fill:"currentColor"}),r.createElement(o,{d:"M21.7842 14.0693C21.1836 16.923 19.3664 19.3263 16.9004 20.7158V11.249L21.7842 14.0693Z",fill:"currentColor"}),r.createElement(o,{d:"M10.1992 16.6182L5.31641 19.4375C3.28069 17.6069 2 14.9532 2 12C2 11.9619 2.00153 11.9238 2.00195 11.8857L10.1992 16.6182Z",fill:"currentColor"}),r.createElement(o,{d:"M15.0996 10.209V13.79L12 15.5781L8.90039 13.7891V10.209L12 8.41992L15.0996 10.209Z",fill:"currentColor"}),r.createElement(o,{d:"M7.09961 12.749L2.21484 9.92969C2.81557 7.07622 4.63358 4.67253 7.09961 3.2832V12.749Z",fill:"currentColor"}),r.createElement(o,{d:"M18.6826 4.56152C20.7189 6.39212 22 9.04626 22 12C22 12.0375 21.9975 12.0749 21.9971 12.1123L13.7998 7.38086L18.6826 4.56152Z",fill:"currentColor"}),r.createElement(o,{d:"M12 2C13.8626 2 15.6055 2.5106 17.0986 3.39746L8.90039 8.13086V2.49121C9.8764 2.17327 10.9179 2 12 2Z",fill:"currentColor"})),I=f;export{f as IconLens,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconLens/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 IconLens: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15.0996 21.5078C14.1235 21.8258 13.0822 22 12 22C10.1369 22 8.39376 21.4888 6.90039 20.6016L15.0996 15.8682V21.5078Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.7842 14.0693C21.1836 16.923 19.3664 19.3263 16.9004 20.7158V11.249L21.7842 14.0693Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M10.1992 16.6182L5.31641 19.4375C3.28069 17.6069 2 14.9532 2 12C2 11.9619 2.00153 11.9238 2.00195 11.8857L10.1992 16.6182Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15.0996 10.209V13.79L12 15.5781L8.90039 13.7891V10.209L12 8.41992L15.0996 10.209Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7.09961 12.749L2.21484 9.92969C2.81557 7.07622 4.63358 4.67253 7.09961 3.2832V12.749Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M18.6826 4.56152C20.7189 6.39212 22 9.04626 22 12C22 12.0375 21.9975 12.0749 21.9971 12.1123L13.7998 7.38086L18.6826 4.56152Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12 2C13.8626 2 15.6055 2.5106 17.0986 3.39746L8.90039 8.13086V2.49121C9.8764 2.17327 10.9179 2 12 2Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconLens;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAsCC,GAE/CC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,wHACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0FACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6HACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qFACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,yFACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gIACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,wGACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconLens","props","React","CentralIconBase","IconLens_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_27746)"},n.default.createElement(l.Path,{d:"M13 24H11V20H13V24Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M7.0498 18.3643L4.22168 21.1924L2.80762 19.7783L5.63574 16.9502L7.0498 18.3643Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M21.1924 19.7783L19.7783 21.1924L16.9502 18.3643L18.3643 16.9502L21.1924 19.7783Z",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 13H0V11H4V13Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M24 13H20V11H24V13Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M7.0498 5.63574L5.63574 7.0498L2.80762 4.22168L4.22168 2.80762L7.0498 5.63574Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M21.1924 4.22168L18.3643 7.0498L16.9502 5.63574L19.7783 2.80762L21.1924 4.22168Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M13 4H11V0H13V4Z",fill:"currentColor"})),n.default.createElement(l.Defs,null,n.default.createElement(l.ClipPath,{id:"clip0_14944_27746"},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_27746)\">\n <Path d=\"M13 24H11V20H13V24Z\" fill=\"currentColor\" />\n <Path\n d=\"M7.0498 18.3643L4.22168 21.1924L2.80762 19.7783L5.63574 16.9502L7.0498 18.3643Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.1924 19.7783L19.7783 21.1924L16.9502 18.3643L18.3643 16.9502L21.1924 19.7783Z\"\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 13H0V11H4V13Z\" fill=\"currentColor\" />\n <Path d=\"M24 13H20V11H24V13Z\" fill=\"currentColor\" />\n <Path\n d=\"M7.0498 5.63574L5.63574 7.0498L2.80762 4.22168L4.22168 2.80762L7.0498 5.63574Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.1924 4.22168L18.3643 7.0498L16.9502 5.63574L19.7783 2.80762L21.1924 4.22168Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M13 4H11V0H13V4Z\" fill=\"currentColor\" />\n </G>\n <Defs>\n <ClipPath id=\"clip0_14944_27746\">\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,sBAAsB,KAAK,eAAe,EAClD,EAAAA,QAAA,cAAC,QACC,EAAE,kFACF,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,mBAAmB,KAAK,eAAe,EAC/C,EAAAA,QAAA,cAAC,QAAK,EAAE,sBAAsB,KAAK,eAAe,EAClD,EAAAA,QAAA,cAAC,QACC,EAAE,iFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,mBAAmB,KAAK,eAAe,CACjD,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_27746)"},r.createElement(o,{d:"M13 24H11V20H13V24Z",fill:"currentColor"}),r.createElement(o,{d:"M7.0498 18.3643L4.22168 21.1924L2.80762 19.7783L5.63574 16.9502L7.0498 18.3643Z",fill:"currentColor"}),r.createElement(o,{d:"M21.1924 19.7783L19.7783 21.1924L16.9502 18.3643L18.3643 16.9502L21.1924 19.7783Z",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 13H0V11H4V13Z",fill:"currentColor"}),r.createElement(o,{d:"M24 13H20V11H24V13Z",fill:"currentColor"}),r.createElement(o,{d:"M7.0498 5.63574L5.63574 7.0498L2.80762 4.22168L4.22168 2.80762L7.0498 5.63574Z",fill:"currentColor"}),r.createElement(o,{d:"M21.1924 4.22168L18.3643 7.0498L16.9502 5.63574L19.7783 2.80762L21.1924 4.22168Z",fill:"currentColor"}),r.createElement(o,{d:"M13 4H11V0H13V4Z",fill:"currentColor"})),r.createElement(f,null,r.createElement(C,{id:"clip0_14944_27746"},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_27746)\">\n <Path d=\"M13 24H11V20H13V24Z\" fill=\"currentColor\" />\n <Path\n d=\"M7.0498 18.3643L4.22168 21.1924L2.80762 19.7783L5.63574 16.9502L7.0498 18.3643Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.1924 19.7783L19.7783 21.1924L16.9502 18.3643L18.3643 16.9502L21.1924 19.7783Z\"\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 13H0V11H4V13Z\" fill=\"currentColor\" />\n <Path d=\"M24 13H20V11H24V13Z\" fill=\"currentColor\" />\n <Path\n d=\"M7.0498 5.63574L5.63574 7.0498L2.80762 4.22168L4.22168 2.80762L7.0498 5.63574Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.1924 4.22168L18.3643 7.0498L16.9502 5.63574L19.7783 2.80762L21.1924 4.22168Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M13 4H11V0H13V4Z\" fill=\"currentColor\" />\n </G>\n <Defs>\n <ClipPath id=\"clip0_14944_27746\">\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,sBAAsB,KAAK,eAAe,EAClDI,EAAA,cAACJ,EAAA,CACC,EAAE,kFACF,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,mBAAmB,KAAK,eAAe,EAC/CI,EAAA,cAACJ,EAAA,CAAK,EAAE,sBAAsB,KAAK,eAAe,EAClDI,EAAA,cAACJ,EAAA,CACC,EAAE,iFACF,KAAK,eACP,EACAI,EAAA,cAACJ,EAAA,CACC,EAAE,mFACF,KAAK,eACP,EACAI,EAAA,cAACJ,EAAA,CAAK,EAAE,mBAAmB,KAAK,eAAe,CACjD,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:"M13 22.5H11V20H13V22.5Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M7.0498 18.3643L5.28223 20.1318L3.86816 18.7178L5.63574 16.9502L7.0498 18.3643Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M20.1318 18.7178L18.7178 20.1318L16.9502 18.3643L18.3643 16.9502L20.1318 18.7178Z",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 13H1.5V11H4V13Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M22.5 13H20V11H22.5V13Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M7.0498 5.63574L5.63574 7.0498L3.86816 5.28223L5.28223 3.86816L7.0498 5.63574Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M20.1318 5.28223L18.3643 7.0498L16.9502 5.63574L18.7178 3.86816L20.1318 5.28223Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M13 4H11V1.5H13V4Z",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=\"M13 22.5H11V20H13V22.5Z\" fill=\"currentColor\" />\n <Path\n d=\"M7.0498 18.3643L5.28223 20.1318L3.86816 18.7178L5.63574 16.9502L7.0498 18.3643Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.1318 18.7178L18.7178 20.1318L16.9502 18.3643L18.3643 16.9502L20.1318 18.7178Z\"\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 13H1.5V11H4V13Z\" fill=\"currentColor\" />\n <Path d=\"M22.5 13H20V11H22.5V13Z\" fill=\"currentColor\" />\n <Path\n d=\"M7.0498 5.63574L5.63574 7.0498L3.86816 5.28223L5.28223 3.86816L7.0498 5.63574Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.1318 5.28223L18.3643 7.0498L16.9502 5.63574L18.7178 3.86816L20.1318 5.28223Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M13 4H11V1.5H13V4Z\" 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,0BAA0B,KAAK,eAAe,EACtD,EAAAA,QAAA,cAAC,QACC,EAAE,kFACF,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,qBAAqB,KAAK,eAAe,EACjD,EAAAA,QAAA,cAAC,QAAK,EAAE,0BAA0B,KAAK,eAAe,EACtD,EAAAA,QAAA,cAAC,QACC,EAAE,iFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,qBAAqB,KAAK,eAAe,CACnD,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:"M13 22.5H11V20H13V22.5Z",fill:"currentColor"}),r.createElement(o,{d:"M7.0498 18.3643L5.28223 20.1318L3.86816 18.7178L5.63574 16.9502L7.0498 18.3643Z",fill:"currentColor"}),r.createElement(o,{d:"M20.1318 18.7178L18.7178 20.1318L16.9502 18.3643L18.3643 16.9502L20.1318 18.7178Z",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 13H1.5V11H4V13Z",fill:"currentColor"}),r.createElement(o,{d:"M22.5 13H20V11H22.5V13Z",fill:"currentColor"}),r.createElement(o,{d:"M7.0498 5.63574L5.63574 7.0498L3.86816 5.28223L5.28223 3.86816L7.0498 5.63574Z",fill:"currentColor"}),r.createElement(o,{d:"M20.1318 5.28223L18.3643 7.0498L16.9502 5.63574L18.7178 3.86816L20.1318 5.28223Z",fill:"currentColor"}),r.createElement(o,{d:"M13 4H11V1.5H13V4Z",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=\"M13 22.5H11V20H13V22.5Z\" fill=\"currentColor\" />\n <Path\n d=\"M7.0498 18.3643L5.28223 20.1318L3.86816 18.7178L5.63574 16.9502L7.0498 18.3643Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.1318 18.7178L18.7178 20.1318L16.9502 18.3643L18.3643 16.9502L20.1318 18.7178Z\"\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 13H1.5V11H4V13Z\" fill=\"currentColor\" />\n <Path d=\"M22.5 13H20V11H22.5V13Z\" fill=\"currentColor\" />\n <Path\n d=\"M7.0498 5.63574L5.63574 7.0498L3.86816 5.28223L5.28223 3.86816L7.0498 5.63574Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.1318 5.28223L18.3643 7.0498L16.9502 5.63574L18.7178 3.86816L20.1318 5.28223Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M13 4H11V1.5H13V4Z\" 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,0BAA0B,KAAK,eAAe,EACtDG,EAAA,cAACH,EAAA,CACC,EAAE,kFACF,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,qBAAqB,KAAK,eAAe,EACjDG,EAAA,cAACH,EAAA,CAAK,EAAE,0BAA0B,KAAK,eAAe,EACtDG,EAAA,cAACH,EAAA,CACC,EAAE,iFACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mFACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,qBAAqB,KAAK,eAAe,CACnD,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconSunLow","props","React","CentralIconBase","IconSunLow_default"]}
|
package/README.md
CHANGED
|
@@ -1456,6 +1456,7 @@ Below is a complete list of available icons:
|
|
|
1456
1456
|
- IconImages41
|
|
1457
1457
|
- IconImages5
|
|
1458
1458
|
- IconImagesCircle
|
|
1459
|
+
- IconLens
|
|
1459
1460
|
- IconMinimize
|
|
1460
1461
|
- IconMultiMedia
|
|
1461
1462
|
- IconNoFlash
|
|
@@ -1518,6 +1519,7 @@ Below is a complete list of available icons:
|
|
|
1518
1519
|
### Shopping & Payment
|
|
1519
1520
|
|
|
1520
1521
|
- Icon3dPackage
|
|
1522
|
+
- Icon3dPackage2
|
|
1521
1523
|
- IconAddToBasket
|
|
1522
1524
|
- IconAddToBasket2
|
|
1523
1525
|
- IconBanknote1
|
|
@@ -2174,6 +2176,8 @@ Below is a complete list of available icons:
|
|
|
2174
2176
|
- IconRainyLight
|
|
2175
2177
|
- IconSnowFlakes
|
|
2176
2178
|
- IconSun
|
|
2179
|
+
- IconSunHigh
|
|
2180
|
+
- IconSunLow
|
|
2177
2181
|
- IconSunrise
|
|
2178
2182
|
- IconSunriseArrowUp
|
|
2179
2183
|
- IconSunset
|
package/filtered-icons.json
CHANGED
|
@@ -56,6 +56,20 @@
|
|
|
56
56
|
"packageName": "square-filled-radius-0-stroke-2",
|
|
57
57
|
"componentName": "Icon3dPackage"
|
|
58
58
|
},
|
|
59
|
+
{
|
|
60
|
+
"category": "Shopping & Payment",
|
|
61
|
+
"svg": "<path d=\"M11 12.5771V22.5762L2.33984 17.5771V7.57715L11 12.5771Z\" fill=\"currentColor\"/><path d=\"M21.6602 17.5771L13 22.5762V12.5771L16.3301 10.6543V15.6543L18.3301 14.499V9.49902L21.6602 7.57715V17.5771Z\" fill=\"currentColor\"/><path d=\"M15.3291 8.92188L12 10.8447L3.33984 5.84473L6.66895 3.92285L15.3291 8.92188Z\" fill=\"currentColor\"/><path d=\"M20.6592 5.84473L17.3281 7.76758L8.66895 2.76758L12 0.845703L20.6592 5.84473Z\" fill=\"currentColor\"/>",
|
|
62
|
+
"iconName": "3d-package-2, box, delivery",
|
|
63
|
+
"variant": {
|
|
64
|
+
"join": "square",
|
|
65
|
+
"filled": "on",
|
|
66
|
+
"radius": "0",
|
|
67
|
+
"stroke": "2"
|
|
68
|
+
},
|
|
69
|
+
"createdAt": "2026-04-09T14:02:42.532304+00:00",
|
|
70
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
71
|
+
"componentName": "Icon3dPackage2"
|
|
72
|
+
},
|
|
59
73
|
{
|
|
60
74
|
"category": "Augmented Reality",
|
|
61
75
|
"svg": "<path d=\"M9.99995 12C9.99995 9.02506 10.3299 6.36771 10.8434 4.48495C11.1021 3.53641 11.3923 2.84109 11.6726 2.40636C11.8732 2.09533 11.9998 2.01683 12.0326 2.00006C17.5295 2.01761 21.9823 6.47041 21.9999 11.9674C21.9831 12.0001 21.9046 12.1268 21.5936 12.3273C21.1589 12.6076 20.4635 12.8979 19.515 13.1566C17.6323 13.67 14.9749 14 11.9999 14C11.3316 14 10.6793 13.9834 10.0482 13.9517C10.0166 13.3206 9.99995 12.6683 9.99995 12Z\" fill=\"currentColor\"/><path d=\"M8.03867 13.7939C6.68364 13.6467 5.47677 13.4271 4.48489 13.1566C3.53635 12.8979 2.84103 12.6076 2.40629 12.3273C2.09527 12.1268 2.01677 12.0001 2 11.9674C2.0148 7.33262 5.18262 3.44015 9.47087 2.32258C9.26073 2.81339 9.07563 3.36556 8.91386 3.95872C8.34156 6.05718 7.99995 8.89983 7.99995 12C7.99995 12.6091 8.01314 13.2083 8.03867 13.7939Z\" fill=\"currentColor\"/><path d=\"M8.18077 15.8192C8.33654 17.4082 8.58775 18.8456 8.91386 20.0413C9.07563 20.6345 9.26073 21.1866 9.47087 21.6774C5.98036 20.7678 3.23219 18.0196 2.32252 14.5291C2.81333 14.7392 3.3655 14.9243 3.95866 15.0861C5.1544 15.4122 6.59179 15.6634 8.18077 15.8192Z\" fill=\"currentColor\"/><path d=\"M12.0326 22C16.6673 21.9852 20.5598 18.8173 21.6774 14.5291C21.1866 14.7392 20.6344 14.9243 20.0412 15.0861C17.9428 15.6584 15.1001 16 11.9999 16C11.3908 16 10.7916 15.9868 10.2061 15.9613C10.3533 17.3163 10.5729 18.5232 10.8434 19.5151C11.1021 20.4636 11.3923 21.1589 11.6726 21.5937C11.8732 21.9047 11.9998 21.9832 12.0326 22Z\" fill=\"currentColor\"/>",
|
|
@@ -14644,6 +14658,20 @@
|
|
|
14644
14658
|
"packageName": "square-filled-radius-0-stroke-2",
|
|
14645
14659
|
"componentName": "IconLemonsqueezy"
|
|
14646
14660
|
},
|
|
14661
|
+
{
|
|
14662
|
+
"category": "Photography & Video",
|
|
14663
|
+
"svg": "<path d=\"M15.0996 21.5078C14.1235 21.8258 13.0822 22 12 22C10.1369 22 8.39376 21.4888 6.90039 20.6016L15.0996 15.8682V21.5078Z\" fill=\"currentColor\"/><path d=\"M21.7842 14.0693C21.1836 16.923 19.3664 19.3263 16.9004 20.7158V11.249L21.7842 14.0693Z\" fill=\"currentColor\"/><path d=\"M10.1992 16.6182L5.31641 19.4375C3.28069 17.6069 2 14.9532 2 12C2 11.9619 2.00153 11.9238 2.00195 11.8857L10.1992 16.6182Z\" fill=\"currentColor\"/><path d=\"M15.0996 10.209V13.79L12 15.5781L8.90039 13.7891V10.209L12 8.41992L15.0996 10.209Z\" fill=\"currentColor\"/><path d=\"M7.09961 12.749L2.21484 9.92969C2.81557 7.07622 4.63358 4.67253 7.09961 3.2832V12.749Z\" fill=\"currentColor\"/><path d=\"M18.6826 4.56152C20.7189 6.39212 22 9.04626 22 12C22 12.0375 21.9975 12.0749 21.9971 12.1123L13.7998 7.38086L18.6826 4.56152Z\" fill=\"currentColor\"/><path d=\"M12 2C13.8626 2 15.6055 2.5106 17.0986 3.39746L8.90039 8.13086V2.49121C9.8764 2.17327 10.9179 2 12 2Z\" fill=\"currentColor\"/>",
|
|
14664
|
+
"iconName": "lens, camera, focal-length , aperture, f-stop, iso, focus, depth",
|
|
14665
|
+
"variant": {
|
|
14666
|
+
"join": "square",
|
|
14667
|
+
"filled": "on",
|
|
14668
|
+
"radius": "0",
|
|
14669
|
+
"stroke": "2"
|
|
14670
|
+
},
|
|
14671
|
+
"createdAt": "2026-04-10T14:02:22.83501+00:00",
|
|
14672
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
14673
|
+
"componentName": "IconLens"
|
|
14674
|
+
},
|
|
14647
14675
|
{
|
|
14648
14676
|
"category": "Typography",
|
|
14649
14677
|
"svg": "<path d=\"M12.0586 9.4082L12.9492 12.5957H11.0566L11.9473 9.4082H12.0586Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM10.6875 7.54492L7.8457 16H10.1016L10.623 14.1426H13.3828L13.9043 16H16.1602L13.3184 7.54492H10.6875Z\" fill=\"currentColor\"/>",
|
|
@@ -23702,6 +23730,34 @@
|
|
|
23702
23730
|
"packageName": "square-filled-radius-0-stroke-2",
|
|
23703
23731
|
"componentName": "IconSunburstChart2"
|
|
23704
23732
|
},
|
|
23733
|
+
{
|
|
23734
|
+
"category": "Weather",
|
|
23735
|
+
"svg": "<g clip-path=\"url(#clip0_14944_27746)\"><path d=\"M13 24H11V20H13V24Z\" fill=\"currentColor\"/><path d=\"M7.0498 18.3643L4.22168 21.1924L2.80762 19.7783L5.63574 16.9502L7.0498 18.3643Z\" fill=\"currentColor\"/><path d=\"M21.1924 19.7783L19.7783 21.1924L16.9502 18.3643L18.3643 16.9502L21.1924 19.7783Z\" 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 13H0V11H4V13Z\" fill=\"currentColor\"/><path d=\"M24 13H20V11H24V13Z\" fill=\"currentColor\"/><path d=\"M7.0498 5.63574L5.63574 7.0498L2.80762 4.22168L4.22168 2.80762L7.0498 5.63574Z\" fill=\"currentColor\"/><path d=\"M21.1924 4.22168L18.3643 7.0498L16.9502 5.63574L19.7783 2.80762L21.1924 4.22168Z\" fill=\"currentColor\"/><path d=\"M13 4H11V0H13V4Z\" fill=\"currentColor\"/></g><defs><clipPath id=\"clip0_14944_27746\"><rect width=\"24\" height=\"24\" fill=\"white\"/></clipPath></defs>",
|
|
23736
|
+
"iconName": "sun-high, light-mode, day, today",
|
|
23737
|
+
"variant": {
|
|
23738
|
+
"join": "square",
|
|
23739
|
+
"filled": "on",
|
|
23740
|
+
"radius": "0",
|
|
23741
|
+
"stroke": "2"
|
|
23742
|
+
},
|
|
23743
|
+
"createdAt": "2026-04-09T14:02:42.532304+00:00",
|
|
23744
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
23745
|
+
"componentName": "IconSunHigh"
|
|
23746
|
+
},
|
|
23747
|
+
{
|
|
23748
|
+
"category": "Weather",
|
|
23749
|
+
"svg": "<path d=\"M13 22.5H11V20H13V22.5Z\" fill=\"currentColor\"/><path d=\"M7.0498 18.3643L5.28223 20.1318L3.86816 18.7178L5.63574 16.9502L7.0498 18.3643Z\" fill=\"currentColor\"/><path d=\"M20.1318 18.7178L18.7178 20.1318L16.9502 18.3643L18.3643 16.9502L20.1318 18.7178Z\" 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 13H1.5V11H4V13Z\" fill=\"currentColor\"/><path d=\"M22.5 13H20V11H22.5V13Z\" fill=\"currentColor\"/><path d=\"M7.0498 5.63574L5.63574 7.0498L3.86816 5.28223L5.28223 3.86816L7.0498 5.63574Z\" fill=\"currentColor\"/><path d=\"M20.1318 5.28223L18.3643 7.0498L16.9502 5.63574L18.7178 3.86816L20.1318 5.28223Z\" fill=\"currentColor\"/><path d=\"M13 4H11V1.5H13V4Z\" fill=\"currentColor\"/>",
|
|
23750
|
+
"iconName": "sun-low, light-mode, day, today",
|
|
23751
|
+
"variant": {
|
|
23752
|
+
"join": "square",
|
|
23753
|
+
"filled": "on",
|
|
23754
|
+
"radius": "0",
|
|
23755
|
+
"stroke": "2"
|
|
23756
|
+
},
|
|
23757
|
+
"createdAt": "2026-04-09T14:02:42.532304+00:00",
|
|
23758
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
23759
|
+
"componentName": "IconSunLow"
|
|
23760
|
+
},
|
|
23705
23761
|
{
|
|
23706
23762
|
"category": "Weather",
|
|
23707
23763
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13 2V5H11V2H13ZM2 11H5V13H2V11ZM19 11H22V13H19V11Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.242 6.34315L18.3634 4.22183L19.7776 5.63604L17.6562 7.75736L16.242 6.34315Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 15H22V17H2V15ZM6 19H18V21H6V19Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.63672 4.22183L7.75804 6.34315L6.34383 7.75736L4.22251 5.63604L5.63672 4.22183Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7 13V12C7 9.23858 9.23858 7 12 7C14.7614 7 17 9.23858 17 12V13C13.0382 13 10.9618 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"
|
|
@@ -1045,6 +1046,7 @@ export type CentralIconName =
|
|
|
1045
1046
|
| "IconLayoutWindow"
|
|
1046
1047
|
| "IconLeaderboard"
|
|
1047
1048
|
| "IconLemonsqueezy"
|
|
1049
|
+
| "IconLens"
|
|
1048
1050
|
| "IconLetterACircle"
|
|
1049
1051
|
| "IconLetterASquare"
|
|
1050
1052
|
| "IconLetterZCircle"
|
|
@@ -1692,6 +1694,8 @@ export type CentralIconName =
|
|
|
1692
1694
|
| "IconSun"
|
|
1693
1695
|
| "IconSunburstChart"
|
|
1694
1696
|
| "IconSunburstChart2"
|
|
1697
|
+
| "IconSunHigh"
|
|
1698
|
+
| "IconSunLow"
|
|
1695
1699
|
| "IconSunrise"
|
|
1696
1700
|
| "IconSunriseArrowUp"
|
|
1697
1701
|
| "IconSunset"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/square-filled-radius-0-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.184",
|
|
4
4
|
"style": "square-filled-radius-0-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/square-filled-radius-0-stroke-2/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": 1928,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 76,
|
|
@@ -1315,7 +1315,7 @@
|
|
|
1315
1315
|
]
|
|
1316
1316
|
},
|
|
1317
1317
|
"Photography & Video": {
|
|
1318
|
-
"count":
|
|
1318
|
+
"count": 85,
|
|
1319
1319
|
"icons": [
|
|
1320
1320
|
"Icon4k",
|
|
1321
1321
|
"IconAddImage",
|
|
@@ -1376,6 +1376,7 @@
|
|
|
1376
1376
|
"IconImages41",
|
|
1377
1377
|
"IconImages5",
|
|
1378
1378
|
"IconImagesCircle",
|
|
1379
|
+
"IconLens",
|
|
1379
1380
|
"IconMinimize",
|
|
1380
1381
|
"IconMultiMedia",
|
|
1381
1382
|
"IconNoFlash",
|
|
@@ -1439,9 +1440,10 @@
|
|
|
1439
1440
|
]
|
|
1440
1441
|
},
|
|
1441
1442
|
"Shopping & Payment": {
|
|
1442
|
-
"count":
|
|
1443
|
+
"count": 71,
|
|
1443
1444
|
"icons": [
|
|
1444
1445
|
"Icon3dPackage",
|
|
1446
|
+
"Icon3dPackage2",
|
|
1445
1447
|
"IconAddToBasket",
|
|
1446
1448
|
"IconAddToBasket2",
|
|
1447
1449
|
"IconBanknote1",
|
|
@@ -2100,7 +2102,7 @@
|
|
|
2100
2102
|
]
|
|
2101
2103
|
},
|
|
2102
2104
|
"Weather": {
|
|
2103
|
-
"count":
|
|
2105
|
+
"count": 22,
|
|
2104
2106
|
"icons": [
|
|
2105
2107
|
"IconCloudSnow",
|
|
2106
2108
|
"IconCloudWeather",
|
|
@@ -2115,6 +2117,8 @@
|
|
|
2115
2117
|
"IconRainyLight",
|
|
2116
2118
|
"IconSnowFlakes",
|
|
2117
2119
|
"IconSun",
|
|
2120
|
+
"IconSunHigh",
|
|
2121
|
+
"IconSunLow",
|
|
2118
2122
|
"IconSunrise",
|
|
2119
2123
|
"IconSunriseArrowUp",
|
|
2120
2124
|
"IconSunset",
|
|
@@ -2130,6 +2134,7 @@
|
|
|
2130
2134
|
"Icon3dBoxBottom": "3d-box-bottom, shaders, model, room",
|
|
2131
2135
|
"Icon3dBoxTop": "3d-box-top, shaders, model, cube, ar",
|
|
2132
2136
|
"Icon3dPackage": "3d-package, box",
|
|
2137
|
+
"Icon3dPackage2": "3d-package-2, box, delivery",
|
|
2133
2138
|
"Icon3dSphere": "3d-sphere",
|
|
2134
2139
|
"Icon4k": "4k",
|
|
2135
2140
|
"IconAddImage": "add-image, upload-image",
|
|
@@ -3172,6 +3177,7 @@
|
|
|
3172
3177
|
"IconLayoutWindow": "layout-window, grid, window",
|
|
3173
3178
|
"IconLeaderboard": "leaderboard, winner, stats, graph",
|
|
3174
3179
|
"IconLemonsqueezy": "lemonsqueezy",
|
|
3180
|
+
"IconLens": "lens, camera, focal-length, aperture, f-stop, iso, focus, depth",
|
|
3175
3181
|
"IconLetterACircle": "letter-a-circle",
|
|
3176
3182
|
"IconLetterASquare": "letter-a-square, key",
|
|
3177
3183
|
"IconLetterZCircle": "letter-z-circle",
|
|
@@ -3819,6 +3825,8 @@
|
|
|
3819
3825
|
"IconSun": "sun, light-mode, day, today",
|
|
3820
3826
|
"IconSunburstChart": "sunburst-chart",
|
|
3821
3827
|
"IconSunburstChart2": "sunburst-chart-2",
|
|
3828
|
+
"IconSunHigh": "sun-high, light-mode, day, today",
|
|
3829
|
+
"IconSunLow": "sun-low, light-mode, day, today",
|
|
3822
3830
|
"IconSunrise": "sunrise",
|
|
3823
3831
|
"IconSunriseArrowUp": "sunrise-arrow-up",
|
|
3824
3832
|
"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";
|
|
@@ -1044,6 +1045,7 @@ export { IconLayoutTopbar, default as IconLayoutTopbarDefault, } from "./IconLay
|
|
|
1044
1045
|
export { IconLayoutWindow, default as IconLayoutWindowDefault, } from "./IconLayoutWindow";
|
|
1045
1046
|
export { IconLeaderboard, default as IconLeaderboardDefault, } from "./IconLeaderboard";
|
|
1046
1047
|
export { IconLemonsqueezy, default as IconLemonsqueezyDefault, } from "./IconLemonsqueezy";
|
|
1048
|
+
export { IconLens, default as IconLensDefault } from "./IconLens";
|
|
1047
1049
|
export { IconLetterACircle, default as IconLetterACircleDefault, } from "./IconLetterACircle";
|
|
1048
1050
|
export { IconLetterASquare, default as IconLetterASquareDefault, } from "./IconLetterASquare";
|
|
1049
1051
|
export { IconLetterZCircle, default as IconLetterZCircleDefault, } from "./IconLetterZCircle";
|
|
@@ -1689,6 +1691,8 @@ export { IconSuitcaseSticker, default as IconSuitcaseStickerDefault, } from "./I
|
|
|
1689
1691
|
export { IconSuitcaseWork, default as IconSuitcaseWorkDefault, } from "./IconSuitcaseWork";
|
|
1690
1692
|
export { IconSummary, default as IconSummaryDefault } from "./IconSummary";
|
|
1691
1693
|
export { IconSun, default as IconSunDefault } from "./IconSun";
|
|
1694
|
+
export { IconSunHigh, default as IconSunHighDefault } from "./IconSunHigh";
|
|
1695
|
+
export { IconSunLow, default as IconSunLowDefault } from "./IconSunLow";
|
|
1692
1696
|
export { IconSunburstChart, default as IconSunburstChartDefault, } from "./IconSunburstChart";
|
|
1693
1697
|
export { IconSunburstChart2, default as IconSunburstChart2Default, } from "./IconSunburstChart2";
|
|
1694
1698
|
export { IconSunrise, default as IconSunriseDefault } from "./IconSunrise";
|