import { PieChartDataType } from "../../../libs/types";
interface IProps {
    title: string;
    data: PieChartDataType[];
    size?: number;
}
export default IProps;
