@expo/vector-icons#Foundation TypeScript Examples
The following examples show how to use
@expo/vector-icons#Foundation.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: index.tsx From selftrace with MIT License | 6 votes |
Icon = {
Question: (props: Props) => <FontAwesome name="question" size={25} {...props} />,
MapMarker: (props: Props) => <MaterialCommunityIcons name="map-marker" size={25} {...props} />,
Earth: (props: Props) => <MaterialCommunityIcons name="earth" size={25} {...props} />,
Lock: (props: Props) => <Foundation name="lock" size={25} {...props} />,
Form: (props: Props) => <AntDesign name="form" size={23} {...props} />,
Person: (props: Props) => <MaterialIcons name="person" size={25} {...props} />,
MapMarkerMultiple: (props: Props) => (
<MaterialCommunityIcons name="map-marker-multiple" size={23} {...props} />
),
}