Files
bot-whatsapp/packages/docs/src/components/icons/IconMoon.tsx
Leifer Mendez 2ecc41f3f0 chore: pre-chore
2023-02-04 18:03:57 +01:00

25 lines
737 B
TypeScript

interface ItemProps {
class?: string
}
export const IconMoon = (props: ItemProps) => {
const { class: className } = props
return (
<svg
xmlns="http://www.w3.org/2000/svg"
class={`icon icon-tabler icon-tabler-moon ${className || 'w-5 h-5'}`}
width="24"
height="24"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
>
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z"></path>
</svg>
)
}