UNPKG

react-toolbox

Version:

A set of React components implementing Google's Material Design specification with the power of CSS Modules.

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