Saaj UI

Alert

Short message to attract user’s attention.

Installation

npx saaj add alert

Usage

import { Alert } from '@/components/ui/alert';
 
export function AlertDemo() {
  return (
    <Alert>
      <Alert.Icon name="clock" />
      <Alert.Content>
        <Alert.Title>No days available</Alert.Title>
        <Alert.Description>
          Days will appear here when more photos and videos are added to the
          library.
        </Alert.Description>
      </Alert.Content>
    </Alert>
  );
}

On this page