@blueprintjs-formik/core
Version:
Bindings for using Formik and Blueprint.js
14 lines (13 loc) • 541 B
TypeScript
/// <reference types="react" />
import { HTMLSelectProps as BPHTMLSelectProps } from '@blueprintjs/core';
import { FieldBaseProps } from './FieldBase';
export interface HTMLSelectProps extends Omit<FieldBaseProps, 'children' | 'component' | 'as'>, BPHTMLSelectProps {
name: string;
value?: string | number;
}
/**
* HTML select wrapper for BP component to bind with Formik.
* @param {TextAreaProps} props -
* @returns {JSX.Element}
*/
export declare function HTMLSelect({ ...props }: HTMLSelectProps): JSX.Element;