Skeleton
scificn/skeletonFreeComponent
Loading placeholder block that animates with a pulsing glow.
Live preview
live · rendered by the registry
Rendered by scificn on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://www.scificn.dev/r/skeleton.jsonSource
1import * as React from 'react'2import { cn } from '@/lib/utils'34export interface SkeletonProps extends React.HTMLAttributes<HTMLDivElement> {}56function Skeleton({ className, ...props }: SkeletonProps) {7 return (8 <div9 className={cn(10 'animate-pulse bg-[var(--surface-raised)] border border-[var(--border)]',11 'rounded-none',12 className13 )}14 {...props}15 />16 )17}1819export { Skeleton }
More from scificn
All 33 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Alertalert | scificn | Components | Free | 1 dep | |
| Badgebadge | scificn | Components | Free | 1 dep | |
| Bar Chartbar-chart | scificn | Components | Free | no deps | |
| Breadcrumbbreadcrumb | scificn | Components | Free | no deps | |
| Buttonbutton | scificn | Components | Free | 2 deps | |
| Cardcard | scificn | Components | Free | no deps | |
| Checkboxcheckbox | scificn | Components | Free | 1 dep | |
| Dialogdialog | scificn | Components | Free | 1 dep |
