Files
nobat724_front/components/doctor/poster/ImageProfile.js
T

18 lines
377 B
JavaScript

import Image from "next/image";
function ImageProfile({ data }) {
return (
<div className="bg-stroke-circle ml-[10px] mt-[57px] p-[9px] rounded-full overflow-hidden">
<Image
src={data?.img[0]?.url}
width={173}
height={173}
alt="profile-user"
className="rounded-full"
/>
</div>
);
}
export default ImageProfile;