UNPKG

@ftrack/react-toolbox

Version:

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

31 lines (26 loc) 701 B
import PropTypes from 'prop-types'; import React from 'react'; import { themr } from 'react-css-themr'; import classnames from 'classnames'; import { CARD } from '../identifiers.js'; 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.any, className: PropTypes.string, raised: PropTypes.bool, theme: PropTypes.shape({ card: PropTypes.string, raised: PropTypes.string }) }; export default themr(CARD)(Card); export { Card };