mirror of
https://github.com/zen-browser/www.git
synced 2025-07-07 17:05:32 +02:00
19 lines
446 B
Text
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
|
|
>
|