4
0
forked from crowetic/commerce

21 lines
407 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"
2020-10-23 19:14:16 -03:00
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
2020-10-22 10:47:56 -03:00
fill="none"
2020-10-23 19:14:16 -03:00
shapeRendering="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