interface ChartPlaceholderProps { text: string; height?: string; colorScheme?: 'blue' | 'green' | 'red' | 'purple' | 'teal' | 'orange' | 'pink' | 'yellow'; } export default function ChartPlaceholder({ text, height = "h-64", colorScheme = 'blue' }: ChartPlaceholderProps) { const borderColor = { blue: 'border-accent-blue', green: 'border-accent-green', red: 'border-accent-red', purple: 'border-accent-purple', teal: 'border-accent-teal', orange: 'border-accent-orange', pink: 'border-accent-pink', yellow: 'border-accent-yellow', }[colorScheme]; const textColor = { blue: 'text-accent-blue', green: 'text-accent-green', red: 'text-accent-red', purple: 'text-accent-purple', teal: 'text-accent-teal', orange: 'text-accent-orange', pink: 'text-accent-pink', yellow: 'text-accent-yellow', }[colorScheme]; return (
{text}