Skeleton
Dieser Inhalt ist noch nicht in deiner Sprache verfügbar.
import { Skeleton } from "@rebasepro/ui";| Prop | Type | Required | Description |
|---|---|---|---|
width |
number |
— | |
height |
number |
— | |
className |
string |
— |
Example
Section titled “Example”This is the example the design-system sync renders and verifies for this component.
import { Skeleton } from "@rebasepro/ui";
export const RowLoading = () => ( <div className="flex items-center gap-4 p-4"> <Skeleton className="w-10 h-10 rounded-full"/> <div className="flex flex-col gap-2"> <Skeleton className="w-48 h-4 rounded"/> <Skeleton className="w-32 h-3 rounded"/> </div> </div>);