mirror of
https://github.com/better-auth/better-auth.git
synced 2026-08-25 17:11:27 -05:00
15 lines
313 B
Vue
15 lines
313 B
Vue
<script setup lang="ts">
|
|
import { type PrimitiveProps, useForwardProps } from "radix-vue";
|
|
|
|
const props = defineProps<PrimitiveProps>();
|
|
const forwardedProps = useForwardProps(props);
|
|
</script>
|
|
|
|
<template>
|
|
<Primitive v-bind="forwardedProps">
|
|
<slot>
|
|
<DashIcon />
|
|
</slot>
|
|
</primitive>
|
|
</template>
|