# Swift: How to use SF Symbols

> Learn how to use SF Symbols in Swift, the Apple app that lets you browse over 1500 icons and find the name to pass to a Label via systemImage.

Author: Flavio Copes | Published: 2021-10-06 | Canonical: https://flaviocopes.com/swift-sf-symbols/

When designing a TabView you have the option to add an icon for each tab using a system image, using the `systemImage` parameter to `Label`:

```swift
TabView {
    Text("First")
        .tabItem {
            Label("First", systemImage: "tray")
        }
}
```

In this case we use `tray`.

How do you find out which other icons you can use? 

Apple created an app for this, called **SF Symbols**. Download it from <https://developer.apple.com/design/downloads/SF-Symbols.dmg>, install it on your Mac and once you open it, you can browse over 1500 symbols and see their name:

![SF Symbols app interface showing categories sidebar and grid of symbols with names like square.and.arrow.up](https://flaviocopes.com/images/swift-sf-symbols/Screen_Shot_2021-10-05_at_19.40.00.png)
