mirror of
https://github.com/keven1024/015.git
synced 2026-05-26 07:08:02 +00:00
19 lines
399 B
Vue
19 lines
399 B
Vue
<script setup lang="ts">
|
|
import { Minus } from 'lucide-vue-next'
|
|
import { Primitive, type PrimitiveProps, useForwardProps } from 'reka-ui'
|
|
|
|
const props = defineProps<PrimitiveProps>()
|
|
const forwardedProps = useForwardProps(props)
|
|
</script>
|
|
|
|
<template>
|
|
<Primitive
|
|
data-slot="pin-input-separator"
|
|
v-bind="forwardedProps"
|
|
>
|
|
<slot>
|
|
<Minus />
|
|
</slot>
|
|
</Primitive>
|
|
</template>
|