UNPKG

react-toolbox

Version:

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

11 lines (9 loc) 398 B
import { themr } from 'react-css-themr'; import { NAVIGATION } from '../identifiers'; import { navigationFactory } from './Navigation'; import { Button } from '../button'; import { Link } from '../link'; import theme from './theme.css'; const ThemedNavigation = themr(NAVIGATION, theme)(navigationFactory(Button, Link)); export default ThemedNavigation; export { ThemedNavigation as Navigation };