Files
medusa-store/www/apps/ui/src/content/docs/components/alert.mdx
Muhammad Naimul Islam 2b55208c1c docs: fix component title and description in alert.mdx (#7435)
- Removed the incorrect title and description from the Alert component page
- Added new title and description for the Alert component page
2024-05-24 15:55:42 +00:00

45 lines
587 B
Plaintext

---
title: "Alert"
description: "A component for displaying important messages."
component: true
---
<ComponentExample name="alert-demo" />
## Usage
---
```tsx
import { Alert } from "@medusajs/ui"
```
```tsx
<Alert>Here's a message</Alert>
```
## API Reference
---
<ComponentReference mainComponent="Alert" />
## Examples
---
### Success Alert
<ComponentExample name="alert-success" />
### Warning Alert
<ComponentExample name="alert-warning" />
### Error Alert
<ComponentExample name="alert-error" />
### Dismissable Alert
<ComponentExample name="alert-dismissable" />