MicroClub Skeleton
mcoli-ui-registry/mc-skeletonFreeComponent
A skeleton component for MicroClub UI
Live preview
live · rendered by the registry
Rendered by mcoli-ui-registry on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://mcoli-ui.microclub.info/r/mc-skeleton.jsonSource
1import { cn } from '@/lib/utils';23type McSkeletonProps = {4 width?: number;5 height?: number;6 rectangle?: boolean;7} & React.ComponentProps<'div'>;89function McSkeleton({ className, rectangle, width, height, ...props }: McSkeletonProps) {10 return (11 <div12 data-slot="skeleton"13 style={{14 width,15 height,16 ...(height === width ? { marginRight: 16 } : { marginBottom: 8 }),17 }}18 className={cn('animate-pulse bg-muted', rectangle ? 'rounded-md' : 'rounded-full', className)}19 {...props}20 />21 );22}2324export { McSkeleton };
Files it writes
More from mcoli-ui-registry
All 42 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| MicroClub Accordionmc-accordion | mcoli-ui-registry | Components | Free | 2 deps | |
| MicroClub Alertmc-alert | mcoli-ui-registry | Components | Free | 1 dep | |
| MicroClub Alert Dialogmc-alert-dialog | mcoli-ui-registry | Components | Free | 1 dep | |
| MicroClub Avatarmc-avatar | mcoli-ui-registry | Components | Free | 1 dep | |
| MicroClub Badgemc-badge | mcoli-ui-registry | Components | Free | 1 dep | |
| MicroClub Breadcrumbmc-breadcrumb | mcoli-ui-registry | Components | Free | 2 deps | |
| MicroClub Buttonmc-button | mcoli-ui-registry | Components | Free | 2 deps | |
| MicroClub Calendarmc-calendar | mcoli-ui-registry | Components | Free | 3 deps |
