# Skeleton

## Overview

Animated placeholder for loading states.

---

## Props

Extends `<div>` props.

---

## Example

```tsx
import { Skeleton } from "laif-ds";

export function CardSkeleton() {
  return (
    <div className="space-y-2">
      <Skeleton className="h-6 w-1/3" />
      <Skeleton className="h-4 w-2/3" />
      <Skeleton className="h-4 w-1/2" />
    </div>
  );
}
```
