Alert
Display a brief, important message in a way that attracts the user's attention without interrupting the user's task.
Access denied. Please contact the network administrator to view this page.
Features
-
Adheres to the Alert WAI-ARIA design pattern .
Import
import { Alert } from 'qwik-primitives';
Anatomy
Import the component.
import { component$ } from '@builder.io/qwik';
import { Alert } from 'qwik-primitives';
const AlertDemo = component$(() => {
return <Alert.Root />;
});
API Reference
Root
Contains the content for the alert. This component is based on the div
element.
Accessibility
Adheres to the Alert WAI-ARIA design pattern.