UNPKG

react-toolbox-legacy

Version:

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

13 lines (10 loc) 455 B
import { AUTOCOMPLETE } from '../identifiers.js'; import { themr } from 'react-css-themr-legacy'; import { autocompleteFactory } from './Autocomplete.js'; import Chip from '../chip'; import Input from '../input'; import theme from './theme.scss'; const Autocomplete = autocompleteFactory(Chip, Input); const ThemedAutocomplete = themr(AUTOCOMPLETE, theme)(Autocomplete); export default ThemedAutocomplete; export { ThemedAutocomplete as Autocomplete };