@yosgo/swap-ui
Version:
SWAP UI Framework. www.swap.work
11 lines (10 loc) • 346 B
TypeScript
/// <reference types="react" />
import { BoxProps } from "@material-ui/core";
export interface BannerProps extends BoxProps {
children?: React.ReactNode;
variant?: "info" | "normal" | "success" | "warning" | "error";
mobile?: boolean;
width?: string | number;
height?: string | number;
icon?: React.ReactNode;
}