@bytebeans/macaw-ui
Version:
Saleor's UI component library
9 lines (8 loc) • 344 B
TypeScript
import { CardProps } from "@material-ui/core/Card";
import React from "react";
export declare type AlertVariant = "error" | "warning" | "success" | "info";
export interface AlertBaseProps extends Omit<CardProps, "variant"> {
className?: string;
variant: AlertVariant;
}
export declare const AlertBase: React.FC<AlertBaseProps>;