15 lines
319 B
Plaintext
15 lines
319 B
Plaintext
package icons
|
|
|
|
templ ArrowUpRight(className string) {
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke-width="1.5"
|
|
stroke="currentColor"
|
|
class={ className }
|
|
>
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="m4.5 19.5 15-15m0 0H8.25m11.25 0v11.25"></path>
|
|
</svg>
|
|
}
|