2023-09-07 10:13:38 +08:00
|
|
|
<script setup>
|
|
|
|
const props = defineProps({
|
|
|
|
strokeWidth: {
|
|
|
|
type: [Number, String],
|
|
|
|
default: 3,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-10-20 18:34:19 +08:00
|
|
|
<svg fill="none" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
2023-09-07 10:13:38 +08:00
|
|
|
<rect
|
2023-10-20 18:34:19 +08:00
|
|
|
:stroke-width="props.strokeWidth"
|
|
|
|
fill="none"
|
2023-09-07 10:13:38 +08:00
|
|
|
height="36"
|
|
|
|
rx="2"
|
|
|
|
stroke="currentColor"
|
|
|
|
stroke-linecap="round"
|
2023-10-20 18:34:19 +08:00
|
|
|
stroke-linejoin="round"
|
|
|
|
width="40"
|
|
|
|
x="4"
|
|
|
|
y="6" />
|
2023-09-07 10:13:38 +08:00
|
|
|
<path
|
2023-10-20 18:34:19 +08:00
|
|
|
:stroke-width="props.strokeWidth"
|
2023-09-07 10:13:38 +08:00
|
|
|
d="M32 25V32"
|
|
|
|
stroke="currentColor"
|
|
|
|
stroke-linecap="round"
|
|
|
|
stroke-linejoin="round" />
|
|
|
|
<path
|
2023-10-20 18:34:19 +08:00
|
|
|
:stroke-width="props.strokeWidth"
|
2023-09-07 10:13:38 +08:00
|
|
|
d="M24 16V32"
|
|
|
|
stroke="currentColor"
|
|
|
|
stroke-linecap="round"
|
|
|
|
stroke-linejoin="round" />
|
|
|
|
<path
|
2023-10-20 18:34:19 +08:00
|
|
|
:stroke-width="props.strokeWidth"
|
2023-09-07 10:13:38 +08:00
|
|
|
d="M16 20V32"
|
|
|
|
stroke="currentColor"
|
|
|
|
stroke-linecap="round"
|
|
|
|
stroke-linejoin="round" />
|
|
|
|
</svg>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style lang="scss" scoped></style>
|