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

{name}

); } export { Profile };