react-toolbox/components/app_bar/index.js

12 lines
358 B
JavaScript

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 };