1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import * as React from 'react';
6 import { WrappedFieldProps } from 'redux-form';
7 import { FormControlLabel, Checkbox } from '@material-ui/core';
9 export const CheckboxField = (props: WrappedFieldProps & { label?: string }) =>
13 checked={props.input.value}
14 onChange={props.input.onChange}
15 disabled={props.meta.submitting}