mirror of
https://github.com/keven1024/015.git
synced 2026-05-31 09:29:35 +00:00
16 lines
402 B
Vue
16 lines
402 B
Vue
<script setup lang="ts">
|
|
import { Minus } from '@lucide/vue'
|
|
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>
|