import React from "react"; import Image from "next/image"; // plane package imports import { cn } from "@plane/utils"; import { useResolvedAssetPath } from "@/hooks/use-resolved-asset-path"; type Props = { title: string; description?: string; assetPath?: string; className?: string; }; const AnalyticsEmptyState = ({ title, description, assetPath, className }: Props) => { const backgroundReolvedPath = useResolvedAssetPath({ basePath: "/empty-state/analytics/empty-grid-background" }); return (
{description}
}