import React from 'react' import PropTypes from 'prop-types' import { CWidgetBrand, CRow, CCol } from '@coreui/react-ts' import CIcon from '@coreui/icons-react' import ChartLineSimple from '../charts/ChartLineSimple' const WidgetsBrand = ({ withCharts }) => { // render return withCharts ? ( } values={[ ['89k', 'friends'], ['459', 'feeds'], ]} style={{ '--cui-card-cap-bg': '#3b5998', }} /> } values={[ ['973k', 'followers'], ['1.792', 'tweets'], ]} style={{ '--cui-card-cap-bg': '#00aced', }} /> } values={[ ['500+', 'contacts'], ['292', 'feeds'], ]} style={{ '--cui-card-cap-bg': '#4875b4', }} /> } values={[ ['12+', 'events'], ['4', 'meetings'], ]} /> ) : ( } values={[ ['89k', 'friends'], ['459', 'feeds'], ]} style={{ '--cui-card-cap-bg': '#3b5998', }} /> } values={[ ['973k', 'followers'], ['1.792', 'tweets'], ]} style={{ '--cui-card-cap-bg': '#00aced', }} /> } values={[ ['500+', 'contacts'], ['292', 'feeds'], ]} style={{ '--cui-card-cap-bg': '#4875b4', }} /> } values={[ ['12+', 'events'], ['4', 'meetings'], ]} /> ) } WidgetsBrand.propTypes = { withCharts: PropTypes.bool, } export default WidgetsBrand