import Adwaita import LuminateCore struct PersonCell: View { var person: Components.Schemas.BaseItemPerson var view: Body { VStack { Avatar(showInitials: false, size: 60) Text(person.Name ?? "") .style("caption") if let role = person.Role { Text(role) .style("caption") .dimLabel() } } .frame(minWidth: 100) } }