Some checks failed
Build and deploy updated apps / Build & deploy (push) Failing after 50s
22 lines
351 B
Vue
22 lines
351 B
Vue
<script setup lang="ts">
|
|
const props = defineProps<{
|
|
class?: string
|
|
ux?: any
|
|
orientation: 'horizontal' | 'vertical'
|
|
}>()
|
|
|
|
const classes = useStyling(
|
|
'separator',
|
|
{
|
|
slots: {
|
|
base: 'self-stretch h-auto',
|
|
},
|
|
},
|
|
props
|
|
)
|
|
</script>
|
|
|
|
<template>
|
|
<USeparator :class="classes.base" :orientation="props.orientation" />
|
|
</template>
|