import { BarChart2 } from 'lucide-react' import { ChartEmptyState } from 'ui-patterns/Chart' interface EdgeFunctionChartEmptyStateProps { title: string description?: string } export const EdgeFunctionChartEmptyState = ({ title, description, }: EdgeFunctionChartEmptyStateProps) => { return ( } title={title} description={description ?? 'It may take up to 24 hours for data to refresh'} /> ) }