import SwiftUI struct PostGridThumbnailPlaceholderView: View { var body: some View { RoundedRectangle(cornerRadius: 8) .fill(Color(.systemGray5)) .aspectRatio(1, contentMode: .fit) .redacted(reason: .placeholder) } }