Files
thoughts/thoughts-frontend/components/ui/skeleton.tsx
Gabriel Kaszewski 32bfb00970
Some checks failed
lint / lint (push) Failing after 5m7s
test / unit (push) Successful in 16m24s
test / integration (push) Failing after 18m14s
feat: Frutiger Aero redesign — glass panels, Aero shimmer, interaction moments
2026-05-16 14:55:51 +02:00

14 lines
269 B
TypeScript

import * as React from "react"
import { cn } from "@/lib/utils"
function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
className={cn("rounded-md shimmer-aero", className)}
{...props}
/>
)
}
export { Skeleton }