mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-18 03:29:15 +00:00
27 lines
767 B
TypeScript
27 lines
767 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>
|
|
)
|
|
}
|