15 lines
227 B
JavaScript
15 lines
227 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 }
|