40 lines
1.1 KiB
Vue
40 lines
1.1 KiB
Vue
<script setup>
|
|
const props = defineProps({
|
|
strokeWidth: {
|
|
type: [Number, String],
|
|
default: 3,
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<svg fill="none" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
<path
|
|
:stroke-width="props.strokeWidth"
|
|
d="M25 14L16 5L7 14"
|
|
stroke="currentColor"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round" />
|
|
<path
|
|
:stroke-width="props.strokeWidth"
|
|
d="M15.9917 31V5"
|
|
stroke="currentColor"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round" />
|
|
<path
|
|
:stroke-width="props.strokeWidth"
|
|
d="M42 34L33 43L24 34"
|
|
stroke="currentColor"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round" />
|
|
<path
|
|
:stroke-width="props.strokeWidth"
|
|
d="M32.9917 17V43"
|
|
stroke="currentColor"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round" />
|
|
</svg>
|
|
</template>
|
|
|
|
<style lang="scss" scoped></style>
|