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