import { SVGProps } from "react";
export const Moon = (props: SVGProps<SVGSVGElement>) => (
<svg
width="1em"
height="1em"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path
d="M12 3.00019H12.393C11.1084 4.19389 10.2826 5.80003 10.0593 7.53941C9.83602 9.27879 10.2293 11.0414 11.1708 12.5209C12.1122 14.0004 13.5424 15.1032 15.2126 15.6377C16.8829 16.1721 18.6876 16.1043 20.313 15.4462C19.6878 16.9507 18.6658 18.2572 17.3562 19.2264C16.0466 20.1957 14.4985 20.7912 12.8769 20.9496C11.2554 21.1079 9.62129 20.8231 8.14892 20.1256C6.67654 19.428 5.42114 18.3439 4.51661 16.9888C3.61209 15.6337 3.09238 14.0585 3.01291 12.4312C2.93345 10.8038 3.29721 9.18548 4.0654 7.7487C4.83359 6.31192 5.97739 5.11061 7.37479 4.27292C8.77219 3.43523 10.3708 2.99258 12 2.99219V3.00019Z"
stroke="currentColor"
strokeWidth={2}
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);