import Image from "next/image"; import { useTheme } from "next-themes"; // assets import DarkImage from "public/empty-state/dashboard/dark/recent-activity.svg"; import LightImage from "public/empty-state/dashboard/light/recent-activity.svg"; // helpers import { cn } from "helpers/common.helper"; type Props = {}; export const RecentActivityEmptyState: React.FC = (props) => { const {} = props; // next-themes const { resolvedTheme } = useTheme(); return (

Feels new, go and explore our tool in depth and come back
to see your activity.

Issues by priority
); };