# Using Icons

NOTE

This documentation is the same for both the customer and clerk applications.

In both the clerk and customer app, we use FontAwesome5 from @expo/vector-icons.

You can browse all of the icons in the @expo/vector-icons directory (opens new window), and filter by FontAwesome5.

# Example Usage

// Source: CenterLocation.js
import { FontAwesome5 } from '@expo/vector-icons';
...
<FontAwesome5
    name="location-arrow"
    solid
    size={20}
    color={Colors.primaryGreen}
/>

See the Expo Icons docs (opens new window) for more on icons in Expo.