@yosgo/swap-ui
Version:
SWAP UI Framework. www.swap.work
17 lines (16 loc) • 382 B
TypeScript
export interface SWAPBannerProps {
status: "success" | "warning" | "critical";
title: string;
content: string;
focus?: boolean;
primaryButton?: {
title: string;
onClick: () => void;
disabled?: boolean;
};
secondaryButton?: {
title: string;
onClick: () => void;
disabled?: boolean;
};
}