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) 314 B
import { themr } from 'react-css-themr'; import { PROGRESS_BAR } from '../identifiers'; import { ProgressBar } from './ProgressBar'; import theme from './theme.css'; const ThemedProgressBar = themr(PROGRESS_BAR, theme)(ProgressBar); export default ThemedProgressBar; export { ThemedProgressBar as ProgressBar };