Dev cleaning (#106)
This commit is contained in:
No files matched your search
@@ -0,0 +1,15 @@
|
||||
<script setup lang="ts">
|
||||
import type { PrimitiveProps } from 'radix-vue'
|
||||
import { Primitive, useForwardProps } from 'radix-vue'
|
||||
|
||||
const props = defineProps<PrimitiveProps>()
|
||||
const forwardedProps = useForwardProps(props)
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Primitive v-bind="forwardedProps">
|
||||
<slot>
|
||||
<Icon name="i-radix-icons-dash" />
|
||||
</slot>
|
||||
</primitive>
|
||||
</template>
|
||||
Reference in New Issue
Block a user