import React from 'react'; import BarChart from '../../charts/BarChart05'; // Import utilities import { tailwindConfig } from '../../utils/Utils'; function FintechCard03() { const chartData = { labels: [ '12-01-2020', '01-01-2021', '02-01-2021', '03-01-2021', '04-01-2021', '05-01-2021' ], datasets: [ // Indigo bars { label: 'Inflow', data: [800, 2600, 4000, 1200, 3200, 1700], backgroundColor: tailwindConfig().theme.colors.indigo[500], hoverBackgroundColor: tailwindConfig().theme.colors.indigo[600], barPercentage: 0.66, categoryPercentage: 0.66, }, // Grey bars { label: 'Outflow', data: [2800, 1700, 900, 2900, 1950, 3100], backgroundColor: tailwindConfig().theme.colors.slate[300], hoverBackgroundColor: tailwindConfig().theme.colors.slate[400], barPercentage: 0.66, categoryPercentage: 0.66, }, ], }; return (