Files
mealie/frontend/components/global/BaseDivider.vue
2025-06-19 17:09:12 +00:00

27 lines
414 B
Vue

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