mirror of
https://github.com/vercel/commerce.git
synced 2025-03-16 07:22:32 +00:00
21 lines
407 B
TypeScript
21 lines
407 B
TypeScript
const Moon = ({ ...props }) => {
|
|
return (
|
|
<svg
|
|
viewBox="0 0 24 24"
|
|
width="24"
|
|
height="24"
|
|
stroke="currentColor"
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
fill="none"
|
|
shapeRendering="geometricPrecision"
|
|
{...props}
|
|
>
|
|
<path d="M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z" />
|
|
</svg>
|
|
)
|
|
}
|
|
|
|
export default Moon
|