import React, { PropTypes } from 'react'; import { themr } from 'react-css-themr'; import classnames from 'classnames'; import { CARD } from '../identifiers'; const Card = ({ children, className, raised, theme, ...other }) => { const classes = classnames(theme.card, { [theme.raised]: raised, }, className); return (
{children}
); }; Card.propTypes = { children: PropTypes.node, className: PropTypes.string, raised: PropTypes.bool, theme: PropTypes.shape({ card: PropTypes.string, raised: PropTypes.string, }), }; export default themr(CARD)(Card); export { Card };