diff --git a/src/components/chuni/avatar.tsx b/src/components/chuni/avatar.tsx new file mode 100644 index 0000000..30ac6ad --- /dev/null +++ b/src/components/chuni/avatar.tsx @@ -0,0 +1,57 @@ +import { getImageUrl } from '@/helpers/assets'; + +export type ChuniAvatarProps = { + wear: string | null, + head: string | null, + face: string | null, + skin: string | null, + item: string | null, + back: string | null, + className?: string +}; + +export const ChuniAvatar = ({ wear, head, face, skin, item, back, className }: ChuniAvatarProps) => { + return (
+ + {head?.includes('CHU_UI_Avatar_Tex_01200001') &&
+ +
} +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ + + +
+ +
+
+ +
+
) +};