"use client"; import { ReactNode } from "react"; import { cn } from "../../utils"; type EntityHeroProps = { avatar?: ReactNode; children?: ReactNode; className?: string; }; export function EntityHero({ avatar, children, className }: EntityHeroProps) { return (
{avatar}
{children}
); }