UNPKG

react-toolbox-legacy

Version:

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

12 lines (9 loc) 372 B
import { themr } from 'react-css-themr-legacy'; import { APP_BAR } from '../identifiers.js'; import { appBarFactory } from './AppBar.js'; import { IconButton } from '../button'; import theme from './theme.scss'; const AppBar = appBarFactory(IconButton); const ThemedAppBar = themr(APP_BAR, theme)(AppBar); export default ThemedAppBar; export { ThemedAppBar as AppBar };