Deploy to VPS / deploy (push) Failing after 1m35s
- Updated import statements to use consistent semicolon usage. - Refactored component code to ensure consistent formatting and style. - Improved readability by adding missing semicolons and adjusting spacing. - Ensured all components follow the same structure for props and return statements.
14 lines
278 B
TypeScript
14 lines
278 B
TypeScript
import { cn } from "@/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 };
|