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

12 lines
329 B
JavaScript

import DoctorAvatar from "@/app/component/DoctorAvatar";
function ImageProfile({ data }) {
return (
<div className="bg-stroke-circle ml-[10px] mt-[57px] p-[9px] rounded-full overflow-hidden">
<DoctorAvatar doctor={data} size={173} priority className="rounded-full" />
</div>
);
}
export default ImageProfile;