mirror of
https://github.com/zen-browser/www.git
synced 2025-07-07 17:05:32 +02:00
19 lines
501 B
Text
19 lines
501 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-external-link-icon lucide-external-link', className]}
|
|
{...props}
|
|
><path d="M15 3h6v6"></path><path d="M10 14 21 3"></path><path
|
|
d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path></svg
|
|
>
|