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