UNPKG

@gpa-gemstone/react-forms

Version:
22 lines (21 loc) 621 B
import * as React from 'react'; import { Gemstone } from '@gpa-gemstone/application-typings'; interface IProps<T> extends Gemstone.TSX.Interfaces.IBaseFormProps<T> { /** * Options for the select dropdown * @type {{ Value: string; Label: string }[]} */ Options: { Value: string; Label: string; }[]; /** * CSS styles to apply to the select element * @type {React.CSSProperties} * @optional */ Style?: React.CSSProperties; GroupStyle?: React.CSSProperties; } export default function ArrayMultiSelect<T>(props: IProps<T>): JSX.Element; export {};