Alert

Display a brief, important message in a way that attracts the user's attention without interrupting the user's task.

import { Alert } from 'qwik-primitives';

Import the component.

import { component$ } from '@builder.io/qwik';
import { Alert } from 'qwik-primitives';

const AlertDemo = component$(() => {
  return <Alert.Root />;
});

Contains the content for the alert. This component is based on the div element.

Adheres to the Alert WAI-ARIA design pattern.