All checks were successful
Integration Tests / integration-tests (pull_request) Successful in 1m4s
14 lines
294 B
TypeScript
14 lines
294 B
TypeScript
import { cn } from "@/shared/libs/shadcn/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 }
|