Components
Animated content placeholder rendered until real data is available. Mimics the default text line-height with no props, accepts width and height as unit multipliers or literal strings, supports any radius token including circular for avatar-shaped placeholders, and composes into full component layouts. Animation is disabled under reduced-motion.
Loading preview...
import { Reshaped } from "reshaped/bundle";
import Skeleton from "@/components/ui/reshaped-skeleton";
export default function Demo() {
return (
<Reshaped theme="slate">
<div style={{ maxWidth: 400, width: "100%", margin: "0 auto", padding: 24 }}>
<Skeleton height={9} width="120px" />
</div>
</Reshaped>
);
}
Loading preview...
Loading preview...
Loading preview...