Files
litlyx/dashboard/components/LyxUi/Separator.vue
2025-02-12 03:20:54 +01:00

15 lines
261 B
Vue

<script lang="ts" setup>
const props = defineProps<{ size?: string }>();
const widgetStyle = computed(() => {
return `height: ${props.size ?? '1px'}`;
})
</script>
<template>
<div :style="widgetStyle" class="bg-lyx-widget-light"></div>
</template>