import React from 'react'; import LineChart from '../../charts/LineChart08'; // Import utilities import { tailwindConfig, hexToRGB } from '../../utils/Utils'; function FintechCard13() { const chartData = { labels: [ '12-01-2020', '01-01-2021', '02-01-2021', '03-01-2021', '04-01-2021', '05-01-2021', '06-01-2021', '07-01-2021', '08-01-2021', '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', ], datasets: [ // Line { data: [ 245, 288, 332, 404, 404, 314, 314, 314, 314, 314, 234, 314, 234, 234, 314, 314, 314, 388, 314, 202, 202, 202, 202, 514, 720, 642, ], fill: true, backgroundColor: `rgba(${hexToRGB(tailwindConfig().theme.colors.emerald[500])}, 0.08)`, borderColor: tailwindConfig().theme.colors.emerald[500], borderWidth: 2, tension: 0, pointRadius: 0, pointHoverRadius: 3, pointBackgroundColor: tailwindConfig().theme.colors.emerald[500], clip: 20, }, ], }; return (

Facebook - Meta Inc.

$333.79
+$19,70 (4%) - Today
{/* Chart built with Chart.js 3 */}
{/* Change the height attribute to adjust the chart height */}
); } export default FintechCard13;