Inline notification messages
Interactive preview of the Alert component with different variants.
Install the package via npm:
npm install apex-design-systemimport { Alert, AlertTitle, AlertDescription } from 'apex-design-system';<Alert>
<AlertTitle>Heads up!</AlertTitle>
<AlertDescription>
This is an important message.
</AlertDescription>
</Alert>The component supports multiple visual variants:
<Alert variant="info">Info alert</Alert>
<Alert variant="success">Success alert</Alert>
<Alert variant="warning">Warning alert</Alert>
<Alert variant="error">Error alert</Alert>This component follows WAI-ARIA best practices and is WCAG 2.1 AA compliant. It includes proper keyboard navigation, focus management, and screen reader support.