20 lines
465 B
Vue
20 lines
465 B
Vue
<template>
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="16"
|
|
height="16"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
stroke-width="1.5"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
class="lucide lucide-square-asterisk-icon lucide-square-asterisk"
|
|
>
|
|
<rect width="18" height="18" x="3" y="3" rx="2" />
|
|
<path d="M12 8v8" />
|
|
<path d="m8.5 14 7-4" />
|
|
<path d="m8.5 10 7 4" />
|
|
</svg>
|
|
</template>
|