UNPKG

@hypernetlabs/web-ui

Version:
18 lines 657 B
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