mealie/frontend/components/global/BaseDivider.vue

23 lines
379 B
Vue
Raw Normal View History

<template>
<v-divider :width="width" class="mx-auto" :class="color" :style="`border-width: ${thickness} !important`" />
</template>
<script>
export default {
props: {
width: {
type: String,
default: "100px"
},
thickness: {
type: String,
default: "2px"
},
color: {
type: String,
default: "accent"
}
}
}
</script>