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