4
0
forked from crowetic/commerce

21 lines
411 B
TypeScript
Raw Normal View History

2020-10-22 10:47:56 -03:00
const Moon = ({ ...props }) => {
return (
<svg
viewBox="0 0 24 24"
width="24"
height="24"
stroke="currentColor"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
fill="none"
shape-rendering="geometricPrecision"
2020-10-22 12:08:50 -03:00
{...props}
2020-10-22 10:47:56 -03:00
>
<path d="M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z" />
</svg>
)
}
export default Moon