diff --git a/src/features/profile/edit/components/ProfileProgress.tsx b/src/features/profile/edit/components/ProfileProgress.tsx new file mode 100644 index 00000000..36dc1299 --- /dev/null +++ b/src/features/profile/edit/components/ProfileProgress.tsx @@ -0,0 +1,30 @@ +interface ProfileProgressProps { + progress: number // 1~100% 사이의 수치 +} + +export default function ProfileProgress() { + return ( +
+
프로필 완성도
+
+ {/* 시작 지점 동그라미 */} +
+ + {/* 프로그레스 바 */} +
+ + {/* 완료 지점 도형 (마름모 모양) */} +
+ + {/* 끝 지점 동그라미 */} +
+
+
+ ) +}