UNPKG

react-toolbox

Version:

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

10 lines (7 loc) 249 B
import { themr } from 'react-css-themr'; import { LINK } from '../identifiers'; import { Link } from './Link'; import theme from './theme.css'; const ThemedLink = themr(LINK, theme)(Link); export default ThemedLink; export { ThemedLink as Link };