1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-20 13:49:40 +02:00
mealie/frontend/components/global/BaseDivider.vue

22 lines
369 B
Vue

<template>
<v-divider :width="width" :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>