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