mirror of
https://github.com/directus/directus.git
synced 2026-01-29 14:07:57 -05:00
* Add icon prop overrides to checkbox * Fix color example in storybook * Add block style mode to checkbox base componet * Add toggle interface
18 lines
436 B
TypeScript
18 lines
436 B
TypeScript
import InterfaceTextInput from './text-input/';
|
|
import InterfaceTextarea from './textarea/';
|
|
import InterfaceDivider from './divider/';
|
|
import InterfaceNumeric from './numeric/';
|
|
import InterfaceSlider from './slider/';
|
|
import InterfaceToggle from './toggle/';
|
|
|
|
export const interfaces = [
|
|
InterfaceTextInput,
|
|
InterfaceTextarea,
|
|
InterfaceNumeric,
|
|
InterfaceSlider,
|
|
InterfaceDivider,
|
|
InterfaceToggle,
|
|
];
|
|
|
|
export default interfaces;
|