react-toolbox/components/input/index.js

12 lines
359 B
JavaScript
Raw Normal View History

import { INPUT } from '../identifiers.js';
import { themr } from 'react-css-themr';
import { inputFactory } from './Input.js';
import FontIcon from '../font_icon/FontIcon.js';
import theme from './theme.scss';
const Input = inputFactory(FontIcon);
const ThemedInput = themr(INPUT, theme)(Input);
export default ThemedInput;
export { ThemedInput as Input };