UNPKG

@ftrack/react-toolbox

Version:

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

12 lines (9 loc) 365 B
import { themr } from 'react-css-themr'; 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 };