UNPKG

react-biz

Version:

React components for Business

30 lines (25 loc) 712 B
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 ( <div data-react-toolbox="card" className={classes} {...other}> {children} </div> ); }; 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 };