import { Button } from "@/components/ui/button"; import { ExitIcon, PersonIcon } from "@radix-ui/react-icons"; type Props = { name: string; onLogout?: () => void; }; function Profile({ name, onLogout }: Props) { return (
{name}