X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/13a00ada6b087c99235ce59a4247d57970e30f15..2a1d30b31a3d93d94ea0651dc7c8944d83a11e9e:/src/components/checkbox-field/checkbox-field.tsx diff --git a/src/components/checkbox-field/checkbox-field.tsx b/src/components/checkbox-field/checkbox-field.tsx index 48737eeb..a5d5b285 100644 --- a/src/components/checkbox-field/checkbox-field.tsx +++ b/src/components/checkbox-field/checkbox-field.tsx @@ -4,18 +4,9 @@ import * as React from 'react'; import { WrappedFieldProps } from 'redux-form'; -import { ArvadosTheme } from '~/common/custom-theme'; -import { FormControlLabel, Checkbox, StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core'; +import { FormControlLabel, Checkbox } from '@material-ui/core'; -type CssRules = 'checkboxField'; - -const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ - checkboxField: { - - } -}); - -export const CheckboxField = withStyles(styles)((props: WrappedFieldProps & WithStyles & { label?: string }) => +export const CheckboxField = (props: WrappedFieldProps & { label?: string }) => } label={props.label} - />); \ No newline at end of file + />; \ No newline at end of file