Interface toggle (#459)

* Add icon prop overrides to checkbox

* Fix color example in storybook

* Add block style mode to checkbox base componet

* Add toggle interface
This commit is contained in:
Rijk van Zanten
2020-04-23 09:12:12 -04:00
committed by GitHub
parent ce7c3fc857
commit fc94de0067
10 changed files with 289 additions and 15 deletions

View File

@@ -3,6 +3,7 @@ import InterfaceTextarea from './textarea/';
import InterfaceDivider from './divider/';
import InterfaceNumeric from './numeric/';
import InterfaceSlider from './slider/';
import InterfaceToggle from './toggle/';
export const interfaces = [
InterfaceTextInput,
@@ -10,6 +11,7 @@ export const interfaces = [
InterfaceNumeric,
InterfaceSlider,
InterfaceDivider,
InterfaceToggle,
];
export default interfaces;