UNPKG

@shopistry/macaw-ui

Version:

Saleor's UI component library

10 lines (9 loc) 287 B
import React from "react"; export declare type AlertVariant = "error" | "warning" | "success" | "info"; export interface AlertProps { className?: string; close?: boolean; variant: AlertVariant; title?: string; } export declare const Alert: React.FC<AlertProps>;