mirror of
https://github.com/better-auth/better-auth.git
synced 2026-05-30 02:46:44 -05:00
16 lines
369 B
Vue
16 lines
369 B
Vue
<script setup lang="ts">
|
|
import { Primitive, type PrimitiveProps, useForwardProps } from "radix-vue";
|
|
import { DashIcon } from "@radix-icons/vue";
|
|
|
|
const props = defineProps<PrimitiveProps>();
|
|
const forwardedProps = useForwardProps(props);
|
|
</script>
|
|
|
|
<template>
|
|
<Primitive v-bind="forwardedProps">
|
|
<slot>
|
|
<DashIcon />
|
|
</slot>
|
|
</primitive>
|
|
</template>
|