Components
Skeleton
A skeleton component
Preview
import { Skeleton } from "@/registry/axon/ui/skeleton";export default function SkeletonCard() { return ( <div className="flex flex-col space-y-3"> <Skeleton className="h-[125px] w-[250px] rounded-xl" /> <div className="space-y-2"> <Skeleton className="h-4 w-[250px]" /> <Skeleton className="h-4 w-[200px]" /> </div> </div> );}Installation
CLI
npx shadcn@latest add @emberui/skeletonyarn shadcn@latest add @emberui/skeletonpnpm dlx shadcn@latest add @emberui/skeletonbunx --bun shadcn@latest add @emberui/skeletonReference
This component is based on the shadcn/ui Skeleton component.