import React from 'react'; import LineChart from '../../charts/LineChart07'; // Import utilities import { tailwindConfig, hexToRGB } from '../../utils/Utils'; function FintechCard08() { const chartData = { labels: ['2010', 'Age 65'], datasets: [ // Dark green line { label: 'Growth 1', data: [0, 3500000], borderColor: tailwindConfig().theme.colors.emerald[500], fill: true, backgroundColor: `rgba(${hexToRGB(tailwindConfig().theme.colors.emerald[500])}, 0.08)`, borderWidth: 2, tension: 0, pointRadius: 0, pointHoverRadius: 3, pointBackgroundColor: tailwindConfig().theme.colors.emerald[500], clip: 20, }, // Light green line { label: 'Growth 2', data: [0, 2000000], borderColor: tailwindConfig().theme.colors.emerald[200], fill: false, borderWidth: 2, tension: 0, pointRadius: 0, pointHoverRadius: 3, pointBackgroundColor: tailwindConfig().theme.colors.emerald[200], clip: 20, }, ], }; return (

Growth Portfolio

Hey Mark, by age 65 you could have:
$2M - $3.5M
Risk level 8
{/* Chart built with Chart.js 3 */}
{/* Change the height attribute to adjust the chart height */}
); } export default FintechCard08;