@ftrack/react-toolbox
Version:
A set of React components implementing Google's Material Design specification with the power of CSS Modules.
12 lines (9 loc) • 329 B
JavaScript
import { CHIP } from '../identifiers.js';
import { themr } from 'react-css-themr';
import { chipFactory } from './Chip.js';
import Avatar from '../avatar';
import theme from './theme.scss';
const Chip = chipFactory(Avatar);
const ThemedChip = themr(CHIP, theme)(Chip);
export default ThemedChip;
export { ThemedChip as Chip };