22 lines
458 B
Vue
22 lines
458 B
Vue
<template>
|
|
<div
|
|
class="grid h-4 w-4 shrink-0 place-items-center rounded-full border border-green-500 bg-green-50"
|
|
>
|
|
<svg
|
|
width="10"
|
|
height="8"
|
|
viewBox="0 0 10 8"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M1.26562 3.86686L3.93229 6.53353L9.26562 1.2002"
|
|
stroke="#38A160"
|
|
stroke-miterlimit="10"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
/>
|
|
</svg>
|
|
</div>
|
|
</template>
|