(width: number, max = chartPreviewChartWidth)
| 10 | chartPreviewOuterWidth - chartPreviewPaddingX * 2; |
| 11 | |
| 12 | export const clampChartWidth = (width: number, max = chartPreviewChartWidth) => |
| 13 | Math.max(280, Math.min(max, Math.round(width))); |
| 14 | |
| 15 | export const monthRevenue = [ |
| 16 | { month: "Jan", revenue: 52, forecast: 236, retention: 62 }, |
no outgoing calls
no test coverage detected