type ContentConfig = {
  defaultProps?: Record<string, any>;
  style?: React.CSSProperties;
};

export const CONFIG: Record<string, ContentConfig> = {
  AreaChart: {
    style: {
      width: '100%',
      height: 400,
    },
  },
  BarChart: {
    style: {
      width: '100%',
      height: 400,
    },
  },
  CalendarChart: {
    style: {
      width: '100%',
    },
  },
  Choropleth: {
    style: {
      width: '100%',
      height: 600,
    },
  },
  GroupChart: {
    style: {
      width: '100%',
      height: 400,
    },
  },
  ParetoChart: {
    style: {
      width: '100%',
      height: 400,
    },
  },
  PieChart: {
    style: {
      width: '100%',
      height: 400,
    },
  },
  LineChart: {
    style: {
      width: '100%',
      height: 400,
    },
  },
  RadarChart: {
    style: {
      width: '100%',
      height: 400,
    },
  },
  ScatterChart: {
    style: {
      width: '100%',
      height: 400,
    },
  },
  StackChart: {
    style: {
      width: '100%',
      height: 400,
    },
  },
  TreeMap: {
    style: {
      width: '100%',
      height: 400,
    },
  },
  InfoTabs: {
    style: {
      width: '100%',
    },
  },
  Table: {
    style: {
      width: '100%',
    },
  },
};
