mirror of
https://github.com/dream-pep/koring-launcher.git
synced 2026-09-12 05:45:18 +08:00
18 lines
337 B
TypeScript
18 lines
337 B
TypeScript
import { cn } from "@/lib/utils"
|
|||
|
|
|
||
|
|
function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) {
|
||
|
|
return (
|
||
|
|
<div
|
||
|
|
data-slot="skeleton"
|
||
|
|
className={cn(
|
||
|
|
"animate-pulse rounded-md bg-muted",
|
||
|
|
"dark:bg-muted/50",
|
||
|
|
className,
|
||
|
|
)}
|
||
|
|
{...props}
|
||
|
|
/>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export { Skeleton }
|