react-toolbox/components/input/index.js

12 lines
378 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);
2016-08-02 22:51:13 +03:00
const ThemedInput = themr(INPUT, theme, { withRef: true })(Input);
export default ThemedInput;
export { ThemedInput as Input };