import React from 'react'; import DoughnutChart from '../../charts/DoughnutChart'; // Import utilities import { tailwindConfig } from '../../utils/Utils'; function AnalyticsCard08() { const chartData = { labels: ['Desktop', 'Mobile', 'Tablet'], datasets: [ { label: 'Sessions By Device', data: [ 12, 50, 38, ], backgroundColor: [ tailwindConfig().theme.colors.indigo[500], tailwindConfig().theme.colors.sky[400], tailwindConfig().theme.colors.indigo[800], ], hoverBackgroundColor: [ tailwindConfig().theme.colors.indigo[600], tailwindConfig().theme.colors.sky[500], tailwindConfig().theme.colors.indigo[900], ], hoverBorderColor: tailwindConfig().theme.colors.white, }, ], }; return (

Sessions By Device

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