mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-04-05 20:45:34 -04:00
25 lines
357 B
Vue
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>
|