@hypernetlabs/web-ui
Version:
Web ui react components for hypernet protocol
15 lines • 506 B
TypeScript
import React from "react";
import { FieldAttributes } from "formik";
export interface GovernanceLargeFieldProps extends FieldAttributes<any> {
title?: string;
type?: "input" | "textarea" | "select";
options?: ISelectOption[];
rightContent?: React.ReactNode;
focus?: boolean;
}
export interface ISelectOption {
label: React.ReactNode;
value: any;
}
export declare const GovernanceLargeField: React.FC<GovernanceLargeFieldProps>;
//# sourceMappingURL=GovernanceLargeField.d.ts.map