import { pushModal } from '@/modals'; import { ScanEyeIcon } from 'lucide-react'; import type { IChartProps } from '@openpanel/validation'; import { Button } from '../ui/button'; type Props = { chart: IChartProps; }; const OverviewDetailsButton = ({ chart }: Props) => { return ( ); }; export default OverviewDetailsButton;