iconoir/packages/iconoir-react/src/server/MoonSat.tsx

34 lines
836 B
TypeScript

import * as React from "react";
function SvgMoonSat(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<circle cx={12} cy={12} r={10} stroke="currentColor" />
<path
d="M7.633 3.067A3.001 3.001 0 114.017 6.32M22 13.05a3.5 3.5 0 10-3 5.914"
stroke="currentColor"
/>
<path
d="M14.5 8.51l.01-.011M10 17a2 2 0 100-4 2 2 0 000 4z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgMoonSat);
export default ForwardRef;