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