UNPKG

react-toolbox

Version:

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

12 lines (9 loc) 364 B
import { themr } from 'react-css-themr'; import { AVATAR } from '../identifiers'; import { avatarFactory } from './Avatar'; import { FontIcon } from '../font_icon/FontIcon'; import theme from './theme.css'; const Avatar = avatarFactory(FontIcon); const ThemedAvatar = themr(AVATAR, theme)(Avatar); export default ThemedAvatar; export { ThemedAvatar as Avatar };