21 lines
448 B
Vue
21 lines
448 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-list-collapse"
|
|
>
|
|
<path d="m3 10 2.5-2.5L3 5" />
|
|
<path d="m3 19 2.5-2.5L3 14" />
|
|
<path d="M10 6h11" />
|
|
<path d="M10 12h11" />
|
|
<path d="M10 18h11" />
|
|
</svg>
|
|
</template>
|