tiny-rdm/frontend/src/components/icons/Log.vue

51 lines
1.3 KiB
Vue
Raw Normal View History

<script setup>
const props = defineProps({
2023-10-23 18:22:43 +08:00
inverse: {
type: Boolean,
default: false,
},
strokeWidth: {
type: [Number, String],
default: 3,
},
2023-10-30 11:52:46 +08:00
strokeColor: {
type: String,
default: '#FFF',
},
})
</script>
<template>
2023-10-30 11:52:46 +08:00
<svg fill="none" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
2023-10-23 18:22:43 +08:00
<rect
2023-10-30 11:52:46 +08:00
:fill="props.inverse ? 'currentColor' : 'none'"
:stroke-width="props.strokeWidth"
2023-10-27 10:51:54 +08:00
height="34"
2023-10-23 18:22:43 +08:00
stroke="currentColor"
2023-10-27 10:51:54 +08:00
stroke-linejoin="round"
width="28"
x="13"
y="10" />
2023-10-23 18:22:43 +08:00
<path
d="M35 10V4H8C7.44772 4 7 4.44772 7 5V38H13"
stroke="currentColor"
stroke-linecap="round"
2023-10-27 10:51:54 +08:00
stroke-linejoin="round"
stroke-width="3" />
<path
2023-10-30 11:52:46 +08:00
:stroke="props.inverse ? props.strokeColor : 'currentColor'"
:stroke-width="props.strokeWidth"
d="M21 22H33"
stroke-linecap="round"
2023-08-24 15:23:25 +08:00
stroke-linejoin="round" />
<path
2023-10-30 11:52:46 +08:00
:stroke="props.inverse ? props.strokeColor : 'currentColor'"
:stroke-width="props.strokeWidth"
d="M21 30H33"
stroke-linecap="round"
2023-08-24 15:23:25 +08:00
stroke-linejoin="round" />
</svg>
</template>
<style lang="scss" scoped></style>