UNPKG

@gpa-gemstone/react-forms

Version:
21 lines (20 loc) 635 B
import { Gemstone } from '@gpa-gemstone/application-typings'; interface IProps<T> extends Gemstone.TSX.Interfaces.IBaseFormProps<T> { /** * Position to display radion buttons in * @type {'vertical' | 'horizontal'} * @optional */ Position?: ('vertical' | 'horizontal'); /** * Options for the radion buttons * @type {{ Value: string | number; Label: string, Disabled?: boolean }[]} */ Options: { Value: string | number; Label: string; Disabled?: boolean; }[]; } export default function RadioButtons<T>(props: IProps<T>): JSX.Element; export {};