@coreui/react
Version:
CoreUI React 17 Bootstrap 4 components
35 lines (25 loc) • 648 B
JavaScript
import React from 'react'
import PropTypes from 'prop-types'
import classNames from 'classnames'
//component - CoreUI / CMediaBody
const CMediaBody = props => {
const {
className,
//
innerRef,
...attributes
} = props
//render
const classes = classNames(
'media-body', className
)
return (
<div className={classes} {...attributes} ref={innerRef}/>
)
}
CMediaBody.propTypes = {
className: PropTypes.oneOfType([PropTypes.string, PropTypes.array, PropTypes.object]),
//
innerRef: PropTypes.oneOfType([PropTypes.object, PropTypes.func])
};
export default CMediaBody