19 lines
346 B
Vue
19 lines
346 B
Vue
<script setup lang="ts">
|
|
const props = defineProps({
|
|
vertical: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="bg-gradient-to-r from-primary-500/50 to-primary-300/50 rounded-full my-4"
|
|
:class="{'w-full h-[1px]': !vertical, 'w-[1px] h-full': vertical}"
|
|
></div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style> |