mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-23 18:41:17 +00:00
14 lines
275 B
TypeScript
14 lines
275 B
TypeScript
|
|
import { cn } from "@/lib/utils"
|
||
|
|
|
||
|
|
function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
|
||
|
|
return (
|
||
|
|
<div
|
||
|
|
data-slot="skeleton"
|
||
|
|
className={cn("animate-pulse rounded-md bg-muted", className)}
|
||
|
|
{...props}
|
||
|
|
/>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export { Skeleton }
|