DocsComponents

Alert

Alert

Alert to communicate a state that affects a system, feature or page.

Percept UI Is Awesome

You can add components to your app using the cli

Installation

CLI

Add component to your project.

npx @perceptui/cli@latest add alert

Import from @perceptui/ui

Note: If you have installed @perceptui/ui package, then import Alert from @perceptui/ui.

import { Alert } from "@perceptui/ui";

Percept UI Is Awesome

You can add components to your app using the cli

API References

PropTypeDescriptionDefault
variant"solid" | "outline" | "surfaceForm of the Alertsolid
type"success" | "warning" | "error" | "info"Type of the Alertsuccess
messagestringMessage of the Alert_
iconReactNodeIcon of the Alerttype
classNamestringclassName_

Examples

Variant

Use the variant prop to control the visual style of the button.

Solid Variant

This is a solid variant Alert.

Outline Variant

This is a outline variant Alert.

Surface Variant

This is a outline variant Alert.

Type

Use the type prop to control the type of the alert.

Success Type

This is a solid success Alert.

This is a outline success Alert.

This is a surface success Alert.

Info Type

This is a solid info Alert.

This is a outline info Alert.

This is a surface info Alert.

Error Type

This is a solid error Alert.

This is a outline error Alert.

This is a surface error Alert.

Warning Type

This is a solid warning Alert.

This is a outline warning Alert.

This is a surface warning Alert.