UNPKG

@gpa-gemstone/react-forms

Version:
14 lines (13 loc) 409 B
import { Gemstone } from '@gpa-gemstone/application-typings'; interface IProps<T> extends Gemstone.TSX.Interfaces.IBaseFormProps<T> { /** * Array of checkboxes with their IDs and labels * @type {{ ID: string; Label: string }[]} */ Checkboxes: { ID: string; Label: string; }[]; } export default function ArrayCheckBoxes<T>(props: IProps<T>): JSX.Element; export {};