14 lines
313 B
Vue
14 lines
313 B
Vue
<template>
|
|
<svg
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
stroke-width="2"
|
|
fill="none"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
class="w-4 h-4 ml-2 transform group-hover:translate-x-2 duration-500">
|
|
<path d="M5 12h14" />
|
|
<path d="M12 5l7 7-7 7" />
|
|
</svg>
|
|
</template>
|