import Image from 'next/image'; import { Avatar } from '../ui/avatar'; import { useGetApiUserMe } from '@/generated/api/user/user'; import { User } from 'lucide-react'; import { Input } from '../ui/input'; export default function ProfilePictureUpload() { const { data } = useGetApiUserMe(); return ( <>
{data?.data.user.image ? ( Avatar ) : ( )}
); }