mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-06-27 17:05:42 -04:00
8 lines
253 B
TypeScript
8 lines
253 B
TypeScript
import { cn } from "@/lib/utils";
|
|
|
|
const Skeleton = ({ className, ...rest }: React.ComponentProps<"div">) => {
|
|
return <div data-slot="skeleton" className={cn("bg-accent animate-pulse rounded-md", className)} {...rest} />;
|
|
};
|
|
|
|
export default Skeleton;
|