1 | import { BoxProps } from "../Box";
|
2 | import { IconProps } from "../Icon";
|
3 | import * as React from "react";
|
4 |
|
5 | export interface IAlert {
|
6 | |
7 |
|
8 |
|
9 | status?: "error" | "success" | "warning" | "info";
|
10 | |
11 |
|
12 |
|
13 | variant?: "subtle" | "solid" | "left-accent" | "top-accent";
|
14 | }
|
15 |
|
16 | export type AlertProps = IAlert & BoxProps;
|
17 |
|
18 |
|
19 |
|
20 |
|
21 | export const Alert: React.FC<AlertProps>;
|
22 |
|
23 | export const AlertTitle: React.FC<BoxProps>;
|
24 | export const AlertDescription: React.FC<BoxProps>;
|
25 | export const AlertIcon: React.FC<IconProps>;
|