1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import React from 'react' import PropTypes from 'prop-types' import cx from 'classnames' import CardContentStyled from './card-content.styled' const CardContent = ({ className, children }) => ( <CardContentStyled className={cx(className)}> {children} </CardContentStyled> ) CardContent.propTypes = { className: PropTypes.string } export { CardContent } |