react-toolbox-legacy
Version:
Unofficial fork of the react-toolbox package, compatible with React v16
11 lines (9 loc) • 412 B
JavaScript
import { themr } from 'react-css-themr-legacy';
import { NAVIGATION } from '../identifiers.js';
import { navigationFactory } from './Navigation.js';
import { Button } from '../button';
import { Link } from '../link';
import theme from './theme.scss';
const ThemedNavigation = themr(NAVIGATION, theme)(navigationFactory(Button, Link));
export default ThemedNavigation;
export { ThemedNavigation as Navigation };