47 lines
1.1 KiB
Vue
47 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">
|
|
<rect
|
|
:stroke-width="strokeWidth"
|
|
fill="none"
|
|
height="34"
|
|
stroke="currentColor"
|
|
stroke-linejoin="round"
|
|
width="28"
|
|
x="13"
|
|
y="10"
|
|
/>
|
|
<path
|
|
:stroke-width="strokeWidth"
|
|
d="M35 10V4H8C7.44772 4 7 4.44772 7 5V38H13"
|
|
stroke="currentColor"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
/>
|
|
<path
|
|
:stroke-width="strokeWidth"
|
|
d="M21 22H33"
|
|
stroke="currentColor"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
/>
|
|
<path
|
|
:stroke-width="strokeWidth"
|
|
d="M21 30H33"
|
|
stroke="currentColor"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
/>
|
|
</svg>
|
|
</template>
|
|
|
|
<style lang="scss" scoped></style>
|