// ** Third Party Components import PropTypes from 'prop-types' import { Card, CardBody } from 'reactstrap' const StatsVertical = ({ icon, color, stats, statTitle, className, ...rest }) => { return (
{icon}

{stats}

{statTitle}

) } export default StatsVertical // ** PropTypes StatsVertical.propTypes = { icon: PropTypes.element.isRequired, color: PropTypes.string.isRequired, stats: PropTypes.string.isRequired, statTitle: PropTypes.string.isRequired, className: PropTypes.string }