mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-07 04:19:22 +00:00
15 lines
321 B
Vue
15 lines
321 B
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from "vue";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
interface SkeletonProps {
|
|
class?: HTMLAttributes["class"];
|
|
}
|
|
|
|
const props = defineProps<SkeletonProps>();
|
|
</script>
|
|
|
|
<template>
|
|
<div :class="cn('animate-pulse rounded-md bg-primary/10', props.class)" />
|
|
</template>
|