UNPKG

@ftrack/react-toolbox

Version:

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

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