react-toolbox/components/card/Card.js

30 lines
683 B
JavaScript

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 };