UNPKG

react-toolbox-legacy

Version:

Unofficial fork of the react-toolbox package, compatible with React v16

12 lines (9 loc) 381 B
import { themr } from 'react-css-themr-legacy'; import { DROPDOWN } from '../identifiers.js'; import { dropdownFactory } from './Dropdown.js'; import { Input } from '../input'; import theme from './theme.scss'; const Dropdown = dropdownFactory(Input); const ThemedDropdown = themr(DROPDOWN, theme)(Dropdown); export default ThemedDropdown; export { ThemedDropdown as Dropdown };