import React from 'react'; import LineChart from '../../charts/LineChart06'; // Import utilities import { tailwindConfig, hexToRGB } from '../../utils/Utils'; function FintechCard07() { const chartData = { labels: [ '09-01-2021', '10-01-2021', '11-01-2021', '12-01-2021', '01-01-2022', '02-01-2022', '03-01-2022', '04-01-2022', '05-01-2022', '06-01-2022', '07-01-2022', '08-01-2022', '09-01-2022', '10-01-2022', '11-01-2022', '12-01-2022', '01-01-2023', '02-01-2023', '03-01-2023', '04-01-2023', ], datasets: [ // Indigo line { label: 'Mosaic Portfolio', data: [ 1500, 2000, 1800, 1900, 1900, 2400, 2900, 2600, 3900, 2700, 3500, 3200, 2900, 3500, 3600, 3400, 3900, 3600, 4100, 4100, ], borderColor: tailwindConfig().theme.colors.indigo[500], fill: true, backgroundColor: `rgba(${hexToRGB(tailwindConfig().theme.colors.blue[500])}, 0.08)`, borderWidth: 2, tension: 0, pointRadius: 0, pointHoverRadius: 3, pointBackgroundColor: tailwindConfig().theme.colors.indigo[500], clip: 20, }, // Gray line { label: 'Expected Return', data: [ 2000, 2100, 2200, 2300, 2400, 2500, 2600, 2700, 2800, 2900, 3000, 3100, 3200, 3300, 3400, 3500, 3600, 3700, 3800, 3900, ], borderColor: tailwindConfig().theme.colors.slate[300], fill: false, borderWidth: 2, tension: 0, pointRadius: 0, pointHoverRadius: 3, pointBackgroundColor: tailwindConfig().theme.colors.slate[300], clip: 20, }, ], }; return (

Portfolio Returns

Hey Mark, you're very close to your goal:
$5,247.09
97.4%
Out of $6,000
{/* Chart built with Chart.js 3 */}
{/* Change the height attribute to adjust the chart height */}
); } export default FintechCard07;