Files
mealie/frontend/components/global/BaseDivider.vue
2026-03-23 20:18:25 +00:00

25 lines
357 B
Vue

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