react-toolbox/components/chip/index.js

12 lines
328 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.css';
const Chip = chipFactory(Avatar);
const ThemedChip = themr(CHIP, theme)(Chip);
export default ThemedChip;
export { ThemedChip as Chip };