Alert
Last updated: 2.0.0 (19/01/2024)
Usage
import { Alert } from "@valence-ui/core";
import { IconAlertCircle } from "@tabler/icons-react";
function MyComponent() {
const [show, setShow] = React.useState(true);
return (
<Alert
alert={{
title: "Alert title",
message: "Alert message",
icon: <IconAlertCircle />,
}}
show={show}
/>
)
}Controlled alert content
Actions on click
Alert levels
Props
Property
Type
Description
AlertContent
Property
Type
Description
Last updated