import { Paper } from '@mantine/core' export const defaultColors = ['#3b82f6', '#22c55e', '#f59e0b', '#8b5cf6', '#ec4899'] export interface Series { key: string name: string color?: string } export function getSeriesColor(index: number, color?: string): string { return color || defaultColors[index % defaultColors.length]! } interface ChartContainerProps { children: React.ReactNode height?: number | string } export function ChartContainer({ children, height = 300 }: ChartContainerProps) { return ( {children} ) } /** @deprecated Mantine charts handle tooltips internally. Kept for index.ts compat. */ export function ChartTooltipContent() { return null } /** @deprecated Mantine charts handle tooltips internally. Kept for index.ts compat. */ export function ChartTooltip() { return null } /** @deprecated Mantine charts handle legends internally. Kept for index.ts compat. */ export function ChartLegend() { return null }