import React from 'react'; import BarChart from '../../charts/BarChart06'; // Import utilities import { tailwindConfig } from '../../utils/Utils'; function FintechCard04() { const chartData = { labels: [ '02-01-2021', '03-01-2021', '04-01-2021', '05-01-2021', ], datasets: [ // Indigo bars { label: 'Inflow', data: [ 4100, 1900, 2700, 3900, ], backgroundColor: tailwindConfig().theme.colors.indigo[500], hoverBackgroundColor: tailwindConfig().theme.colors.indigo[600], categoryPercentage: 0.66, }, // Gray bars { label: 'Outflow', data: [ 2000, 1000, 1100, 2600, ], backgroundColor: tailwindConfig().theme.colors.slate[300], hoverBackgroundColor: tailwindConfig().theme.colors.slate[400], categoryPercentage: 0.66, }, ], }; return (

Cash Flow by Account

{/* Chart built with Chart.js 3 */} {/* Change the height attribute to adjust the chart height */}
); } export default FintechCard04;