user profile ); ... // 2. switch 문을 이용한 조건처리 function getImageSizeStyle(size: AvatarSize): string { switch (size) { case "small": return "w-[34px] h-[34px] p-[0.1rem]"; case "medium": return ""; case "large": return "w-16 h-16" + " p-[0.15rem]"; } }"> user profile ); ... // 2. switch 문을 이용한 조건처리 function getImageSizeStyle(size: AvatarSize): string { switch (size) { case "small": return "w-[34px] h-[34px] p-[0.1rem]"; case "medium": return ""; case "large": return "w-16 h-16" + " p-[0.15rem]"; } }"> user profile ); ... // 2. switch 문을 이용한 조건처리 function getImageSizeStyle(size: AvatarSize): string { switch (size) { case "small": return "w-[34px] h-[34px] p-[0.1rem]"; case "medium": return ""; case "large": return "w-16 h-16" + " p-[0.15rem]"; } }">
// 1. 타입의 안정성을 위해 타입을 변수로 지정.
type AvatarSize = "small" | "medium" | "large";

type Props = {
  image?: string | null;
  size?: AvatarSize;
  highlight?: boolean;
};

export default function Avatar({
  image,
  size = "large",
  highlight = false,
}: Props) {
  return (
    <div className={getContainerStyle(size, highlight)}>
      <img
        className={`bg-white object-cover rounded-full ${getImageSizeStyle(size)}`}
        alt="user profile"
        src={image ?? undefined}
        referrerPolicy="no-referrer"
      />
    </div>
  );

...

// 2. switch 문을 이용한 조건처리
function getImageSizeStyle(size: AvatarSize): string {
  switch (size) {
    case "small":
      return "w-[34px] h-[34px] p-[0.1rem]";
    case "medium":
      return "";
    case "large":
      return "w-16 h-16" + " p-[0.15rem]";
  }
}