www/src/icons/InfoIcon.astro
2025-05-28 13:43:44 +12:00

19 lines
446 B
Text

---
const { class: className, ...props } = Astro.props
---
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class:list={["lucide lucide-info-icon lucide-info", className]}
{...props}
><circle cx="12" cy="12" r="10"></circle><path d="M12 16v-4"></path><path d="M12 8h.01"
></path></svg
>