2023-06-27 15:53:29 +08:00
|
|
|
<script setup>
|
|
|
|
const props = defineProps({
|
|
|
|
strokeWidth: {
|
|
|
|
type: [Number, String],
|
|
|
|
default: 3,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-07-03 17:53:28 +08:00
|
|
|
<svg viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2023-06-27 15:53:29 +08:00
|
|
|
<path
|
2023-07-03 17:53:28 +08:00
|
|
|
d="M24.0605 10L24.0239 38"
|
2023-06-27 15:53:29 +08:00
|
|
|
stroke="currentColor"
|
2023-07-03 17:53:28 +08:00
|
|
|
:stroke-width="strokeWidth"
|
2023-06-27 15:53:29 +08:00
|
|
|
stroke-linecap="round"
|
|
|
|
stroke-linejoin="round"
|
|
|
|
/>
|
|
|
|
<path
|
2023-07-03 17:53:28 +08:00
|
|
|
d="M10 24L38 24"
|
2023-06-27 15:53:29 +08:00
|
|
|
stroke="currentColor"
|
2023-07-03 17:53:28 +08:00
|
|
|
:stroke-width="strokeWidth"
|
2023-06-27 15:53:29 +08:00
|
|
|
stroke-linecap="round"
|
|
|
|
stroke-linejoin="round"
|
|
|
|
/>
|
|
|
|
</svg>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style lang="scss" scoped></style>
|