diff --git a/src/components/fields/BooleanField.jsx b/src/components/fields/BooleanField.jsx
index ce931dd..d6f2482 100644
--- a/src/components/fields/BooleanField.jsx
+++ b/src/components/fields/BooleanField.jsx
@@ -1,5 +1,8 @@
import React from 'react'
-import input from '../../config/input.js'
+
+import input from '../../config/input'
+import colors from '../../config/colors'
+import { margins } from '../../config/scales'
class BooleanField extends React.Component {
static propTypes = {
@@ -11,17 +14,61 @@ class BooleanField extends React.Component {
}
render() {
- return {this.props.onChange(!this.props.value)}}
- checked={this.props.value}
- >
-
+ const styles = {
+ root: {
+ ...input.base,
+ padding: 0,
+ position: 'relative',
+ textAlign: 'center ',
+ cursor: 'pointer'
+ },
+ input: {
+ position: 'absolute',
+ zIndex: -1,
+ opacity: 0
+ },
+ box: {
+ display: 'inline-block',
+ textAlign: 'center ',
+ height: 15,
+ width: 15,
+ marginRight: margins[1],
+ marginBottom: null,
+ backgroundColor: colors.gray,
+ borderRadius: 2,
+ borderStyle: 'solid',
+ borderWidth: 2,
+ borderColor: colors.gray,
+ transition: 'background-color .1s ease-out'
+ },
+ icon: {
+ display: this.props.value ? null : 'none',
+ width: '75%',
+ height: '75%',
+ marginTop: 1,
+ fill: colors.lowgray
+ }
+ }
+
+ return
}
}
diff --git a/src/config/input.js b/src/config/input.js
index 0886c78..1cc46c0 100644
--- a/src/config/input.js
+++ b/src/config/input.js
@@ -42,6 +42,7 @@ const select = {
}
export default {
+ base,
label,
select,
input,