mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-24 04:51:51 +00:00
124d2db9f1
- Rename threat-map.tsx to map-chart.tsx - Add map-region-filter component - Update component exports in graphs and ui indices
10 lines
483 B
TypeScript
10 lines
483 B
TypeScript
export { DonutChart } from "./donut-chart";
|
|
export { HorizontalBarChart } from "./horizontal-bar-chart";
|
|
export { LineChart } from "./line-chart";
|
|
export { MapChart, type MapChartData, type MapChartProps } from "./map-chart";
|
|
export { RadarChart } from "./radar-chart";
|
|
export { RadialChart } from "./radial-chart";
|
|
export { SankeyChart } from "./sankey-chart";
|
|
export { ScatterPlot } from "./scatter-plot";
|
|
export { ChartLegend, type ChartLegendItem } from "./shared/chart-legend";
|