@central-icons-react-native/round-filled-radius-0-stroke-2 1.1.190 → 1.1.192
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/{IconMoon1 → IconDevices2}/index.d.ts +2 -2
- package/IconDevices2/index.js +2 -0
- package/IconDevices2/index.js.map +1 -0
- package/IconDevices2/index.mjs +2 -0
- package/IconDevices2/index.mjs.map +1 -0
- package/IconFullMoon/index.d.ts +4 -0
- package/IconFullMoon/index.js +2 -0
- package/IconFullMoon/index.js.map +1 -0
- package/{IconMoon1 → IconFullMoon}/index.mjs +1 -1
- package/IconFullMoon/index.mjs.map +1 -0
- package/IconRemixCircle/index.d.ts +4 -0
- package/IconRemixCircle/index.js +2 -0
- package/IconRemixCircle/index.js.map +1 -0
- package/IconRemixCircle/index.mjs +2 -0
- package/IconRemixCircle/index.mjs.map +1 -0
- package/README.md +3 -1
- package/filtered-icons.json +44 -16
- package/icons/index.d.ts +3 -1
- package/icons-index.json +12 -8
- package/index.d.ts +3 -1
- 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 +23 -9
- package/IconMoon1/index.js +0 -2
- package/IconMoon1/index.js.map +0 -1
- package/IconMoon1/index.mjs.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { FC } from "react";
|
|
2
2
|
import { type CentralIconBaseProps } from "../CentralIconBase";
|
|
3
|
-
export declare const
|
|
4
|
-
export default
|
|
3
|
+
export declare const IconDevices2: FC<CentralIconBaseProps>;
|
|
4
|
+
export default IconDevices2;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var C=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,H=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!H.call(r,t)&&t!==e&&C(r,t,{get:()=>o[t],enumerable:!(l=B(o,t))||l.enumerable});return r};var m=(r,o,e)=>(e=r!=null?u(x(r)):{},a(o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e,r)),V=r=>a(C({},"__esModule",{value:!0}),r);var v={};P(v,{IconDevices2:()=>i,default:()=>g});module.exports=V(v);var n=m(require("react"));var s=m(require("react")),f=require("react-native-svg"),c=({children:r,size:o=24,...e})=>s.default.createElement(f.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),i=r=>n.default.createElement(c,{...r},n.default.createElement(p.Path,{d:"M22 9C22.5523 9 23 9.44772 23 10V20C23 20.5523 22.5523 21 22 21H17C16.4477 21 16 20.5523 16 20V10C16 9.44772 16.4477 9 17 9H22Z",fill:"currentColor"}),n.default.createElement(p.Path,{d:"M15 20H2C1.44772 20 1 19.5523 1 19V18C1 17.4477 1.44772 17 2 17H15V20Z",fill:"currentColor"}),n.default.createElement(p.Path,{d:"M20 3C20.5523 3 21 3.44772 21 4V8H17C15.8954 8 15 8.89543 15 10V16H3V4C3 3.44772 3.44772 3 4 3H20Z",fill:"currentColor"})),g=i;0&&(module.exports={IconDevices2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconDevices2/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 IconDevices2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M22 9C22.5523 9 23 9.44772 23 10V20C23 20.5523 22.5523 21 22 21H17C16.4477 21 16 20.5523 16 20V10C16 9.44772 16.4477 9 17 9H22Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15 20H2C1.44772 20 1 19.5523 1 19V18C1 17.4477 1.44772 17 2 17H15V20Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20 3C20.5523 3 21 3.44772 21 4V8H17C15.8954 8 15 8.89543 15 10V16H3V4C3 3.44772 3.44772 3 4 3H20Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDevices2;\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,kBAAAE,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,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,kIACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yEACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qGACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconDevices2_exports","__export","IconDevices2","IconDevices2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconDevices2","props","React","CentralIconBase","IconDevices2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";import{Svg as l}from"react-native-svg";var n=({children:e,size:r=24,...C})=>p.createElement(l,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as t}from"react-native-svg";var a=e=>o.createElement(n,{...e},o.createElement(t,{d:"M22 9C22.5523 9 23 9.44772 23 10V20C23 20.5523 22.5523 21 22 21H17C16.4477 21 16 20.5523 16 20V10C16 9.44772 16.4477 9 17 9H22Z",fill:"currentColor"}),o.createElement(t,{d:"M15 20H2C1.44772 20 1 19.5523 1 19V18C1 17.4477 1.44772 17 2 17H15V20Z",fill:"currentColor"}),o.createElement(t,{d:"M20 3C20.5523 3 21 3.44772 21 4V8H17C15.8954 8 15 8.89543 15 10V16H3V4C3 3.44772 3.44772 3 4 3H20Z",fill:"currentColor"})),H=a;export{a as IconDevices2,H as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconDevices2/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 IconDevices2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M22 9C22.5523 9 23 9.44772 23 10V20C23 20.5523 22.5523 21 22 21H17C16.4477 21 16 20.5523 16 20V10C16 9.44772 16.4477 9 17 9H22Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15 20H2C1.44772 20 1 19.5523 1 19V18C1 17.4477 1.44772 17 2 17H15V20Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20 3C20.5523 3 21 3.44772 21 4V8H17C15.8954 8 15 8.89543 15 10V16H3V4C3 3.44772 3.44772 3 4 3H20Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDevices2;\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,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,kIACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,yEACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qGACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconDevices2","props","React","CentralIconBase","IconDevices2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var i=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var x=(C,o)=>{for(var r in o)n(C,r,{get:o[r],enumerable:!0})},l=(C,o,r,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of I(o))!v.call(C,e)&&e!==r&&n(C,e,{get:()=>o[e],enumerable:!(p=B(o,e))||p.enumerable});return C};var a=(C,o,r)=>(r=C!=null?i(d(C)):{},l(o||!C||!C.__esModule?n(r,"default",{value:C,enumerable:!0}):r,C)),P=C=>l(n({},"__esModule",{value:!0}),C);var M={};x(M,{IconFullMoon:()=>u,default:()=>g});module.exports=P(M);var t=a(require("react"));var m=a(require("react")),s=require("react-native-svg"),c=({children:C,size:o=24,...r})=>m.default.createElement(s.Svg,{...r,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},C);var f=require("react-native-svg"),u=C=>t.default.createElement(c,{...C},t.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C12.1545 2 12.3082 2.00381 12.4609 2.01074C12.52 2.01342 12.5789 2.01778 12.6377 2.02148C12.7433 2.02813 12.8484 2.036 12.9531 2.0459C13.0004 2.05037 13.0476 2.05542 13.0947 2.06055C13.2129 2.07342 13.3304 2.08852 13.4473 2.10547C13.4854 2.111 13.5235 2.11611 13.5615 2.12207C13.688 2.14191 13.8136 2.16491 13.9385 2.18945C13.97 2.19565 14.0018 2.20054 14.0332 2.20703C14.1805 2.23747 14.3268 2.27078 14.4717 2.30762C14.5225 2.32053 14.5726 2.33592 14.623 2.34961C14.7123 2.37382 14.8014 2.3982 14.8896 2.4248C14.9561 2.44482 15.0221 2.46595 15.0879 2.4873C15.1681 2.51333 15.2478 2.54038 15.3271 2.56836C15.3905 2.59072 15.4538 2.61312 15.5166 2.63672C15.6082 2.67115 15.6987 2.70809 15.7891 2.74512C15.8317 2.76257 15.8747 2.77885 15.917 2.79688C16.1902 2.91331 16.4567 3.04223 16.7168 3.18164C16.7699 3.21009 16.8225 3.23919 16.875 3.26855C16.9472 3.30897 17.0187 3.35044 17.0898 3.39258C17.1474 3.4267 17.2049 3.46086 17.2617 3.49609C17.3473 3.54915 17.4318 3.60364 17.5156 3.65918C17.5503 3.68213 17.5848 3.70515 17.6191 3.72852C17.7086 3.7894 17.7965 3.85234 17.8838 3.91602C17.9404 3.95731 17.997 3.99857 18.0527 4.04102C18.1424 4.10932 18.2311 4.17877 18.3184 4.25C18.3624 4.28596 18.4058 4.32268 18.4492 4.35938C18.524 4.42255 18.598 4.48646 18.6709 4.55176C18.7076 4.58468 18.744 4.61792 18.7803 4.65137C18.8524 4.71792 18.9231 4.78587 18.9932 4.85449C19.0351 4.89556 19.0769 4.93672 19.1182 4.97852C19.1764 5.03753 19.2333 5.09776 19.29 5.1582C19.3321 5.20304 19.3747 5.24736 19.416 5.29297C19.5098 5.39663 19.602 5.50183 19.6914 5.60938C19.7323 5.6585 19.7716 5.70888 19.8115 5.75879C19.8629 5.82306 19.914 5.88758 19.9639 5.95312C20.004 6.00593 20.0429 6.05966 20.082 6.11328C20.1335 6.18382 20.1838 6.25522 20.2334 6.32715C20.2672 6.37611 20.301 6.42502 20.334 6.47461C20.3749 6.53619 20.4145 6.5986 20.4541 6.66113C20.4972 6.72919 20.5406 6.79705 20.582 6.86621C20.6474 6.97531 20.7112 7.08552 20.7725 7.19727C20.7928 7.23441 20.8121 7.27214 20.832 7.30957C20.8859 7.41075 20.9379 7.513 20.9883 7.61621C21.0148 7.67049 21.0399 7.72545 21.0654 7.78027C21.102 7.85864 21.1383 7.93715 21.1729 8.0166C21.1971 8.07235 21.2209 8.1283 21.2441 8.18457C21.279 8.2689 21.3121 8.35398 21.3447 8.43945C21.3686 8.50217 21.3933 8.56462 21.416 8.62793C21.4433 8.70411 21.4677 8.78137 21.4932 8.8584C21.82 9.84665 22 10.9022 22 12C22 15.1903 20.5042 18.0293 18.1777 19.8604C18.1577 19.8761 18.1374 19.8916 18.1172 19.9072C17.9014 20.0744 17.6785 20.2324 17.4492 20.3818C17.4017 20.4128 17.3547 20.4444 17.3066 20.4746C17.2365 20.5186 17.166 20.5622 17.0947 20.6045C17.0464 20.6332 16.9971 20.6605 16.9482 20.6885C16.8431 20.7485 16.7364 20.806 16.6289 20.8623C16.5621 20.8973 16.4954 20.9323 16.4277 20.9658C16.3745 20.9922 16.3213 21.0185 16.2676 21.0439C16.158 21.0958 16.0473 21.1454 15.9355 21.1934C15.8905 21.2127 15.8452 21.2313 15.7998 21.25C15.709 21.2874 15.6176 21.3236 15.5254 21.3584C15.4699 21.3793 15.4143 21.4 15.3584 21.4199C15.2637 21.4537 15.1682 21.4856 15.0723 21.5166C15 21.5399 14.9274 21.5623 14.8545 21.584C14.768 21.6097 14.6812 21.6348 14.5938 21.6582C14.5334 21.6744 14.4729 21.69 14.4121 21.7051C14.2854 21.7365 14.1579 21.7664 14.0293 21.793C14.0098 21.797 13.9902 21.8008 13.9707 21.8047C13.8398 21.8309 13.7079 21.854 13.5752 21.875C13.5398 21.8806 13.5043 21.8854 13.4688 21.8906C13.3274 21.9115 13.1852 21.9305 13.042 21.9453C13.0215 21.9474 13.001 21.9492 12.9805 21.9512C12.849 21.964 12.7169 21.9738 12.584 21.9814C12.5382 21.9841 12.4923 21.9863 12.4463 21.9883C12.2983 21.9948 12.1496 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM10 12.5996C8.67452 12.5996 7.59961 13.6745 7.59961 15C7.59961 16.3255 8.67452 17.4004 10 17.4004C11.3255 17.4004 12.4004 16.3255 12.4004 15C12.4004 13.6745 11.3255 12.5996 10 12.5996ZM19.5254 9.28125C18.0462 9.86831 17 11.3117 17 13C17 14.3717 17.6908 15.5815 18.7432 16.3018C19.5375 15.0593 20 13.5841 20 12C20 11.0454 19.8321 10.1301 19.5254 9.28125ZM7.59961 8.5C6.99241 8.50021 6.50021 8.99241 6.5 9.59961C6.5 10.207 6.99228 10.7 7.59961 10.7002C8.20712 10.7002 8.7002 10.2071 8.7002 9.59961C8.69998 8.99228 8.20699 8.5 7.59961 8.5ZM12.5 6C11.6716 6 11 6.67157 11 7.5C11 8.32843 11.6716 9 12.5 9C13.3284 9 14 8.32843 14 7.5C14 6.67157 13.3284 6 12.5 6Z",fill:"currentColor"})),g=u;0&&(module.exports={IconFullMoon});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFullMoon/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 IconFullMoon: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C12.1545 2 12.3082 2.00381 12.4609 2.01074C12.52 2.01342 12.5789 2.01778 12.6377 2.02148C12.7433 2.02813 12.8484 2.036 12.9531 2.0459C13.0004 2.05037 13.0476 2.05542 13.0947 2.06055C13.2129 2.07342 13.3304 2.08852 13.4473 2.10547C13.4854 2.111 13.5235 2.11611 13.5615 2.12207C13.688 2.14191 13.8136 2.16491 13.9385 2.18945C13.97 2.19565 14.0018 2.20054 14.0332 2.20703C14.1805 2.23747 14.3268 2.27078 14.4717 2.30762C14.5225 2.32053 14.5726 2.33592 14.623 2.34961C14.7123 2.37382 14.8014 2.3982 14.8896 2.4248C14.9561 2.44482 15.0221 2.46595 15.0879 2.4873C15.1681 2.51333 15.2478 2.54038 15.3271 2.56836C15.3905 2.59072 15.4538 2.61312 15.5166 2.63672C15.6082 2.67115 15.6987 2.70809 15.7891 2.74512C15.8317 2.76257 15.8747 2.77885 15.917 2.79688C16.1902 2.91331 16.4567 3.04223 16.7168 3.18164C16.7699 3.21009 16.8225 3.23919 16.875 3.26855C16.9472 3.30897 17.0187 3.35044 17.0898 3.39258C17.1474 3.4267 17.2049 3.46086 17.2617 3.49609C17.3473 3.54915 17.4318 3.60364 17.5156 3.65918C17.5503 3.68213 17.5848 3.70515 17.6191 3.72852C17.7086 3.7894 17.7965 3.85234 17.8838 3.91602C17.9404 3.95731 17.997 3.99857 18.0527 4.04102C18.1424 4.10932 18.2311 4.17877 18.3184 4.25C18.3624 4.28596 18.4058 4.32268 18.4492 4.35938C18.524 4.42255 18.598 4.48646 18.6709 4.55176C18.7076 4.58468 18.744 4.61792 18.7803 4.65137C18.8524 4.71792 18.9231 4.78587 18.9932 4.85449C19.0351 4.89556 19.0769 4.93672 19.1182 4.97852C19.1764 5.03753 19.2333 5.09776 19.29 5.1582C19.3321 5.20304 19.3747 5.24736 19.416 5.29297C19.5098 5.39663 19.602 5.50183 19.6914 5.60938C19.7323 5.6585 19.7716 5.70888 19.8115 5.75879C19.8629 5.82306 19.914 5.88758 19.9639 5.95312C20.004 6.00593 20.0429 6.05966 20.082 6.11328C20.1335 6.18382 20.1838 6.25522 20.2334 6.32715C20.2672 6.37611 20.301 6.42502 20.334 6.47461C20.3749 6.53619 20.4145 6.5986 20.4541 6.66113C20.4972 6.72919 20.5406 6.79705 20.582 6.86621C20.6474 6.97531 20.7112 7.08552 20.7725 7.19727C20.7928 7.23441 20.8121 7.27214 20.832 7.30957C20.8859 7.41075 20.9379 7.513 20.9883 7.61621C21.0148 7.67049 21.0399 7.72545 21.0654 7.78027C21.102 7.85864 21.1383 7.93715 21.1729 8.0166C21.1971 8.07235 21.2209 8.1283 21.2441 8.18457C21.279 8.2689 21.3121 8.35398 21.3447 8.43945C21.3686 8.50217 21.3933 8.56462 21.416 8.62793C21.4433 8.70411 21.4677 8.78137 21.4932 8.8584C21.82 9.84665 22 10.9022 22 12C22 15.1903 20.5042 18.0293 18.1777 19.8604C18.1577 19.8761 18.1374 19.8916 18.1172 19.9072C17.9014 20.0744 17.6785 20.2324 17.4492 20.3818C17.4017 20.4128 17.3547 20.4444 17.3066 20.4746C17.2365 20.5186 17.166 20.5622 17.0947 20.6045C17.0464 20.6332 16.9971 20.6605 16.9482 20.6885C16.8431 20.7485 16.7364 20.806 16.6289 20.8623C16.5621 20.8973 16.4954 20.9323 16.4277 20.9658C16.3745 20.9922 16.3213 21.0185 16.2676 21.0439C16.158 21.0958 16.0473 21.1454 15.9355 21.1934C15.8905 21.2127 15.8452 21.2313 15.7998 21.25C15.709 21.2874 15.6176 21.3236 15.5254 21.3584C15.4699 21.3793 15.4143 21.4 15.3584 21.4199C15.2637 21.4537 15.1682 21.4856 15.0723 21.5166C15 21.5399 14.9274 21.5623 14.8545 21.584C14.768 21.6097 14.6812 21.6348 14.5938 21.6582C14.5334 21.6744 14.4729 21.69 14.4121 21.7051C14.2854 21.7365 14.1579 21.7664 14.0293 21.793C14.0098 21.797 13.9902 21.8008 13.9707 21.8047C13.8398 21.8309 13.7079 21.854 13.5752 21.875C13.5398 21.8806 13.5043 21.8854 13.4688 21.8906C13.3274 21.9115 13.1852 21.9305 13.042 21.9453C13.0215 21.9474 13.001 21.9492 12.9805 21.9512C12.849 21.964 12.7169 21.9738 12.584 21.9814C12.5382 21.9841 12.4923 21.9863 12.4463 21.9883C12.2983 21.9948 12.1496 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM10 12.5996C8.67452 12.5996 7.59961 13.6745 7.59961 15C7.59961 16.3255 8.67452 17.4004 10 17.4004C11.3255 17.4004 12.4004 16.3255 12.4004 15C12.4004 13.6745 11.3255 12.5996 10 12.5996ZM19.5254 9.28125C18.0462 9.86831 17 11.3117 17 13C17 14.3717 17.6908 15.5815 18.7432 16.3018C19.5375 15.0593 20 13.5841 20 12C20 11.0454 19.8321 10.1301 19.5254 9.28125ZM7.59961 8.5C6.99241 8.50021 6.50021 8.99241 6.5 9.59961C6.5 10.207 6.99228 10.7 7.59961 10.7002C8.20712 10.7002 8.7002 10.2071 8.7002 9.59961C8.69998 8.99228 8.20699 8.5 7.59961 8.5ZM12.5 6C11.6716 6 11 6.67157 11 7.5C11 8.32843 11.6716 9 12.5 9C13.3284 9 14 8.32843 14 7.5C14 6.67157 13.3284 6 12.5 6Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFullMoon;\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,kBAAAE,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,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,spIACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconFullMoon_exports","__export","IconFullMoon","IconFullMoon_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFullMoon","props","React","CentralIconBase","IconFullMoon_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import e from"react";import t from"react";import{Svg as p}from"react-native-svg";var r=({children:o,size:C=24,...n})=>t.createElement(p,{...n,width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},o);import{Path as l}from"react-native-svg";var a=o=>e.createElement(r,{...o},e.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C12.1545 2 12.3082 2.00381 12.4609 2.01074C12.52 2.01342 12.5789 2.01778 12.6377 2.02148C12.7433 2.02813 12.8484 2.036 12.9531 2.0459C13.0004 2.05037 13.0476 2.05542 13.0947 2.06055C13.2129 2.07342 13.3304 2.08852 13.4473 2.10547C13.4854 2.111 13.5235 2.11611 13.5615 2.12207C13.688 2.14191 13.8136 2.16491 13.9385 2.18945C13.97 2.19565 14.0018 2.20054 14.0332 2.20703C14.1805 2.23747 14.3268 2.27078 14.4717 2.30762C14.5225 2.32053 14.5726 2.33592 14.623 2.34961C14.7123 2.37382 14.8014 2.3982 14.8896 2.4248C14.9561 2.44482 15.0221 2.46595 15.0879 2.4873C15.1681 2.51333 15.2478 2.54038 15.3271 2.56836C15.3905 2.59072 15.4538 2.61312 15.5166 2.63672C15.6082 2.67115 15.6987 2.70809 15.7891 2.74512C15.8317 2.76257 15.8747 2.77885 15.917 2.79688C16.1902 2.91331 16.4567 3.04223 16.7168 3.18164C16.7699 3.21009 16.8225 3.23919 16.875 3.26855C16.9472 3.30897 17.0187 3.35044 17.0898 3.39258C17.1474 3.4267 17.2049 3.46086 17.2617 3.49609C17.3473 3.54915 17.4318 3.60364 17.5156 3.65918C17.5503 3.68213 17.5848 3.70515 17.6191 3.72852C17.7086 3.7894 17.7965 3.85234 17.8838 3.91602C17.9404 3.95731 17.997 3.99857 18.0527 4.04102C18.1424 4.10932 18.2311 4.17877 18.3184 4.25C18.3624 4.28596 18.4058 4.32268 18.4492 4.35938C18.524 4.42255 18.598 4.48646 18.6709 4.55176C18.7076 4.58468 18.744 4.61792 18.7803 4.65137C18.8524 4.71792 18.9231 4.78587 18.9932 4.85449C19.0351 4.89556 19.0769 4.93672 19.1182 4.97852C19.1764 5.03753 19.2333 5.09776 19.29 5.1582C19.3321 5.20304 19.3747 5.24736 19.416 5.29297C19.5098 5.39663 19.602 5.50183 19.6914 5.60938C19.7323 5.6585 19.7716 5.70888 19.8115 5.75879C19.8629 5.82306 19.914 5.88758 19.9639 5.95312C20.004 6.00593 20.0429 6.05966 20.082 6.11328C20.1335 6.18382 20.1838 6.25522 20.2334 6.32715C20.2672 6.37611 20.301 6.42502 20.334 6.47461C20.3749 6.53619 20.4145 6.5986 20.4541 6.66113C20.4972 6.72919 20.5406 6.79705 20.582 6.86621C20.6474 6.97531 20.7112 7.08552 20.7725 7.19727C20.7928 7.23441 20.8121 7.27214 20.832 7.30957C20.8859 7.41075 20.9379 7.513 20.9883 7.61621C21.0148 7.67049 21.0399 7.72545 21.0654 7.78027C21.102 7.85864 21.1383 7.93715 21.1729 8.0166C21.1971 8.07235 21.2209 8.1283 21.2441 8.18457C21.279 8.2689 21.3121 8.35398 21.3447 8.43945C21.3686 8.50217 21.3933 8.56462 21.416 8.62793C21.4433 8.70411 21.4677 8.78137 21.4932 8.8584C21.82 9.84665 22 10.9022 22 12C22 15.1903 20.5042 18.0293 18.1777 19.8604C18.1577 19.8761 18.1374 19.8916 18.1172 19.9072C17.9014 20.0744 17.6785 20.2324 17.4492 20.3818C17.4017 20.4128 17.3547 20.4444 17.3066 20.4746C17.2365 20.5186 17.166 20.5622 17.0947 20.6045C17.0464 20.6332 16.9971 20.6605 16.9482 20.6885C16.8431 20.7485 16.7364 20.806 16.6289 20.8623C16.5621 20.8973 16.4954 20.9323 16.4277 20.9658C16.3745 20.9922 16.3213 21.0185 16.2676 21.0439C16.158 21.0958 16.0473 21.1454 15.9355 21.1934C15.8905 21.2127 15.8452 21.2313 15.7998 21.25C15.709 21.2874 15.6176 21.3236 15.5254 21.3584C15.4699 21.3793 15.4143 21.4 15.3584 21.4199C15.2637 21.4537 15.1682 21.4856 15.0723 21.5166C15 21.5399 14.9274 21.5623 14.8545 21.584C14.768 21.6097 14.6812 21.6348 14.5938 21.6582C14.5334 21.6744 14.4729 21.69 14.4121 21.7051C14.2854 21.7365 14.1579 21.7664 14.0293 21.793C14.0098 21.797 13.9902 21.8008 13.9707 21.8047C13.8398 21.8309 13.7079 21.854 13.5752 21.875C13.5398 21.8806 13.5043 21.8854 13.4688 21.8906C13.3274 21.9115 13.1852 21.9305 13.042 21.9453C13.0215 21.9474 13.001 21.9492 12.9805 21.9512C12.849 21.964 12.7169 21.9738 12.584 21.9814C12.5382 21.9841 12.4923 21.9863 12.4463 21.9883C12.2983 21.9948 12.1496 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM10 12.5996C8.67452 12.5996 7.59961 13.6745 7.59961 15C7.59961 16.3255 8.67452 17.4004 10 17.4004C11.3255 17.4004 12.4004 16.3255 12.4004 15C12.4004 13.6745 11.3255 12.5996 10 12.5996ZM19.5254 9.28125C18.0462 9.86831 17 11.3117 17 13C17 14.3717 17.6908 15.5815 18.7432 16.3018C19.5375 15.0593 20 13.5841 20 12C20 11.0454 19.8321 10.1301 19.5254 9.28125ZM7.59961 8.5C6.99241 8.50021 6.50021 8.99241 6.5 9.59961C6.5 10.207 6.99228 10.7 7.59961 10.7002C8.20712 10.7002 8.7002 10.2071 8.7002 9.59961C8.69998 8.99228 8.20699 8.5 7.59961 8.5ZM12.5 6C11.6716 6 11 6.67157 11 7.5C11 8.32843 11.6716 9 12.5 9C13.3284 9 14 8.32843 14 7.5C14 6.67157 13.3284 6 12.5 6Z",fill:"currentColor"})),v=a;export{a as
|
|
1
|
+
import e from"react";import t from"react";import{Svg as p}from"react-native-svg";var r=({children:o,size:C=24,...n})=>t.createElement(p,{...n,width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},o);import{Path as l}from"react-native-svg";var a=o=>e.createElement(r,{...o},e.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C12.1545 2 12.3082 2.00381 12.4609 2.01074C12.52 2.01342 12.5789 2.01778 12.6377 2.02148C12.7433 2.02813 12.8484 2.036 12.9531 2.0459C13.0004 2.05037 13.0476 2.05542 13.0947 2.06055C13.2129 2.07342 13.3304 2.08852 13.4473 2.10547C13.4854 2.111 13.5235 2.11611 13.5615 2.12207C13.688 2.14191 13.8136 2.16491 13.9385 2.18945C13.97 2.19565 14.0018 2.20054 14.0332 2.20703C14.1805 2.23747 14.3268 2.27078 14.4717 2.30762C14.5225 2.32053 14.5726 2.33592 14.623 2.34961C14.7123 2.37382 14.8014 2.3982 14.8896 2.4248C14.9561 2.44482 15.0221 2.46595 15.0879 2.4873C15.1681 2.51333 15.2478 2.54038 15.3271 2.56836C15.3905 2.59072 15.4538 2.61312 15.5166 2.63672C15.6082 2.67115 15.6987 2.70809 15.7891 2.74512C15.8317 2.76257 15.8747 2.77885 15.917 2.79688C16.1902 2.91331 16.4567 3.04223 16.7168 3.18164C16.7699 3.21009 16.8225 3.23919 16.875 3.26855C16.9472 3.30897 17.0187 3.35044 17.0898 3.39258C17.1474 3.4267 17.2049 3.46086 17.2617 3.49609C17.3473 3.54915 17.4318 3.60364 17.5156 3.65918C17.5503 3.68213 17.5848 3.70515 17.6191 3.72852C17.7086 3.7894 17.7965 3.85234 17.8838 3.91602C17.9404 3.95731 17.997 3.99857 18.0527 4.04102C18.1424 4.10932 18.2311 4.17877 18.3184 4.25C18.3624 4.28596 18.4058 4.32268 18.4492 4.35938C18.524 4.42255 18.598 4.48646 18.6709 4.55176C18.7076 4.58468 18.744 4.61792 18.7803 4.65137C18.8524 4.71792 18.9231 4.78587 18.9932 4.85449C19.0351 4.89556 19.0769 4.93672 19.1182 4.97852C19.1764 5.03753 19.2333 5.09776 19.29 5.1582C19.3321 5.20304 19.3747 5.24736 19.416 5.29297C19.5098 5.39663 19.602 5.50183 19.6914 5.60938C19.7323 5.6585 19.7716 5.70888 19.8115 5.75879C19.8629 5.82306 19.914 5.88758 19.9639 5.95312C20.004 6.00593 20.0429 6.05966 20.082 6.11328C20.1335 6.18382 20.1838 6.25522 20.2334 6.32715C20.2672 6.37611 20.301 6.42502 20.334 6.47461C20.3749 6.53619 20.4145 6.5986 20.4541 6.66113C20.4972 6.72919 20.5406 6.79705 20.582 6.86621C20.6474 6.97531 20.7112 7.08552 20.7725 7.19727C20.7928 7.23441 20.8121 7.27214 20.832 7.30957C20.8859 7.41075 20.9379 7.513 20.9883 7.61621C21.0148 7.67049 21.0399 7.72545 21.0654 7.78027C21.102 7.85864 21.1383 7.93715 21.1729 8.0166C21.1971 8.07235 21.2209 8.1283 21.2441 8.18457C21.279 8.2689 21.3121 8.35398 21.3447 8.43945C21.3686 8.50217 21.3933 8.56462 21.416 8.62793C21.4433 8.70411 21.4677 8.78137 21.4932 8.8584C21.82 9.84665 22 10.9022 22 12C22 15.1903 20.5042 18.0293 18.1777 19.8604C18.1577 19.8761 18.1374 19.8916 18.1172 19.9072C17.9014 20.0744 17.6785 20.2324 17.4492 20.3818C17.4017 20.4128 17.3547 20.4444 17.3066 20.4746C17.2365 20.5186 17.166 20.5622 17.0947 20.6045C17.0464 20.6332 16.9971 20.6605 16.9482 20.6885C16.8431 20.7485 16.7364 20.806 16.6289 20.8623C16.5621 20.8973 16.4954 20.9323 16.4277 20.9658C16.3745 20.9922 16.3213 21.0185 16.2676 21.0439C16.158 21.0958 16.0473 21.1454 15.9355 21.1934C15.8905 21.2127 15.8452 21.2313 15.7998 21.25C15.709 21.2874 15.6176 21.3236 15.5254 21.3584C15.4699 21.3793 15.4143 21.4 15.3584 21.4199C15.2637 21.4537 15.1682 21.4856 15.0723 21.5166C15 21.5399 14.9274 21.5623 14.8545 21.584C14.768 21.6097 14.6812 21.6348 14.5938 21.6582C14.5334 21.6744 14.4729 21.69 14.4121 21.7051C14.2854 21.7365 14.1579 21.7664 14.0293 21.793C14.0098 21.797 13.9902 21.8008 13.9707 21.8047C13.8398 21.8309 13.7079 21.854 13.5752 21.875C13.5398 21.8806 13.5043 21.8854 13.4688 21.8906C13.3274 21.9115 13.1852 21.9305 13.042 21.9453C13.0215 21.9474 13.001 21.9492 12.9805 21.9512C12.849 21.964 12.7169 21.9738 12.584 21.9814C12.5382 21.9841 12.4923 21.9863 12.4463 21.9883C12.2983 21.9948 12.1496 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM10 12.5996C8.67452 12.5996 7.59961 13.6745 7.59961 15C7.59961 16.3255 8.67452 17.4004 10 17.4004C11.3255 17.4004 12.4004 16.3255 12.4004 15C12.4004 13.6745 11.3255 12.5996 10 12.5996ZM19.5254 9.28125C18.0462 9.86831 17 11.3117 17 13C17 14.3717 17.6908 15.5815 18.7432 16.3018C19.5375 15.0593 20 13.5841 20 12C20 11.0454 19.8321 10.1301 19.5254 9.28125ZM7.59961 8.5C6.99241 8.50021 6.50021 8.99241 6.5 9.59961C6.5 10.207 6.99228 10.7 7.59961 10.7002C8.20712 10.7002 8.7002 10.2071 8.7002 9.59961C8.69998 8.99228 8.20699 8.5 7.59961 8.5ZM12.5 6C11.6716 6 11 6.67157 11 7.5C11 8.32843 11.6716 9 12.5 9C13.3284 9 14 8.32843 14 7.5C14 6.67157 13.3284 6 12.5 6Z",fill:"currentColor"})),v=a;export{a as IconFullMoon,v as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFullMoon/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 IconFullMoon: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C12.1545 2 12.3082 2.00381 12.4609 2.01074C12.52 2.01342 12.5789 2.01778 12.6377 2.02148C12.7433 2.02813 12.8484 2.036 12.9531 2.0459C13.0004 2.05037 13.0476 2.05542 13.0947 2.06055C13.2129 2.07342 13.3304 2.08852 13.4473 2.10547C13.4854 2.111 13.5235 2.11611 13.5615 2.12207C13.688 2.14191 13.8136 2.16491 13.9385 2.18945C13.97 2.19565 14.0018 2.20054 14.0332 2.20703C14.1805 2.23747 14.3268 2.27078 14.4717 2.30762C14.5225 2.32053 14.5726 2.33592 14.623 2.34961C14.7123 2.37382 14.8014 2.3982 14.8896 2.4248C14.9561 2.44482 15.0221 2.46595 15.0879 2.4873C15.1681 2.51333 15.2478 2.54038 15.3271 2.56836C15.3905 2.59072 15.4538 2.61312 15.5166 2.63672C15.6082 2.67115 15.6987 2.70809 15.7891 2.74512C15.8317 2.76257 15.8747 2.77885 15.917 2.79688C16.1902 2.91331 16.4567 3.04223 16.7168 3.18164C16.7699 3.21009 16.8225 3.23919 16.875 3.26855C16.9472 3.30897 17.0187 3.35044 17.0898 3.39258C17.1474 3.4267 17.2049 3.46086 17.2617 3.49609C17.3473 3.54915 17.4318 3.60364 17.5156 3.65918C17.5503 3.68213 17.5848 3.70515 17.6191 3.72852C17.7086 3.7894 17.7965 3.85234 17.8838 3.91602C17.9404 3.95731 17.997 3.99857 18.0527 4.04102C18.1424 4.10932 18.2311 4.17877 18.3184 4.25C18.3624 4.28596 18.4058 4.32268 18.4492 4.35938C18.524 4.42255 18.598 4.48646 18.6709 4.55176C18.7076 4.58468 18.744 4.61792 18.7803 4.65137C18.8524 4.71792 18.9231 4.78587 18.9932 4.85449C19.0351 4.89556 19.0769 4.93672 19.1182 4.97852C19.1764 5.03753 19.2333 5.09776 19.29 5.1582C19.3321 5.20304 19.3747 5.24736 19.416 5.29297C19.5098 5.39663 19.602 5.50183 19.6914 5.60938C19.7323 5.6585 19.7716 5.70888 19.8115 5.75879C19.8629 5.82306 19.914 5.88758 19.9639 5.95312C20.004 6.00593 20.0429 6.05966 20.082 6.11328C20.1335 6.18382 20.1838 6.25522 20.2334 6.32715C20.2672 6.37611 20.301 6.42502 20.334 6.47461C20.3749 6.53619 20.4145 6.5986 20.4541 6.66113C20.4972 6.72919 20.5406 6.79705 20.582 6.86621C20.6474 6.97531 20.7112 7.08552 20.7725 7.19727C20.7928 7.23441 20.8121 7.27214 20.832 7.30957C20.8859 7.41075 20.9379 7.513 20.9883 7.61621C21.0148 7.67049 21.0399 7.72545 21.0654 7.78027C21.102 7.85864 21.1383 7.93715 21.1729 8.0166C21.1971 8.07235 21.2209 8.1283 21.2441 8.18457C21.279 8.2689 21.3121 8.35398 21.3447 8.43945C21.3686 8.50217 21.3933 8.56462 21.416 8.62793C21.4433 8.70411 21.4677 8.78137 21.4932 8.8584C21.82 9.84665 22 10.9022 22 12C22 15.1903 20.5042 18.0293 18.1777 19.8604C18.1577 19.8761 18.1374 19.8916 18.1172 19.9072C17.9014 20.0744 17.6785 20.2324 17.4492 20.3818C17.4017 20.4128 17.3547 20.4444 17.3066 20.4746C17.2365 20.5186 17.166 20.5622 17.0947 20.6045C17.0464 20.6332 16.9971 20.6605 16.9482 20.6885C16.8431 20.7485 16.7364 20.806 16.6289 20.8623C16.5621 20.8973 16.4954 20.9323 16.4277 20.9658C16.3745 20.9922 16.3213 21.0185 16.2676 21.0439C16.158 21.0958 16.0473 21.1454 15.9355 21.1934C15.8905 21.2127 15.8452 21.2313 15.7998 21.25C15.709 21.2874 15.6176 21.3236 15.5254 21.3584C15.4699 21.3793 15.4143 21.4 15.3584 21.4199C15.2637 21.4537 15.1682 21.4856 15.0723 21.5166C15 21.5399 14.9274 21.5623 14.8545 21.584C14.768 21.6097 14.6812 21.6348 14.5938 21.6582C14.5334 21.6744 14.4729 21.69 14.4121 21.7051C14.2854 21.7365 14.1579 21.7664 14.0293 21.793C14.0098 21.797 13.9902 21.8008 13.9707 21.8047C13.8398 21.8309 13.7079 21.854 13.5752 21.875C13.5398 21.8806 13.5043 21.8854 13.4688 21.8906C13.3274 21.9115 13.1852 21.9305 13.042 21.9453C13.0215 21.9474 13.001 21.9492 12.9805 21.9512C12.849 21.964 12.7169 21.9738 12.584 21.9814C12.5382 21.9841 12.4923 21.9863 12.4463 21.9883C12.2983 21.9948 12.1496 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM10 12.5996C8.67452 12.5996 7.59961 13.6745 7.59961 15C7.59961 16.3255 8.67452 17.4004 10 17.4004C11.3255 17.4004 12.4004 16.3255 12.4004 15C12.4004 13.6745 11.3255 12.5996 10 12.5996ZM19.5254 9.28125C18.0462 9.86831 17 11.3117 17 13C17 14.3717 17.6908 15.5815 18.7432 16.3018C19.5375 15.0593 20 13.5841 20 12C20 11.0454 19.8321 10.1301 19.5254 9.28125ZM7.59961 8.5C6.99241 8.50021 6.50021 8.99241 6.5 9.59961C6.5 10.207 6.99228 10.7 7.59961 10.7002C8.20712 10.7002 8.7002 10.2071 8.7002 9.59961C8.69998 8.99228 8.20699 8.5 7.59961 8.5ZM12.5 6C11.6716 6 11 6.67157 11 7.5C11 8.32843 11.6716 9 12.5 9C13.3284 9 14 8.32843 14 7.5C14 6.67157 13.3284 6 12.5 6Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFullMoon;\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,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,spIACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFullMoon","props","React","CentralIconBase","IconFullMoon_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var H=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var V=(r,C)=>{for(var o in C)n(r,o,{get:C[o],enumerable:!0})},m=(r,C,o,l)=>{if(C&&typeof C=="object"||typeof C=="function")for(let e of B(C))!I.call(r,e)&&e!==o&&n(r,e,{get:()=>C[e],enumerable:!(l=x(C,e))||l.enumerable});return r};var a=(r,C,o)=>(o=r!=null?u(H(r)):{},m(C||!r||!r.__esModule?n(o,"default",{value:r,enumerable:!0}):o,r)),P=r=>m(n({},"__esModule",{value:!0}),r);var d={};V(d,{IconRemixCircle:()=>i,default:()=>g});module.exports=P(d);var t=a(require("react"));var f=a(require("react")),s=require("react-native-svg"),c=({children:r,size:C=24,...o})=>f.default.createElement(s.Svg,{...o,width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),i=r=>t.default.createElement(c,{...r},t.default.createElement(p.Path,{d:"M19.2913 13.7656C19.4208 13.2289 19.9606 12.8991 20.4974 13.0283C21.0341 13.1579 21.365 13.6976 21.2356 14.2344C20.2305 18.4023 16.4782 21.4998 12.0003 21.5C9.2289 21.5 6.73612 20.3119 5.00029 18.4209V19.5C5.00029 20.0522 4.55248 20.4999 4.00029 20.5C3.448 20.5 3.00029 20.0523 3.00029 19.5V16C3.00029 15.4477 3.448 15 4.00029 15H7.50029C8.05248 15.0001 8.50029 15.4478 8.50029 16C8.50029 16.5522 8.05248 16.9999 7.50029 17H6.41045C7.78459 18.5352 9.78009 19.5 12.0003 19.5C15.533 19.4998 18.4977 17.0561 19.2913 13.7656Z",fill:"currentColor"}),t.default.createElement(p.Path,{d:"M12.0003 8.5C12.5525 8.50011 13.0003 8.94778 13.0003 9.5V11H14.5003C15.0525 11.0001 15.5003 11.4478 15.5003 12C15.5003 12.5522 15.0525 12.9999 14.5003 13H13.0003V14.5C13.0003 15.0522 12.5525 15.4999 12.0003 15.5C11.448 15.5 11.0003 15.0523 11.0003 14.5V13H9.50029C8.948 13 8.50029 12.5523 8.50029 12C8.50029 11.4477 8.948 11 9.50029 11H11.0003V9.5C11.0003 8.94772 11.448 8.5 12.0003 8.5Z",fill:"currentColor"}),t.default.createElement(p.Path,{d:"M12.0003 2.5C14.7715 2.50014 17.2648 3.68725 19.0003 5.57812V4.5C19.0003 3.94772 19.448 3.5 20.0003 3.5C20.5525 3.50011 21.0003 3.94778 21.0003 4.5V8C21.0003 8.55222 20.5525 8.99989 20.0003 9H16.5003C15.948 9 15.5003 8.55228 15.5003 8C15.5003 7.44772 15.948 7 16.5003 7H17.5862C16.2122 5.46572 14.2196 4.50014 12.0003 4.5C8.46732 4.5 5.50191 6.94376 4.7083 10.2344C4.57882 10.7712 4.03906 11.101 3.50224 10.9717C2.96537 10.8422 2.63546 10.3025 2.76494 9.76562C3.77018 5.59757 7.52222 2.5 12.0003 2.5Z",fill:"currentColor"})),g=i;0&&(module.exports={IconRemixCircle});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRemixCircle/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 IconRemixCircle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19.2913 13.7656C19.4208 13.2289 19.9606 12.8991 20.4974 13.0283C21.0341 13.1579 21.365 13.6976 21.2356 14.2344C20.2305 18.4023 16.4782 21.4998 12.0003 21.5C9.2289 21.5 6.73612 20.3119 5.00029 18.4209V19.5C5.00029 20.0522 4.55248 20.4999 4.00029 20.5C3.448 20.5 3.00029 20.0523 3.00029 19.5V16C3.00029 15.4477 3.448 15 4.00029 15H7.50029C8.05248 15.0001 8.50029 15.4478 8.50029 16C8.50029 16.5522 8.05248 16.9999 7.50029 17H6.41045C7.78459 18.5352 9.78009 19.5 12.0003 19.5C15.533 19.4998 18.4977 17.0561 19.2913 13.7656Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12.0003 8.5C12.5525 8.50011 13.0003 8.94778 13.0003 9.5V11H14.5003C15.0525 11.0001 15.5003 11.4478 15.5003 12C15.5003 12.5522 15.0525 12.9999 14.5003 13H13.0003V14.5C13.0003 15.0522 12.5525 15.4999 12.0003 15.5C11.448 15.5 11.0003 15.0523 11.0003 14.5V13H9.50029C8.948 13 8.50029 12.5523 8.50029 12C8.50029 11.4477 8.948 11 9.50029 11H11.0003V9.5C11.0003 8.94772 11.448 8.5 12.0003 8.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12.0003 2.5C14.7715 2.50014 17.2648 3.68725 19.0003 5.57812V4.5C19.0003 3.94772 19.448 3.5 20.0003 3.5C20.5525 3.50011 21.0003 3.94778 21.0003 4.5V8C21.0003 8.55222 20.5525 8.99989 20.0003 9H16.5003C15.948 9 15.5003 8.55228 15.5003 8C15.5003 7.44772 15.948 7 16.5003 7H17.5862C16.2122 5.46572 14.2196 4.50014 12.0003 4.5C8.46732 4.5 5.50191 6.94376 4.7083 10.2344C4.57882 10.7712 4.03906 11.101 3.50224 10.9717C2.96537 10.8422 2.63546 10.3025 2.76494 9.76562C3.77018 5.59757 7.52222 2.5 12.0003 2.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRemixCircle;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,qBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,4gBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sYACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,ufACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconRemixCircle_exports","__export","IconRemixCircle","IconRemixCircle_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconRemixCircle","props","React","CentralIconBase","IconRemixCircle_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import C from"react";import p from"react";import{Svg as l}from"react-native-svg";var t=({children:o,size:r=24,...n})=>p.createElement(l,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as e}from"react-native-svg";var m=o=>C.createElement(t,{...o},C.createElement(e,{d:"M19.2913 13.7656C19.4208 13.2289 19.9606 12.8991 20.4974 13.0283C21.0341 13.1579 21.365 13.6976 21.2356 14.2344C20.2305 18.4023 16.4782 21.4998 12.0003 21.5C9.2289 21.5 6.73612 20.3119 5.00029 18.4209V19.5C5.00029 20.0522 4.55248 20.4999 4.00029 20.5C3.448 20.5 3.00029 20.0523 3.00029 19.5V16C3.00029 15.4477 3.448 15 4.00029 15H7.50029C8.05248 15.0001 8.50029 15.4478 8.50029 16C8.50029 16.5522 8.05248 16.9999 7.50029 17H6.41045C7.78459 18.5352 9.78009 19.5 12.0003 19.5C15.533 19.4998 18.4977 17.0561 19.2913 13.7656Z",fill:"currentColor"}),C.createElement(e,{d:"M12.0003 8.5C12.5525 8.50011 13.0003 8.94778 13.0003 9.5V11H14.5003C15.0525 11.0001 15.5003 11.4478 15.5003 12C15.5003 12.5522 15.0525 12.9999 14.5003 13H13.0003V14.5C13.0003 15.0522 12.5525 15.4999 12.0003 15.5C11.448 15.5 11.0003 15.0523 11.0003 14.5V13H9.50029C8.948 13 8.50029 12.5523 8.50029 12C8.50029 11.4477 8.948 11 9.50029 11H11.0003V9.5C11.0003 8.94772 11.448 8.5 12.0003 8.5Z",fill:"currentColor"}),C.createElement(e,{d:"M12.0003 2.5C14.7715 2.50014 17.2648 3.68725 19.0003 5.57812V4.5C19.0003 3.94772 19.448 3.5 20.0003 3.5C20.5525 3.50011 21.0003 3.94778 21.0003 4.5V8C21.0003 8.55222 20.5525 8.99989 20.0003 9H16.5003C15.948 9 15.5003 8.55228 15.5003 8C15.5003 7.44772 15.948 7 16.5003 7H17.5862C16.2122 5.46572 14.2196 4.50014 12.0003 4.5C8.46732 4.5 5.50191 6.94376 4.7083 10.2344C4.57882 10.7712 4.03906 11.101 3.50224 10.9717C2.96537 10.8422 2.63546 10.3025 2.76494 9.76562C3.77018 5.59757 7.52222 2.5 12.0003 2.5Z",fill:"currentColor"})),I=m;export{m as IconRemixCircle,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRemixCircle/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 IconRemixCircle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19.2913 13.7656C19.4208 13.2289 19.9606 12.8991 20.4974 13.0283C21.0341 13.1579 21.365 13.6976 21.2356 14.2344C20.2305 18.4023 16.4782 21.4998 12.0003 21.5C9.2289 21.5 6.73612 20.3119 5.00029 18.4209V19.5C5.00029 20.0522 4.55248 20.4999 4.00029 20.5C3.448 20.5 3.00029 20.0523 3.00029 19.5V16C3.00029 15.4477 3.448 15 4.00029 15H7.50029C8.05248 15.0001 8.50029 15.4478 8.50029 16C8.50029 16.5522 8.05248 16.9999 7.50029 17H6.41045C7.78459 18.5352 9.78009 19.5 12.0003 19.5C15.533 19.4998 18.4977 17.0561 19.2913 13.7656Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12.0003 8.5C12.5525 8.50011 13.0003 8.94778 13.0003 9.5V11H14.5003C15.0525 11.0001 15.5003 11.4478 15.5003 12C15.5003 12.5522 15.0525 12.9999 14.5003 13H13.0003V14.5C13.0003 15.0522 12.5525 15.4999 12.0003 15.5C11.448 15.5 11.0003 15.0523 11.0003 14.5V13H9.50029C8.948 13 8.50029 12.5523 8.50029 12C8.50029 11.4477 8.948 11 9.50029 11H11.0003V9.5C11.0003 8.94772 11.448 8.5 12.0003 8.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12.0003 2.5C14.7715 2.50014 17.2648 3.68725 19.0003 5.57812V4.5C19.0003 3.94772 19.448 3.5 20.0003 3.5C20.5525 3.50011 21.0003 3.94778 21.0003 4.5V8C21.0003 8.55222 20.5525 8.99989 20.0003 9H16.5003C15.948 9 15.5003 8.55228 15.5003 8C15.5003 7.44772 15.948 7 16.5003 7H17.5862C16.2122 5.46572 14.2196 4.50014 12.0003 4.5C8.46732 4.5 5.50191 6.94376 4.7083 10.2344C4.57882 10.7712 4.03906 11.101 3.50224 10.9717C2.96537 10.8422 2.63546 10.3025 2.76494 9.76562C3.77018 5.59757 7.52222 2.5 12.0003 2.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRemixCircle;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,4gBACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sYACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,ufACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconRemixCircle","props","React","CentralIconBase","IconRemixCircle_default"]}
|
package/README.md
CHANGED
|
@@ -354,6 +354,7 @@ Below is a complete list of available icons:
|
|
|
354
354
|
- IconRandom
|
|
355
355
|
- IconRedirectArrow
|
|
356
356
|
- IconRemix
|
|
357
|
+
- IconRemixCircle
|
|
357
358
|
- IconRotate360Left
|
|
358
359
|
- IconRotate360Right
|
|
359
360
|
- IconShareArrowDown
|
|
@@ -599,6 +600,7 @@ Below is a complete list of available icons:
|
|
|
599
600
|
- IconConnectors1
|
|
600
601
|
- IconConnectors2
|
|
601
602
|
- IconDevices
|
|
603
|
+
- IconDevices2
|
|
602
604
|
- IconFullscreen1
|
|
603
605
|
- IconFullscreen2
|
|
604
606
|
- IconGyroscopeSensor
|
|
@@ -2178,9 +2180,9 @@ Below is a complete list of available icons:
|
|
|
2178
2180
|
- IconCloudy
|
|
2179
2181
|
- IconCloudySun
|
|
2180
2182
|
- IconDrop
|
|
2183
|
+
- IconFullMoon
|
|
2181
2184
|
- IconLightning
|
|
2182
2185
|
- IconMoon
|
|
2183
|
-
- IconMoon1
|
|
2184
2186
|
- IconMoonStar
|
|
2185
2187
|
- IconRainy
|
|
2186
2188
|
- IconRainyLight
|
package/filtered-icons.json
CHANGED
|
@@ -8946,6 +8946,20 @@
|
|
|
8946
8946
|
"packageName": "round-filled-radius-0-stroke-2",
|
|
8947
8947
|
"componentName": "IconDevices"
|
|
8948
8948
|
},
|
|
8949
|
+
{
|
|
8950
|
+
"category": "Devices & Signals",
|
|
8951
|
+
"svg": "<path d=\"M22 9C22.5523 9 23 9.44772 23 10V20C23 20.5523 22.5523 21 22 21H17C16.4477 21 16 20.5523 16 20V10C16 9.44772 16.4477 9 17 9H22Z\" fill=\"currentColor\"/><path d=\"M15 20H2C1.44772 20 1 19.5523 1 19V18C1 17.4477 1.44772 17 2 17H15V20Z\" fill=\"currentColor\"/><path d=\"M20 3C20.5523 3 21 3.44772 21 4V8H17C15.8954 8 15 8.89543 15 10V16H3V4C3 3.44772 3.44772 3 4 3H20Z\" fill=\"currentColor\"/>",
|
|
8952
|
+
"iconName": "devices-2, laptop-phone",
|
|
8953
|
+
"variant": {
|
|
8954
|
+
"join": "round",
|
|
8955
|
+
"filled": "on",
|
|
8956
|
+
"radius": "0",
|
|
8957
|
+
"stroke": "2"
|
|
8958
|
+
},
|
|
8959
|
+
"createdAt": "2026-04-15T12:02:06.50898+00:00",
|
|
8960
|
+
"packageName": "round-filled-radius-0-stroke-2",
|
|
8961
|
+
"componentName": "IconDevices2"
|
|
8962
|
+
},
|
|
8949
8963
|
{
|
|
8950
8964
|
"category": "Social Media & Brands",
|
|
8951
8965
|
"svg": "<path d=\"M5.49926 12.5676C5.65997 12.4747 5.85721 12.4747 6.01792 12.5676L8.25724 13.8604C8.26142 13.8625 8.26371 13.8656 8.26664 13.8677C8.30175 13.8895 8.33387 13.9133 8.36146 13.9409C8.36564 13.9451 8.36994 13.9502 8.37413 13.9544C8.39876 13.9811 8.42196 14.0097 8.44034 14.0406C8.44327 14.0461 8.44681 14.0503 8.44974 14.0553C8.46899 14.0896 8.4834 14.126 8.4947 14.164C8.49677 14.1723 8.49875 14.1803 8.50083 14.1886C8.51087 14.2279 8.51718 14.2681 8.51718 14.3104V15.6035C8.51718 16.1036 8.78661 16.5688 9.21852 16.8182C9.6504 17.0675 10.1877 17.0676 10.6196 16.8182L11.739 16.1716C11.775 16.1511 11.8133 16.1363 11.8527 16.125C11.861 16.1221 11.8681 16.1202 11.8764 16.1181C11.9145 16.1089 11.9535 16.1026 11.9928 16.1026H12.0104C12.0468 16.1038 12.0828 16.1089 12.1187 16.1173C12.1246 16.1193 12.1309 16.1193 12.1371 16.1214C12.1756 16.1314 12.2124 16.1467 12.2475 16.1663C12.2508 16.1684 12.2581 16.1708 12.2581 16.1708L14.4974 17.4636L14.4991 17.4644C14.6602 17.5573 14.759 17.7286 14.759 17.914V20.4999C14.759 20.6852 14.6598 20.8565 14.4991 20.9494L12.2597 22.2422C12.1794 22.2874 12.0898 22.3113 11.9998 22.3113C11.9098 22.3113 11.8202 22.2886 11.7399 22.2422L9.50053 20.9494C9.49635 20.9474 9.49406 20.9442 9.49113 20.9421C9.45604 20.9204 9.42431 20.8969 9.39631 20.8689C9.39213 20.8647 9.38783 20.8596 9.38364 20.8554C9.35898 20.8287 9.33583 20.7997 9.31743 20.7688C9.31452 20.7634 9.31134 20.7591 9.30844 20.7541C9.28922 20.7198 9.27436 20.6838 9.26307 20.6458C9.261 20.6375 9.25902 20.6296 9.25694 20.6213C9.2469 20.5819 9.2406 20.5417 9.24059 20.4995V19.2067C9.24059 18.7074 8.97152 18.2423 8.53966 17.9928C8.10691 17.7434 7.56928 17.7434 7.13737 17.9928L6.01792 18.6394C5.98197 18.6599 5.94399 18.6747 5.9047 18.686C5.89633 18.6889 5.88814 18.6909 5.87977 18.693C5.84176 18.7021 5.80378 18.7085 5.76451 18.7085H5.75798C5.75298 18.7085 5.74866 18.7064 5.74449 18.7064C5.70855 18.7052 5.67251 18.7001 5.63741 18.6917C5.63158 18.6905 5.62525 18.6897 5.61901 18.6876C5.58095 18.6776 5.54502 18.6619 5.50989 18.6423C5.50653 18.641 5.49926 18.6382 5.49926 18.6382L3.25994 17.3454C3.09881 17.2525 3 17.0813 3 16.8959V14.31C3 14.1245 3.09923 13.9533 3.25994 13.8604L5.49926 12.5676Z\" fill=\"currentColor\"/><path d=\"M17.9813 5.36002C18.142 5.26711 18.3392 5.26711 18.4999 5.36002L20.738 6.65318C20.8987 6.74609 20.998 6.91735 20.998 7.10276V9.68867C20.998 9.87407 20.8987 10.0453 20.738 10.1382L18.4987 11.431C18.4945 11.4331 18.4902 11.433 18.4873 11.4351C18.4509 11.4543 18.415 11.47 18.3769 11.4805C18.3711 11.4825 18.3648 11.4833 18.3585 11.4845C18.3238 11.4937 18.2874 11.4988 18.2514 11.4988C18.2477 11.4997 18.2433 11.5009 18.2392 11.5009H18.2343C18.1953 11.4996 18.1559 11.4946 18.1178 11.4854C18.1095 11.4833 18.1016 11.4805 18.0933 11.4784C18.0539 11.4671 18.0156 11.4523 17.9796 11.4318L16.8602 10.7852C16.4274 10.5358 15.8898 10.5358 15.4579 10.7852H15.4624C15.0305 11.0351 14.7615 11.4986 14.7614 11.9987C14.7614 12.4988 15.0305 12.9639 15.4624 13.2134C15.8943 13.4628 16.4316 13.4628 16.8634 13.2134L17.9829 12.5668C18.0189 12.5463 18.0572 12.5315 18.0965 12.5202C18.1048 12.5173 18.1119 12.5153 18.1202 12.5133C18.1583 12.5041 18.1974 12.4977 18.2367 12.4977H18.2531C18.2903 12.499 18.3262 12.5041 18.3622 12.5124C18.3685 12.5145 18.3735 12.5144 18.3798 12.5165C18.4178 12.5266 18.455 12.5422 18.4901 12.5619C18.4935 12.564 18.5007 12.566 18.5007 12.566L20.7401 13.8587C20.9012 13.9516 21 14.1229 21 14.3083V16.8942C21 17.0796 20.9008 17.2509 20.7401 17.3438L18.5007 18.6366C18.4204 18.6818 18.3304 18.7056 18.2408 18.7056C18.1512 18.7056 18.0612 18.683 17.9809 18.6366L15.7415 17.3438C15.7374 17.3417 15.7351 17.339 15.7321 17.3369C15.697 17.3151 15.6654 17.2909 15.6373 17.2633C15.6336 17.2591 15.6292 17.2544 15.6251 17.2502C15.6004 17.2234 15.5773 17.1945 15.5588 17.1636C15.5559 17.1586 15.5528 17.1542 15.5499 17.1493C15.5302 17.115 15.5158 17.079 15.5045 17.041C15.5024 17.0326 15.5004 17.0244 15.4984 17.016C15.4883 16.9767 15.482 16.9365 15.482 16.8942V15.6015C15.482 15.1022 15.213 14.637 14.7811 14.3876C14.3483 14.1382 13.8107 14.1382 13.3788 14.3876L12.2593 15.0346C12.2234 15.055 12.1854 15.0695 12.1461 15.0808C12.1377 15.0837 12.1296 15.086 12.1212 15.0881C12.0823 15.0973 12.044 15.1033 12.0047 15.1033H11.9998C11.9956 15.1032 11.9913 15.1012 11.9871 15.1012C11.9512 15.0999 11.9151 15.0953 11.88 15.0869C11.8742 15.0848 11.8679 15.0845 11.8617 15.0824C11.8236 15.0724 11.7864 15.0571 11.7513 15.0375C11.748 15.0354 11.7407 15.033 11.7407 15.033L9.50135 13.7402C9.34029 13.6473 9.24148 13.4764 9.24141 13.291V10.7047C9.24145 10.5194 9.34067 10.348 9.50135 10.2551L11.7407 8.96239C11.744 8.9603 11.7484 8.96039 11.7513 8.9583C11.7864 8.93909 11.8236 8.9238 11.8617 8.91334C11.8679 8.91126 11.873 8.91009 11.8792 8.90885C11.9143 8.89924 11.9504 8.89415 11.9875 8.89413H12.0051C12.044 8.89497 12.0835 8.90047 12.1216 8.90966C12.13 8.91176 12.1382 8.91493 12.1465 8.91702C12.1858 8.9283 12.2238 8.94276 12.2597 8.96321L13.3792 9.60979C13.8119 9.85922 14.3496 9.85922 14.7815 9.60979C15.2133 9.35908 15.4824 8.89429 15.4824 8.39551V7.10276C15.4824 7.06052 15.4896 7.02027 15.4988 6.98096C15.5009 6.97259 15.5028 6.9644 15.5049 6.95603C15.5162 6.91797 15.5306 6.8816 15.5503 6.84772C15.5524 6.84231 15.5563 6.83801 15.5593 6.83301C15.5781 6.80204 15.6008 6.77314 15.6255 6.74636C15.6292 6.74218 15.6336 6.73705 15.6377 6.73287C15.6666 6.7049 15.6987 6.68019 15.7325 6.65972C15.7355 6.65762 15.7419 6.65277 15.7419 6.65277L17.9813 5.36002Z\" fill=\"currentColor\"/><path d=\"M11.739 1.75846C11.8997 1.66556 12.097 1.66555 12.2577 1.75846L14.4991 3.0504C14.6602 3.1433 14.759 3.31459 14.759 3.49998V6.08548C14.759 6.27088 14.6598 6.44215 14.4991 6.53506L12.2597 7.82781C12.2564 7.8299 12.252 7.83021 12.2491 7.8323C12.214 7.85151 12.1768 7.86682 12.1388 7.87726C12.1329 7.87935 12.1266 7.8801 12.1204 7.88135C12.0856 7.89097 12.0493 7.89606 12.0133 7.89606C12.0095 7.89606 12.0052 7.89811 12.001 7.89811H11.9961C11.9572 7.89727 11.9177 7.89178 11.8796 7.88258C11.8717 7.88049 11.8634 7.87771 11.8551 7.87563C11.8158 7.86433 11.7775 7.84954 11.7415 7.82903L10.622 7.18246C10.1893 6.93309 9.65202 6.9327 9.22016 7.18246C8.78825 7.43231 8.51881 7.89745 8.51881 8.39632V9.68907C8.51881 9.73133 8.51207 9.77154 8.50287 9.81087C8.50079 9.81919 8.49841 9.82708 8.49633 9.83539C8.48503 9.8739 8.47105 9.91021 8.45138 9.94411C8.44929 9.94947 8.44489 9.95347 8.44197 9.95842C8.42315 9.98937 8.40044 10.0183 8.37576 10.0451C8.37162 10.0492 8.36764 10.0544 8.3635 10.0585C8.33464 10.0866 8.30216 10.1112 8.26827 10.1317C8.26553 10.1337 8.25999 10.1385 8.25928 10.1391L6.01955 11.4318C5.93921 11.477 5.84915 11.5009 5.75961 11.5009C5.66966 11.5009 5.58 11.4783 5.49967 11.4318L3.26035 10.1391V10.1399C3.09922 10.047 3.00041 9.87612 3.00041 9.6903V7.1048C3.00041 6.9194 3.09964 6.74813 3.26035 6.65522L5.49844 5.36124C5.50178 5.35916 5.50614 5.35922 5.50907 5.35716C5.54421 5.3375 5.58137 5.32184 5.61901 5.31138C5.62526 5.3093 5.63035 5.30813 5.63659 5.30729C5.67169 5.2981 5.70771 5.293 5.7449 5.29299H5.76247C5.80181 5.29424 5.84087 5.29931 5.87936 5.30852C5.88773 5.31061 5.89592 5.31337 5.90429 5.31547C5.94316 5.32676 5.98115 5.34158 6.01751 5.36206L7.13655 6.00823C7.5693 6.25767 8.10693 6.25767 8.53884 6.00823C8.97068 5.75752 9.23978 5.29238 9.23978 4.79354V3.50079C9.23978 3.45855 9.24692 3.41832 9.25612 3.379C9.2582 3.3707 9.26018 3.36278 9.26226 3.35448C9.27355 3.31642 9.28798 3.28004 9.30762 3.24617C9.3097 3.24119 9.31369 3.23683 9.31661 3.23186C9.33543 3.20091 9.35815 3.17199 9.38282 3.14522C9.38701 3.14103 9.39131 3.13591 9.39549 3.13173C9.42433 3.10374 9.45647 3.07905 9.49032 3.05857C9.49325 3.05648 9.49972 3.05121 9.49972 3.05121L11.739 1.75846Z\" fill=\"currentColor\"/>",
|
|
@@ -12208,6 +12222,20 @@
|
|
|
12208
12222
|
"packageName": "round-filled-radius-0-stroke-2",
|
|
12209
12223
|
"componentName": "IconFrisbeeGolf"
|
|
12210
12224
|
},
|
|
12225
|
+
{
|
|
12226
|
+
"category": "Weather",
|
|
12227
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C12.1545 2 12.3082 2.00381 12.4609 2.01074C12.52 2.01342 12.5789 2.01778 12.6377 2.02148C12.7433 2.02813 12.8484 2.036 12.9531 2.0459C13.0004 2.05037 13.0476 2.05542 13.0947 2.06055C13.2129 2.07342 13.3304 2.08852 13.4473 2.10547C13.4854 2.111 13.5235 2.11611 13.5615 2.12207C13.688 2.14191 13.8136 2.16491 13.9385 2.18945C13.97 2.19565 14.0018 2.20054 14.0332 2.20703C14.1805 2.23747 14.3268 2.27078 14.4717 2.30762C14.5225 2.32053 14.5726 2.33592 14.623 2.34961C14.7123 2.37382 14.8014 2.3982 14.8896 2.4248C14.9561 2.44482 15.0221 2.46595 15.0879 2.4873C15.1681 2.51333 15.2478 2.54038 15.3271 2.56836C15.3905 2.59072 15.4538 2.61312 15.5166 2.63672C15.6082 2.67115 15.6987 2.70809 15.7891 2.74512C15.8317 2.76257 15.8747 2.77885 15.917 2.79688C16.1902 2.91331 16.4567 3.04223 16.7168 3.18164C16.7699 3.21009 16.8225 3.23919 16.875 3.26855C16.9472 3.30897 17.0187 3.35044 17.0898 3.39258C17.1474 3.4267 17.2049 3.46086 17.2617 3.49609C17.3473 3.54915 17.4318 3.60364 17.5156 3.65918C17.5503 3.68213 17.5848 3.70515 17.6191 3.72852C17.7086 3.7894 17.7965 3.85234 17.8838 3.91602C17.9404 3.95731 17.997 3.99857 18.0527 4.04102C18.1424 4.10932 18.2311 4.17877 18.3184 4.25C18.3624 4.28596 18.4058 4.32268 18.4492 4.35938C18.524 4.42255 18.598 4.48646 18.6709 4.55176C18.7076 4.58468 18.744 4.61792 18.7803 4.65137C18.8524 4.71792 18.9231 4.78587 18.9932 4.85449C19.0351 4.89556 19.0769 4.93672 19.1182 4.97852C19.1764 5.03753 19.2333 5.09776 19.29 5.1582C19.3321 5.20304 19.3747 5.24736 19.416 5.29297C19.5098 5.39663 19.602 5.50183 19.6914 5.60938C19.7323 5.6585 19.7716 5.70888 19.8115 5.75879C19.8629 5.82306 19.914 5.88758 19.9639 5.95312C20.004 6.00593 20.0429 6.05966 20.082 6.11328C20.1335 6.18382 20.1838 6.25522 20.2334 6.32715C20.2672 6.37611 20.301 6.42502 20.334 6.47461C20.3749 6.53619 20.4145 6.5986 20.4541 6.66113C20.4972 6.72919 20.5406 6.79705 20.582 6.86621C20.6474 6.97531 20.7112 7.08552 20.7725 7.19727C20.7928 7.23441 20.8121 7.27214 20.832 7.30957C20.8859 7.41075 20.9379 7.513 20.9883 7.61621C21.0148 7.67049 21.0399 7.72545 21.0654 7.78027C21.102 7.85864 21.1383 7.93715 21.1729 8.0166C21.1971 8.07235 21.2209 8.1283 21.2441 8.18457C21.279 8.2689 21.3121 8.35398 21.3447 8.43945C21.3686 8.50217 21.3933 8.56462 21.416 8.62793C21.4433 8.70411 21.4677 8.78137 21.4932 8.8584C21.82 9.84665 22 10.9022 22 12C22 15.1903 20.5042 18.0293 18.1777 19.8604C18.1577 19.8761 18.1374 19.8916 18.1172 19.9072C17.9014 20.0744 17.6785 20.2324 17.4492 20.3818C17.4017 20.4128 17.3547 20.4444 17.3066 20.4746C17.2365 20.5186 17.166 20.5622 17.0947 20.6045C17.0464 20.6332 16.9971 20.6605 16.9482 20.6885C16.8431 20.7485 16.7364 20.806 16.6289 20.8623C16.5621 20.8973 16.4954 20.9323 16.4277 20.9658C16.3745 20.9922 16.3213 21.0185 16.2676 21.0439C16.158 21.0958 16.0473 21.1454 15.9355 21.1934C15.8905 21.2127 15.8452 21.2313 15.7998 21.25C15.709 21.2874 15.6176 21.3236 15.5254 21.3584C15.4699 21.3793 15.4143 21.4 15.3584 21.4199C15.2637 21.4537 15.1682 21.4856 15.0723 21.5166C15 21.5399 14.9274 21.5623 14.8545 21.584C14.768 21.6097 14.6812 21.6348 14.5938 21.6582C14.5334 21.6744 14.4729 21.69 14.4121 21.7051C14.2854 21.7365 14.1579 21.7664 14.0293 21.793C14.0098 21.797 13.9902 21.8008 13.9707 21.8047C13.8398 21.8309 13.7079 21.854 13.5752 21.875C13.5398 21.8806 13.5043 21.8854 13.4688 21.8906C13.3274 21.9115 13.1852 21.9305 13.042 21.9453C13.0215 21.9474 13.001 21.9492 12.9805 21.9512C12.849 21.964 12.7169 21.9738 12.584 21.9814C12.5382 21.9841 12.4923 21.9863 12.4463 21.9883C12.2983 21.9948 12.1496 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM10 12.5996C8.67452 12.5996 7.59961 13.6745 7.59961 15C7.59961 16.3255 8.67452 17.4004 10 17.4004C11.3255 17.4004 12.4004 16.3255 12.4004 15C12.4004 13.6745 11.3255 12.5996 10 12.5996ZM19.5254 9.28125C18.0462 9.86831 17 11.3117 17 13C17 14.3717 17.6908 15.5815 18.7432 16.3018C19.5375 15.0593 20 13.5841 20 12C20 11.0454 19.8321 10.1301 19.5254 9.28125ZM7.59961 8.5C6.99241 8.50021 6.50021 8.99241 6.5 9.59961C6.5 10.207 6.99228 10.7 7.59961 10.7002C8.20712 10.7002 8.7002 10.2071 8.7002 9.59961C8.69998 8.99228 8.20699 8.5 7.59961 8.5ZM12.5 6C11.6716 6 11 6.67157 11 7.5C11 8.32843 11.6716 9 12.5 9C13.3284 9 14 8.32843 14 7.5C14 6.67157 13.3284 6 12.5 6Z\" fill=\"currentColor\"/>",
|
|
12228
|
+
"iconName": "full-moon, dark-mode, nasa",
|
|
12229
|
+
"variant": {
|
|
12230
|
+
"join": "round",
|
|
12231
|
+
"filled": "on",
|
|
12232
|
+
"radius": "0",
|
|
12233
|
+
"stroke": "2"
|
|
12234
|
+
},
|
|
12235
|
+
"createdAt": "2026-04-07T21:02:21.927931+00:00",
|
|
12236
|
+
"packageName": "round-filled-radius-0-stroke-2",
|
|
12237
|
+
"componentName": "IconFullMoon"
|
|
12238
|
+
},
|
|
12211
12239
|
{
|
|
12212
12240
|
"category": "Photography & Video",
|
|
12213
12241
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 5C3 3.89543 3.89543 3 5 3H8C8.55228 3 9 3.44772 9 4C9 4.55228 8.55228 5 8 5H5V8C5 8.55228 4.55228 9 4 9C3.44772 9 3 8.55228 3 8V5ZM15 4C15 3.44772 15.4477 3 16 3H19C20.1046 3 21 3.89543 21 5V8C21 8.55228 20.5523 9 20 9C19.4477 9 19 8.55228 19 8V5H16C15.4477 5 15 4.55228 15 4ZM4 15C4.55228 15 5 15.4477 5 16V19H8C8.55228 19 9 19.4477 9 20C9 20.5523 8.55228 21 8 21H5C3.89543 21 3 20.1046 3 19V16C3 15.4477 3.44772 15 4 15ZM20 15C20.5523 15 21 15.4477 21 16V19C21 20.1046 20.1046 21 19 21H16C15.4477 21 15 20.5523 15 20C15 19.4477 15.4477 19 16 19H19V16C19 15.4477 19.4477 15 20 15Z\" fill=\"currentColor\"/>",
|
|
@@ -16268,20 +16296,6 @@
|
|
|
16268
16296
|
"packageName": "round-filled-radius-0-stroke-2",
|
|
16269
16297
|
"componentName": "IconMoon"
|
|
16270
16298
|
},
|
|
16271
|
-
{
|
|
16272
|
-
"category": "Weather",
|
|
16273
|
-
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C12.1545 2 12.3082 2.00381 12.4609 2.01074C12.52 2.01342 12.5789 2.01778 12.6377 2.02148C12.7433 2.02813 12.8484 2.036 12.9531 2.0459C13.0004 2.05037 13.0476 2.05542 13.0947 2.06055C13.2129 2.07342 13.3304 2.08852 13.4473 2.10547C13.4854 2.111 13.5235 2.11611 13.5615 2.12207C13.688 2.14191 13.8136 2.16491 13.9385 2.18945C13.97 2.19565 14.0018 2.20054 14.0332 2.20703C14.1805 2.23747 14.3268 2.27078 14.4717 2.30762C14.5225 2.32053 14.5726 2.33592 14.623 2.34961C14.7123 2.37382 14.8014 2.3982 14.8896 2.4248C14.9561 2.44482 15.0221 2.46595 15.0879 2.4873C15.1681 2.51333 15.2478 2.54038 15.3271 2.56836C15.3905 2.59072 15.4538 2.61312 15.5166 2.63672C15.6082 2.67115 15.6987 2.70809 15.7891 2.74512C15.8317 2.76257 15.8747 2.77885 15.917 2.79688C16.1902 2.91331 16.4567 3.04223 16.7168 3.18164C16.7699 3.21009 16.8225 3.23919 16.875 3.26855C16.9472 3.30897 17.0187 3.35044 17.0898 3.39258C17.1474 3.4267 17.2049 3.46086 17.2617 3.49609C17.3473 3.54915 17.4318 3.60364 17.5156 3.65918C17.5503 3.68213 17.5848 3.70515 17.6191 3.72852C17.7086 3.7894 17.7965 3.85234 17.8838 3.91602C17.9404 3.95731 17.997 3.99857 18.0527 4.04102C18.1424 4.10932 18.2311 4.17877 18.3184 4.25C18.3624 4.28596 18.4058 4.32268 18.4492 4.35938C18.524 4.42255 18.598 4.48646 18.6709 4.55176C18.7076 4.58468 18.744 4.61792 18.7803 4.65137C18.8524 4.71792 18.9231 4.78587 18.9932 4.85449C19.0351 4.89556 19.0769 4.93672 19.1182 4.97852C19.1764 5.03753 19.2333 5.09776 19.29 5.1582C19.3321 5.20304 19.3747 5.24736 19.416 5.29297C19.5098 5.39663 19.602 5.50183 19.6914 5.60938C19.7323 5.6585 19.7716 5.70888 19.8115 5.75879C19.8629 5.82306 19.914 5.88758 19.9639 5.95312C20.004 6.00593 20.0429 6.05966 20.082 6.11328C20.1335 6.18382 20.1838 6.25522 20.2334 6.32715C20.2672 6.37611 20.301 6.42502 20.334 6.47461C20.3749 6.53619 20.4145 6.5986 20.4541 6.66113C20.4972 6.72919 20.5406 6.79705 20.582 6.86621C20.6474 6.97531 20.7112 7.08552 20.7725 7.19727C20.7928 7.23441 20.8121 7.27214 20.832 7.30957C20.8859 7.41075 20.9379 7.513 20.9883 7.61621C21.0148 7.67049 21.0399 7.72545 21.0654 7.78027C21.102 7.85864 21.1383 7.93715 21.1729 8.0166C21.1971 8.07235 21.2209 8.1283 21.2441 8.18457C21.279 8.2689 21.3121 8.35398 21.3447 8.43945C21.3686 8.50217 21.3933 8.56462 21.416 8.62793C21.4433 8.70411 21.4677 8.78137 21.4932 8.8584C21.82 9.84665 22 10.9022 22 12C22 15.1903 20.5042 18.0293 18.1777 19.8604C18.1577 19.8761 18.1374 19.8916 18.1172 19.9072C17.9014 20.0744 17.6785 20.2324 17.4492 20.3818C17.4017 20.4128 17.3547 20.4444 17.3066 20.4746C17.2365 20.5186 17.166 20.5622 17.0947 20.6045C17.0464 20.6332 16.9971 20.6605 16.9482 20.6885C16.8431 20.7485 16.7364 20.806 16.6289 20.8623C16.5621 20.8973 16.4954 20.9323 16.4277 20.9658C16.3745 20.9922 16.3213 21.0185 16.2676 21.0439C16.158 21.0958 16.0473 21.1454 15.9355 21.1934C15.8905 21.2127 15.8452 21.2313 15.7998 21.25C15.709 21.2874 15.6176 21.3236 15.5254 21.3584C15.4699 21.3793 15.4143 21.4 15.3584 21.4199C15.2637 21.4537 15.1682 21.4856 15.0723 21.5166C15 21.5399 14.9274 21.5623 14.8545 21.584C14.768 21.6097 14.6812 21.6348 14.5938 21.6582C14.5334 21.6744 14.4729 21.69 14.4121 21.7051C14.2854 21.7365 14.1579 21.7664 14.0293 21.793C14.0098 21.797 13.9902 21.8008 13.9707 21.8047C13.8398 21.8309 13.7079 21.854 13.5752 21.875C13.5398 21.8806 13.5043 21.8854 13.4688 21.8906C13.3274 21.9115 13.1852 21.9305 13.042 21.9453C13.0215 21.9474 13.001 21.9492 12.9805 21.9512C12.849 21.964 12.7169 21.9738 12.584 21.9814C12.5382 21.9841 12.4923 21.9863 12.4463 21.9883C12.2983 21.9948 12.1496 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM10 12.5996C8.67452 12.5996 7.59961 13.6745 7.59961 15C7.59961 16.3255 8.67452 17.4004 10 17.4004C11.3255 17.4004 12.4004 16.3255 12.4004 15C12.4004 13.6745 11.3255 12.5996 10 12.5996ZM19.5254 9.28125C18.0462 9.86831 17 11.3117 17 13C17 14.3717 17.6908 15.5815 18.7432 16.3018C19.5375 15.0593 20 13.5841 20 12C20 11.0454 19.8321 10.1301 19.5254 9.28125ZM7.59961 8.5C6.99241 8.50021 6.50021 8.99241 6.5 9.59961C6.5 10.207 6.99228 10.7 7.59961 10.7002C8.20712 10.7002 8.7002 10.2071 8.7002 9.59961C8.69998 8.99228 8.20699 8.5 7.59961 8.5ZM12.5 6C11.6716 6 11 6.67157 11 7.5C11 8.32843 11.6716 9 12.5 9C13.3284 9 14 8.32843 14 7.5C14 6.67157 13.3284 6 12.5 6Z\" fill=\"currentColor\"/>",
|
|
16274
|
-
"iconName": "moon, dark-mode, nasa",
|
|
16275
|
-
"variant": {
|
|
16276
|
-
"join": "round",
|
|
16277
|
-
"filled": "on",
|
|
16278
|
-
"radius": "0",
|
|
16279
|
-
"stroke": "2"
|
|
16280
|
-
},
|
|
16281
|
-
"createdAt": "2026-04-07T21:02:21.927931+00:00",
|
|
16282
|
-
"packageName": "round-filled-radius-0-stroke-2",
|
|
16283
|
-
"componentName": "IconMoon1"
|
|
16284
|
-
},
|
|
16285
16299
|
{
|
|
16286
16300
|
"category": "Weather",
|
|
16287
16301
|
"svg": "<path d=\"M16.2404 5.0176L17.0519 3.39443C17.2362 3.02591 17.7621 3.02591 17.9464 3.39444L18.758 5.0176C18.8063 5.11437 18.8848 5.19283 18.9816 5.24121L20.6047 6.05279C20.9733 6.23706 20.9732 6.76296 20.6047 6.94722L18.9816 7.75881C18.8848 7.80719 18.8063 7.88565 18.7579 7.98241L17.9464 9.60558C17.7621 9.9741 17.2362 9.9741 17.0519 9.60558L16.2404 7.98241C16.192 7.88565 16.1135 7.80719 16.0167 7.75881L14.3936 6.94722C14.0251 6.76296 14.0251 6.23706 14.3936 6.05279L16.0167 5.24121C16.1135 5.19283 16.192 5.11437 16.2404 5.0176Z\" fill=\"currentColor\"/><path d=\"M12.0517 3.59971C12.2712 3.28123 12.2873 2.86472 12.0931 2.53021C11.8989 2.19569 11.5292 2.00315 11.1438 2.03581C6.0214 2.46985 2 6.76372 2 11.9979C2 17.5197 6.47632 21.996 11.9981 21.996C17.2324 21.996 21.5264 17.9745 21.9602 12.8519C21.9929 12.4664 21.8003 12.0968 21.4658 11.9026C21.1313 11.7084 20.7148 11.7246 20.3963 11.9441C19.4302 12.61 18.2602 12.9998 16.9961 12.9998C13.6824 12.9998 10.9961 10.3135 10.9961 6.99976C10.9961 5.73577 11.3858 4.56582 12.0517 3.59971Z\" fill=\"currentColor\"/>",
|
|
@@ -20146,6 +20160,20 @@
|
|
|
20146
20160
|
"packageName": "round-filled-radius-0-stroke-2",
|
|
20147
20161
|
"componentName": "IconRemix"
|
|
20148
20162
|
},
|
|
20163
|
+
{
|
|
20164
|
+
"category": "Arrows",
|
|
20165
|
+
"svg": "<path d=\"M19.2913 13.7656C19.4208 13.2289 19.9606 12.8991 20.4974 13.0283C21.0341 13.1579 21.365 13.6976 21.2356 14.2344C20.2305 18.4023 16.4782 21.4998 12.0003 21.5C9.2289 21.5 6.73612 20.3119 5.00029 18.4209V19.5C5.00029 20.0522 4.55248 20.4999 4.00029 20.5C3.448 20.5 3.00029 20.0523 3.00029 19.5V16C3.00029 15.4477 3.448 15 4.00029 15H7.50029C8.05248 15.0001 8.50029 15.4478 8.50029 16C8.50029 16.5522 8.05248 16.9999 7.50029 17H6.41045C7.78459 18.5352 9.78009 19.5 12.0003 19.5C15.533 19.4998 18.4977 17.0561 19.2913 13.7656Z\" fill=\"currentColor\"/><path d=\"M12.0003 8.5C12.5525 8.50011 13.0003 8.94778 13.0003 9.5V11H14.5003C15.0525 11.0001 15.5003 11.4478 15.5003 12C15.5003 12.5522 15.0525 12.9999 14.5003 13H13.0003V14.5C13.0003 15.0522 12.5525 15.4999 12.0003 15.5C11.448 15.5 11.0003 15.0523 11.0003 14.5V13H9.50029C8.948 13 8.50029 12.5523 8.50029 12C8.50029 11.4477 8.948 11 9.50029 11H11.0003V9.5C11.0003 8.94772 11.448 8.5 12.0003 8.5Z\" fill=\"currentColor\"/><path d=\"M12.0003 2.5C14.7715 2.50014 17.2648 3.68725 19.0003 5.57812V4.5C19.0003 3.94772 19.448 3.5 20.0003 3.5C20.5525 3.50011 21.0003 3.94778 21.0003 4.5V8C21.0003 8.55222 20.5525 8.99989 20.0003 9H16.5003C15.948 9 15.5003 8.55228 15.5003 8C15.5003 7.44772 15.948 7 16.5003 7H17.5862C16.2122 5.46572 14.2196 4.50014 12.0003 4.5C8.46732 4.5 5.50191 6.94376 4.7083 10.2344C4.57882 10.7712 4.03906 11.101 3.50224 10.9717C2.96537 10.8422 2.63546 10.3025 2.76494 9.76562C3.77018 5.59757 7.52222 2.5 12.0003 2.5Z\" fill=\"currentColor\"/>",
|
|
20166
|
+
"iconName": "remix-circle, mix, new-try",
|
|
20167
|
+
"variant": {
|
|
20168
|
+
"join": "round",
|
|
20169
|
+
"filled": "on",
|
|
20170
|
+
"radius": "0",
|
|
20171
|
+
"stroke": "2"
|
|
20172
|
+
},
|
|
20173
|
+
"createdAt": "2026-04-15T12:02:06.50898+00:00",
|
|
20174
|
+
"packageName": "round-filled-radius-0-stroke-2",
|
|
20175
|
+
"componentName": "IconRemixCircle"
|
|
20176
|
+
},
|
|
20149
20177
|
{
|
|
20150
20178
|
"category": "Photography & Video",
|
|
20151
20179
|
"svg": "<path d=\"M8.58579 3H4C3.44772 3 3 3.44772 3 4V8.58579L8.58579 3Z\" fill=\"currentColor\"/><path d=\"M3 19.5858L8.19005 14.3957C7.75291 13.702 7.5 12.8805 7.5 12C7.5 9.51472 9.51472 7.5 12 7.5C12.8805 7.5 13.702 7.75291 14.3957 8.19005L19.5858 3H11.4142L3 11.4142V19.5858Z\" fill=\"currentColor\"/><path d=\"M9.60426 15.81L4.41421 21H12.5858L21 12.5858V4.41421L15.81 9.60426C16.2471 10.298 16.5 11.1195 16.5 12C16.5 14.4853 14.4853 16.5 12 16.5C11.1195 16.5 10.298 16.2471 9.60426 15.81Z\" fill=\"currentColor\"/><path d=\"M20 21H15.4142L21 15.4142V20C21 20.5523 20.5523 21 20 21Z\" fill=\"currentColor\"/><path d=\"M9.5 12C9.5 10.6193 10.6193 9.5 12 9.5C13.3807 9.5 14.5 10.6193 14.5 12C14.5 13.3807 13.3807 14.5 12 14.5C10.6193 14.5 9.5 13.3807 9.5 12Z\" fill=\"currentColor\"/>",
|
|
@@ -20905,7 +20933,7 @@
|
|
|
20905
20933
|
{
|
|
20906
20934
|
"category": "Folders & Files",
|
|
20907
20935
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.9997 3H9.00035C8.20624 3 7.44316 3.31377 6.8799 3.87612C6.31592 4.4384 6 5.20126 6 5.9964V15H4C3.44772 15 3 15.4477 3 16V17.9675C3 18.7713 3.31912 19.543 3.88829 20.1119C4.45715 20.6806 5.22857 21 6.0329 21C9.02126 21 12.0096 20.9996 14.998 20.9996H15.002C16.6573 20.9996 18 19.6569 18 18.0016V10H21C21.5523 10 22 9.55226 22 8.99998V6C22 5.20421 21.6838 4.44134 21.1215 3.87885C20.5589 3.3161 19.7953 3 18.9997 3ZM18 6V8H20V6C20 5.73487 19.8946 5.48051 19.707 5.29284C19.5197 5.10544 19.2653 5 19 5C18.7347 5 18.4803 5.10544 18.293 5.29284C18.1053 5.48051 18 5.73487 18 6ZM5 17H12V18.0016C12 18.3516 12.06 18.6877 12.1704 19H6.0329C5.7588 19 5.496 18.8912 5.30224 18.6975C5.10877 18.5041 5 18.2414 5 17.9675V17ZM10 8C10 7.44772 10.4477 7 11 7H13C13.5523 7 14 7.44772 14 8C14 8.55228 13.5523 9 13 9H11C10.4477 9 10 8.55228 10 8ZM11 11C10.4477 11 10 11.4477 10 12C10 12.5523 10.4477 13 11 13H12C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11H11Z\" fill=\"currentColor\"/>",
|
|
20908
|
-
"iconName": "script, paper, page, contract, file, document",
|
|
20936
|
+
"iconName": "script, paper, page, contract, file, document, skills",
|
|
20909
20937
|
"variant": {
|
|
20910
20938
|
"join": "round",
|
|
20911
20939
|
"filled": "on",
|
|
@@ -20919,7 +20947,7 @@
|
|
|
20919
20947
|
{
|
|
20920
20948
|
"category": "Folders & Files",
|
|
20921
20949
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.9997 3H9.00035C8.20624 3 7.44316 3.31377 6.8799 3.87612C6.31592 4.4384 6 5.20126 6 5.9964V15H4C3.44772 15 3 15.4477 3 16V17.9675C3 18.7713 3.31912 19.543 3.88829 20.1119C4.45715 20.6806 5.22857 21 6.0329 21C9.02126 21 12.0096 20.9996 14.998 20.9996H15.002C16.6573 20.9996 18 19.6569 18 18.0016V10H21C21.5523 10 22 9.55226 22 8.99998V6C22 5.20421 21.6838 4.44134 21.1215 3.87885C20.5589 3.3161 19.7953 3 18.9997 3ZM18 6V8H20V6C20 5.73487 19.8946 5.48051 19.707 5.29284C19.5197 5.10544 19.2653 5 19 5C18.7347 5 18.4803 5.10544 18.293 5.29284C18.1053 5.48051 18 5.73487 18 6ZM5 17H12V18.0016C12 18.3516 12.06 18.6877 12.1704 19H6.0329C5.7588 19 5.496 18.8912 5.30224 18.6975C5.10877 18.5041 5 18.2414 5 17.9675V17Z\" fill=\"currentColor\"/>",
|
|
20922
|
-
"iconName": "script-2, paper, page, contract, file, document",
|
|
20950
|
+
"iconName": "script-2, paper, page, contract, file, document, skills",
|
|
20923
20951
|
"variant": {
|
|
20924
20952
|
"join": "round",
|
|
20925
20953
|
"filled": "on",
|
package/icons/index.d.ts
CHANGED
|
@@ -638,6 +638,7 @@ export type CentralIconName =
|
|
|
638
638
|
| "IconDeskOffice"
|
|
639
639
|
| "IconDeskOffice2"
|
|
640
640
|
| "IconDevices"
|
|
641
|
+
| "IconDevices2"
|
|
641
642
|
| "IconDevin"
|
|
642
643
|
| "IconDia"
|
|
643
644
|
| "IconDiamond"
|
|
@@ -871,6 +872,7 @@ export type CentralIconName =
|
|
|
871
872
|
| "IconFridge"
|
|
872
873
|
| "IconFrisbee"
|
|
873
874
|
| "IconFrisbeeGolf"
|
|
875
|
+
| "IconFullMoon"
|
|
874
876
|
| "IconFullScreen"
|
|
875
877
|
| "IconFullscreen1"
|
|
876
878
|
| "IconFullscreen2"
|
|
@@ -1161,7 +1163,6 @@ export type CentralIconName =
|
|
|
1161
1163
|
| "IconMoneybag"
|
|
1162
1164
|
| "IconMoneyHand"
|
|
1163
1165
|
| "IconMoon"
|
|
1164
|
-
| "IconMoon1"
|
|
1165
1166
|
| "IconMoonStar"
|
|
1166
1167
|
| "IconMorningBrief"
|
|
1167
1168
|
| "IconMountainBike"
|
|
@@ -1438,6 +1439,7 @@ export type CentralIconName =
|
|
|
1438
1439
|
| "IconRedirectArrow"
|
|
1439
1440
|
| "IconReference"
|
|
1440
1441
|
| "IconRemix"
|
|
1442
|
+
| "IconRemixCircle"
|
|
1441
1443
|
| "IconRemoveBackground"
|
|
1442
1444
|
| "IconRemoveBackground2"
|
|
1443
1445
|
| "IconRemoveFromBasket"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-filled-radius-0-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.192",
|
|
4
4
|
"style": "round-filled-radius-0-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-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": 1940,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 76,
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
]
|
|
110
110
|
},
|
|
111
111
|
"Arrows": {
|
|
112
|
-
"count":
|
|
112
|
+
"count": 135,
|
|
113
113
|
"icons": [
|
|
114
114
|
"IconArrow",
|
|
115
115
|
"IconArrowBottomTop",
|
|
@@ -228,6 +228,7 @@
|
|
|
228
228
|
"IconRandom",
|
|
229
229
|
"IconRedirectArrow",
|
|
230
230
|
"IconRemix",
|
|
231
|
+
"IconRemixCircle",
|
|
231
232
|
"IconRotate360Left",
|
|
232
233
|
"IconRotate360Right",
|
|
233
234
|
"IconShareArrowDown",
|
|
@@ -465,7 +466,7 @@
|
|
|
465
466
|
]
|
|
466
467
|
},
|
|
467
468
|
"Devices & Signals": {
|
|
468
|
-
"count":
|
|
469
|
+
"count": 79,
|
|
469
470
|
"icons": [
|
|
470
471
|
"IconAgentNetwork",
|
|
471
472
|
"IconAirdrop",
|
|
@@ -487,6 +488,7 @@
|
|
|
487
488
|
"IconConnectors1",
|
|
488
489
|
"IconConnectors2",
|
|
489
490
|
"IconDevices",
|
|
491
|
+
"IconDevices2",
|
|
490
492
|
"IconFullscreen1",
|
|
491
493
|
"IconFullscreen2",
|
|
492
494
|
"IconGyroscopeSensor",
|
|
@@ -2119,9 +2121,9 @@
|
|
|
2119
2121
|
"IconCloudy",
|
|
2120
2122
|
"IconCloudySun",
|
|
2121
2123
|
"IconDrop",
|
|
2124
|
+
"IconFullMoon",
|
|
2122
2125
|
"IconLightning",
|
|
2123
2126
|
"IconMoon",
|
|
2124
|
-
"IconMoon1",
|
|
2125
2127
|
"IconMoonStar",
|
|
2126
2128
|
"IconRainy",
|
|
2127
2129
|
"IconRainyLight",
|
|
@@ -2779,6 +2781,7 @@
|
|
|
2779
2781
|
"IconDeskOffice": "desk-office",
|
|
2780
2782
|
"IconDeskOffice2": "desk-office-2",
|
|
2781
2783
|
"IconDevices": "devices, macbook, iphone, phone, connected",
|
|
2784
|
+
"IconDevices2": "devices-2, laptop-phone",
|
|
2782
2785
|
"IconDevin": "devin",
|
|
2783
2786
|
"IconDia": "dia",
|
|
2784
2787
|
"IconDiamond": "diamond, pro, premium",
|
|
@@ -3012,6 +3015,7 @@
|
|
|
3012
3015
|
"IconFridge": "fridge",
|
|
3013
3016
|
"IconFrisbee": "frisbee",
|
|
3014
3017
|
"IconFrisbeeGolf": "frisbee-golf",
|
|
3018
|
+
"IconFullMoon": "full-moon, dark-mode, nasa",
|
|
3015
3019
|
"IconFullScreen": "full-screen, focus",
|
|
3016
3020
|
"IconFullscreen1": "fullscreen-1",
|
|
3017
3021
|
"IconFullscreen2": "fullscreen-2",
|
|
@@ -3302,7 +3306,6 @@
|
|
|
3302
3306
|
"IconMoneybag": "moneybag, purse, savings",
|
|
3303
3307
|
"IconMoneyHand": "money-hand, coins, pay",
|
|
3304
3308
|
"IconMoon": "moon, dark-mode, night",
|
|
3305
|
-
"IconMoon1": "moon, dark-mode, nasa",
|
|
3306
3309
|
"IconMoonStar": "moon-star, night",
|
|
3307
3310
|
"IconMorningBrief": "morning-brief, daily-todo",
|
|
3308
3311
|
"IconMountainBike": "mountain-bike",
|
|
@@ -3579,6 +3582,7 @@
|
|
|
3579
3582
|
"IconRedirectArrow": "redirect-arrow",
|
|
3580
3583
|
"IconReference": "reference, books, study, library, knowledge",
|
|
3581
3584
|
"IconRemix": "remix, new-try, repeat",
|
|
3585
|
+
"IconRemixCircle": "remix-circle, mix, new-try",
|
|
3582
3586
|
"IconRemoveBackground": "remove-background",
|
|
3583
3587
|
"IconRemoveBackground2": "remove-background-2",
|
|
3584
3588
|
"IconRemoveFromBasket": "remove-from-basket",
|
|
@@ -3633,8 +3637,8 @@
|
|
|
3633
3637
|
"IconScissors2": "scissors-2, cut",
|
|
3634
3638
|
"IconScratchCard": "scratch-card",
|
|
3635
3639
|
"IconScreenCapture": "screen-capture, recording",
|
|
3636
|
-
"IconScript": "script, paper, page, contract, file, document",
|
|
3637
|
-
"IconScript2": "script-2, paper, page, contract, file, document",
|
|
3640
|
+
"IconScript": "script, paper, page, contract, file, document, skills",
|
|
3641
|
+
"IconScript2": "script-2, paper, page, contract, file, document, skills",
|
|
3638
3642
|
"IconSdCard": "sd-card, memory-stick",
|
|
3639
3643
|
"IconSearchIntelligence": "search-intelligence, search-ai",
|
|
3640
3644
|
"IconSearchlinesSparkle": "search lines-sparkle, magnifier, document, list, page, file",
|
package/index.d.ts
CHANGED
|
@@ -637,6 +637,7 @@ export { IconDeskLamp, default as IconDeskLampDefault } from "./IconDeskLamp";
|
|
|
637
637
|
export { IconDeskOffice, default as IconDeskOfficeDefault, } from "./IconDeskOffice";
|
|
638
638
|
export { IconDeskOffice2, default as IconDeskOffice2Default, } from "./IconDeskOffice2";
|
|
639
639
|
export { IconDevices, default as IconDevicesDefault } from "./IconDevices";
|
|
640
|
+
export { IconDevices2, default as IconDevices2Default } from "./IconDevices2";
|
|
640
641
|
export { IconDevin, default as IconDevinDefault } from "./IconDevin";
|
|
641
642
|
export { IconDia, default as IconDiaDefault } from "./IconDia";
|
|
642
643
|
export { IconDiamond, default as IconDiamondDefault } from "./IconDiamond";
|
|
@@ -870,6 +871,7 @@ export { IconFramer, default as IconFramerDefault } from "./IconFramer";
|
|
|
870
871
|
export { IconFridge, default as IconFridgeDefault } from "./IconFridge";
|
|
871
872
|
export { IconFrisbee, default as IconFrisbeeDefault } from "./IconFrisbee";
|
|
872
873
|
export { IconFrisbeeGolf, default as IconFrisbeeGolfDefault, } from "./IconFrisbeeGolf";
|
|
874
|
+
export { IconFullMoon, default as IconFullMoonDefault } from "./IconFullMoon";
|
|
873
875
|
export { IconFullScreen, default as IconFullScreenDefault, } from "./IconFullScreen";
|
|
874
876
|
export { IconFullscreen1, default as IconFullscreen1Default, } from "./IconFullscreen1";
|
|
875
877
|
export { IconFullscreen2, default as IconFullscreen2Default, } from "./IconFullscreen2";
|
|
@@ -1160,7 +1162,6 @@ export { IconModelcontextprotocol, default as IconModelcontextprotocolDefault, }
|
|
|
1160
1162
|
export { IconMoneyHand, default as IconMoneyHandDefault, } from "./IconMoneyHand";
|
|
1161
1163
|
export { IconMoneybag, default as IconMoneybagDefault } from "./IconMoneybag";
|
|
1162
1164
|
export { IconMoon, default as IconMoonDefault } from "./IconMoon";
|
|
1163
|
-
export { IconMoon1, default as IconMoon1Default } from "./IconMoon1";
|
|
1164
1165
|
export { IconMoonStar, default as IconMoonStarDefault } from "./IconMoonStar";
|
|
1165
1166
|
export { IconMorningBrief, default as IconMorningBriefDefault, } from "./IconMorningBrief";
|
|
1166
1167
|
export { IconMountainBike, default as IconMountainBikeDefault, } from "./IconMountainBike";
|
|
@@ -1437,6 +1438,7 @@ export { IconReddit, default as IconRedditDefault } from "./IconReddit";
|
|
|
1437
1438
|
export { IconRedirectArrow, default as IconRedirectArrowDefault, } from "./IconRedirectArrow";
|
|
1438
1439
|
export { IconReference, default as IconReferenceDefault, } from "./IconReference";
|
|
1439
1440
|
export { IconRemix, default as IconRemixDefault } from "./IconRemix";
|
|
1441
|
+
export { IconRemixCircle, default as IconRemixCircleDefault, } from "./IconRemixCircle";
|
|
1440
1442
|
export { IconRemoveBackground, default as IconRemoveBackgroundDefault, } from "./IconRemoveBackground";
|
|
1441
1443
|
export { IconRemoveBackground2, default as IconRemoveBackground2Default, } from "./IconRemoveBackground2";
|
|
1442
1444
|
export { IconRemoveFromBasket, default as IconRemoveFromBasketDefault, } from "./IconRemoveFromBasket";
|