chore: sync staging

This commit is contained in:
Esdras Renan 2025-11-10 01:57:45 -03:00
parent c5ddd54a3e
commit 561b19cf66
610 changed files with 105285 additions and 1206 deletions

View file

@ -1,13 +1,14 @@
import { cn } from "@/lib/utils"
function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot="skeleton"
className={cn("bg-accent animate-pulse rounded-md", className)}
{...props}
/>
)
}
export { Skeleton }
function Skeleton({ className, ...props }: React.ComponentProps<"span">) {
return (
<span
data-slot="skeleton"
role="presentation"
className={cn("block bg-accent animate-pulse rounded-md", className)}
{...props}
/>
)
}
export { Skeleton }