Saaj UI

Alert

Short message to attract user’s attention.

Preview

Installation

npx saaj add Alert

Usage

MyAlert.tsx
import {
  Alert,
  AlertDescription,
  AlertIcon,
  AlertTitle,
} from '@/components/ui/Alert';
 
export function MyAlert() {
  return (
    <Alert>
      <AlertIcon name="time" />
      <AlertTitle>No days available</AlertTitle>
      <AlertDescription>
        Days will appear here when more photos and videos are added to the library.
      </AlertDescription>
    </Alert>
  );
}

On this page