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