18 lines
372 B
Vue
18 lines
372 B
Vue
<template>
|
|
<svg
|
|
width="20"
|
|
height="20"
|
|
viewBox="0 0 20 20"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<rect x="3" y="3" width="14" height="14" rx="2.5" stroke="currentColor" />
|
|
<path
|
|
d="M6.5 10.5L8.5 13L13.5 7.5"
|
|
stroke="currentColor"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
/>
|
|
</svg>
|
|
</template>
|