Skip to content

Commit

Permalink
♻️ :: [#237] DesignSystem / AppliedStudentCard View 생성자의 profileImage…
Browse files Browse the repository at this point in the history
…를 옵셔널로 수정, 기본 이미지 추가
  • Loading branch information
junseopark0331 authored and uuuunseo committed Apr 21, 2024
1 parent 1cbe424 commit 4bbf9d9
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public struct AppliedStudentViewModel: Equatable {
gender: Gender,
stuNum: String,
isChecked: Bool,
profileImage: String
profileImage: String?
) {
self.rank = rank
self.name = name
Expand All @@ -43,7 +43,8 @@ public final class AppliedStudentCardView: UIView {
private let attendanceCheckBox = DotoriCheckBox()
.set(\.isHidden, true)
private let userImageView = DotoriIconView(
size: .custom(.init(width: 64, height: 64))
size: .custom(.init(width: 64, height: 64)),
image: .Dotori.personRectangle
)
private let nameLabel = DotoriLabel(textColor: .neutral(.n10), font: .body1)
private let genderImageView = DotoriIconView(
Expand Down

0 comments on commit 4bbf9d9

Please sign in to comment.