Descriptive labels - SwiftUI

In SwiftUI, labels can be created with Text view and supplied with a String value.

Text("Documents")

Also, labels can be created with Label view and supplied with a title and an icon.

Label("Documents", systemImage: "folder")