import { BarChartIcon, LineChartIcon } from 'lucide-react'; import type { Dispatch, SetStateAction } from 'react'; import type { IChartType } from '@openpanel/validation'; import { Button } from '../ui/button'; interface Props { chartType: IChartType; setChartType: Dispatch>; } export function OverviewChartToggle({ chartType, setChartType }: Props) { return ( ); }