16 lines
352 B
Vue
16 lines
352 B
Vue
<script setup lang="ts">
|
|
import { Dot } from 'lucide-vue-next'
|
|
import { Primitive, type PrimitiveProps, useForwardProps } from 'reka-ui'
|
|
|
|
const props = defineProps<PrimitiveProps>()
|
|
const forwardedProps = useForwardProps(props)
|
|
</script>
|
|
|
|
<template>
|
|
<Primitive v-bind="forwardedProps">
|
|
<slot>
|
|
<Dot />
|
|
</slot>
|
|
</primitive>
|
|
</template>
|