Files
bot-whatsapp/packages/docs/src/components/icons/IconStar.tsx
Leifer Mendez 5ee5973911 docs: 📝 update docs
2022-12-22 10:15:29 +01:00

18 lines
564 B
TypeScript

export const IconStar = () => (
<svg
xmlns="http://www.w3.org/2000/svg"
class="icon icon-tabler icon-tabler-star w-5 h-5"
width="24"
height="24"
viewBox="0 0 24 24"
stroke-width="2"
stroke="currentColor"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
>
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z"></path>
</svg>
)