<template>
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
class="icon icon-tabler icon-tabler-chevron-down"
|
|
width="60"
|
|
height="60"
|
|
viewBox="0 0 24 24"
|
|
stroke-width="2"
|
|
stroke="#bbbbbb"
|
|
fill="none"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
>
|
|
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
|
|
<polyline points="6 9 12 15 18 9" fill="none" />
|
|
</svg>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
svg {
|
|
max-height: 3.2rem;
|
|
}
|
|
</style>
|