28 lines
733 B
Vue
28 lines
733 B
Vue
<script setup lang="ts">
|
|
interface Props {
|
|
size?: number | string
|
|
color?: string
|
|
}
|
|
|
|
withDefaults(defineProps<Props>(), {
|
|
size: 16,
|
|
color: '#7F7F7F',
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
:width="size"
|
|
:height="size"
|
|
viewBox="0 0 16 16"
|
|
:fill="color"
|
|
>
|
|
<path
|
|
fill-rule="evenodd"
|
|
clip-rule="evenodd"
|
|
d="M2.86201 5.19526C3.12236 4.93491 3.54447 4.93491 3.80482 5.19526L8.00008 9.39052L12.1953 5.19526C12.4557 4.93491 12.8778 4.93491 13.1382 5.19526C13.3985 5.45561 13.3985 5.87772 13.1382 6.13807L8.47149 10.8047C8.21114 11.0651 7.78903 11.0651 7.52868 10.8047L2.86201 6.13807C2.60166 5.87772 2.60166 5.45561 2.86201 5.19526Z"
|
|
/>
|
|
</svg>
|
|
</template>
|