mirror of
https://github.com/tiny-craft/tiny-rdm.git
synced 2025-04-19 02:38:05 +08:00
52 lines
1.5 KiB
Vue
52 lines
1.5 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="M40 23V14L31 4H10C8.89543 4 8 4.89543 8 6V42C8 43.1046 8.89543 44 10 44H22"
|
|
stroke="currentColor"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round" />
|
|
<path
|
|
:stroke-width="props.strokeWidth"
|
|
d="M27 33H41"
|
|
stroke="currentColor"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round" />
|
|
<path
|
|
:stroke-width="props.strokeWidth"
|
|
d="M27 39H41"
|
|
stroke="currentColor"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round" />
|
|
<path
|
|
:stroke-width="props.strokeWidth"
|
|
d="M41 33L36 28"
|
|
stroke="currentColor"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round" />
|
|
<path
|
|
:stroke-width="props.strokeWidth"
|
|
d="M32 44L27 39"
|
|
stroke="currentColor"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round" />
|
|
<path
|
|
:stroke-width="props.strokeWidth"
|
|
d="M30 4V14H40"
|
|
stroke="currentColor"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round" />
|
|
</svg>
|
|
</template>
|
|
|
|
<style lang="scss" scoped></style>
|