diff --git a/iBox/Sources/BoxList/AddBookmark/FolderListCell.swift b/iBox/Sources/BoxList/AddBookmark/FolderListCell.swift index 2d8facf..8e86e22 100644 --- a/iBox/Sources/BoxList/AddBookmark/FolderListCell.swift +++ b/iBox/Sources/BoxList/AddBookmark/FolderListCell.swift @@ -25,7 +25,8 @@ class FolderListCell: UITableViewCell { } private let checkImageView = UIImageView().then { - $0.image = UIImage(systemName: "checkmark") + let config = UIImage.SymbolConfiguration(pointSize: 14, weight: .semibold, scale: .default) + $0.image = UIImage(systemName: "checkmark", withConfiguration: config) $0.contentMode = .scaleAspectFit $0.tintColor = .box $0.isHidden = true @@ -68,7 +69,6 @@ class FolderListCell: UITableViewCell { checkImageView.snp.makeConstraints { make in make.centerY.equalToSuperview() make.trailing.equalToSuperview().offset(-20) - make.width.height.equalTo(24) } folderNameLabel.snp.makeConstraints { make in