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

People are excited to work with you, once they do you will find your frequent collaborators here.

Recent collaborators
); };