@hypernetlabs/web-ui
Version:
Web ui react components for hypernet protocol
18 lines • 657 B
TypeScript
import React from "react";
import { FieldAttributes } from "formik";
export interface GovernanceDialogSelectFieldProps extends FieldAttributes<any> {
title?: string;
dialogTitle?: string;
options?: IGovernanceDialogSelectFieldOption[];
wrapperClassName?: string;
size?: "small" | "medium" | "large";
}
export interface IGovernanceDialogSelectFieldOption {
primaryText?: string;
secondaryText?: string;
icon?: React.ReactNode;
action?: React.ReactNode;
value: any;
}
export declare const GovernanceDialogSelectField: React.FC<GovernanceDialogSelectFieldProps>;
//# sourceMappingURL=GovernanceDialogSelectField.d.ts.map