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"; export const RecentActivityEmptyState = () => { // next-themes const { resolvedTheme } = useTheme(); const image = resolvedTheme === "dark" ? DarkImage : LightImage; return (
Issues by state group

All your issue activities across
projects will show up here.

); };