15 lines
225 B
JavaScript
15 lines
225 B
JavaScript
import { cn } from "@/lib/utils"
|
|
|
|
function Skeleton({
|
|
className,
|
|
...props
|
|
}) {
|
|
return (
|
|
<div
|
|
className={cn("animate-pulse rounded-md bg-primary/10", className)}
|
|
{...props} />
|
|
);
|
|
}
|
|
|
|
export { Skeleton }
|