import type { Chart } from 'chart.js'; import type { FC } from 'react'; import './DoughnutChartLegend.scss'; interface DoughnutChartLegendProps { chart: Chart; } export const DoughnutChartLegend: FC = ({ chart }) => { const { config } = chart; const { labels = [], datasets = [] } = config.data ?? {}; const [{ backgroundColor: colors }] = datasets; const { defaultColor } = config.options ?? {} as any; return ( ); };