mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-19 12:09:15 +00:00
docs: 📝 update docs
This commit is contained in:
26
packages/docs/src/components/icons/IconMoon.tsx
Normal file
26
packages/docs/src/components/icons/IconMoon.tsx
Normal file
@@ -0,0 +1,26 @@
|
||||
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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user