@yosgo/swap-ui
Version:
SWAP UI Framework. www.swap.work
20 lines (19 loc) • 458 B
TypeScript
/// <reference types="react" />
export interface SWAPAppBarProps {
logo?: React.ReactNode | string;
primaryButton: {
title: string;
onClick: () => void;
disabled?: boolean;
};
navigations?: Array<{
title: string;
onClick: () => void;
disabled?: boolean;
}>;
secondaryButton?: {
title: string;
onClick: () => void;
disabled?: boolean;
};
}