@hypernetlabs/web-ui
Version:
Web ui react components for hypernet protocol
20 lines • 628 B
TypeScript
import React from "react";
import { IGovernanceButton } from "../../components";
export interface IHeaderAction extends IGovernanceButton {
label: string;
}
interface INavigationLink {
label: string;
onClick: () => void;
}
interface IGovernanceWidgetHeader {
navigationLink?: INavigationLink;
label?: string;
description?: string | React.ReactNode;
rightContent?: React.ReactNode;
bottomContent?: React.ReactNode;
headerActions?: IHeaderAction[];
}
export declare const GovernanceWidgetHeader: React.FC<IGovernanceWidgetHeader>;
export {};
//# sourceMappingURL=GovernanceWidgetHeader.d.ts.map