UNPKG

react-toolbox

Version:

A set of React components implementing Google's Material Design specification with the power of CSS Modules.

31 lines (26 loc) 704 B
import React from 'react'; import PropTypes from 'prop-types'; 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 };