import { HTMLAttributes } from 'react';

export type DonutProps = {
  title: string;
  data: Array<any>;
  axis: {
    x: string;
    y: string;
  };
}
  & Pick<HTMLAttributes<any>, 'className'>