Installation
Usage
import AlertWarning from "@/components/ruixen/alert-warning";
export default function MyWarning() {
return (
<AlertWarning
title="Warning"
message="Some information is missing! Please check your input."
/>
);
}Props
| Prop | Type | Default | Description |
|---|---|---|---|
title | string | - | Optional title for the alert |
message | string | - | The alert message |
className | string | - | Additional CSS classes |

