import React from 'react';
import { ChartShell } from '@/features/dashboard/components/charts';

export type { ChartShellProps as ChartCardProps } from '@/features/dashboard/components/charts';

/** @deprecated Prefer ChartShell — kept for backward compatibility */
export const ChartCard: React.FC<React.ComponentProps<typeof ChartShell>> = (props) => (
  <ChartShell {...props} />
);
