2023-10-30 11:52:46 +08:00

80 lines
2.2 KiB
Vue

<script setup>
const emit = defineEmits(['update:modelValue'])
const props = defineProps({
inverse: {
type: Boolean,
default: false,
},
strokeWidth: {
type: [Number, String],
default: 3,
},
})
</script>
<template>
<svg fill="none" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
<rect
:fill="props.inverse ? 'currentColor' : 'none'"
:stroke-width="props.strokeWidth"
height="8"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
width="8"
x="4"
y="34" />
<rect
:fill="props.inverse ? 'currentColor' : 'none'"
:stroke-width="props.strokeWidth"
height="12"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
width="32"
x="8"
y="6" />
<path
:stroke-width="props.strokeWidth"
d="M24 34V18"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round" />
<path
:stroke-width="props.strokeWidth"
d="M8 34V26H40V34"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round" />
<rect
:fill="props.inverse ? 'currentColor' : 'none'"
:stroke-width="props.strokeWidth"
height="8"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
width="8"
x="36"
y="34" />
<rect
:fill="props.inverse ? 'currentColor' : 'none'"
:stroke-width="props.strokeWidth"
height="8"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
width="8"
x="20"
y="34" />
<path
:stroke="props.inverse ? '#FFF' : 'currentColor'"
:stroke-width="props.strokeWidth"
d="M14 12H16"
stroke-linecap="round"
stroke-linejoin="round" />
</svg>
</template>
<style lang="scss" scoped></style>