| 458 | }; |
| 459 | |
| 460 | interface ChartTooltipProps { |
| 461 | active: boolean | undefined; |
| 462 | payload: PayloadItem[]; |
| 463 | label: string; |
| 464 | barValueFormatter?: (value: number) => string; |
| 465 | lineValueFormatter?: (value: number) => string; |
| 466 | } |
| 467 | |
| 468 | const ChartTooltip = ({ |
| 469 | active, |
nothing calls this directly
no outgoing calls
no test coverage detected