Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Claude docs adjustments
The robot did a pretty good job!
  • Loading branch information
Shrinks99 committed Jan 13, 2026
commit be77b9f37b36ee58aeae2007a7bed9402b00da12
8 changes: 4 additions & 4 deletions packages/demo/src/content/components/alert.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import { Alert, AlertTitle, AlertDescription } from "@eqtylab/equality";

---

The Alert component displays important messages to users. Use alerts to communicate status, warnings, errors, or success states. Each alert can include an optional title and description for clear, structured messaging.
The Alert component displays important messages to users, usually as a result of an action they took. Use alerts to communicate status, warnings, errors, or success states.

- **Default:** General informational messages.
- **Default:** General information.
- **Success:** Positive outcomes or confirmations.
- **Warning:** Cautionary information that needs attention.
- **Danger:** Critical errors or destructive actions.
Expand Down Expand Up @@ -62,7 +62,7 @@ Basic usage with title and description:

<Alert variant="danger">
<AlertTitle>Danger</AlertTitle>
<AlertDescription>This action cannot be undone.</AlertDescription>
<AlertDescription>A serious error occurred.</AlertDescription>
</Alert>
</div>

Expand All @@ -81,7 +81,7 @@ Basic usage with title and description:

<Alert variant="danger">
<AlertTitle>Danger</AlertTitle>
<AlertDescription>This action cannot be undone.</AlertDescription>
<AlertDescription>A serious error occurred.</AlertDescription>
</Alert>
```

Expand Down
Loading