@fortawesome/free-solid-svg-icons#faMapMarkerAlt TypeScript Examples

The following examples show how to use @fortawesome/free-solid-svg-icons#faMapMarkerAlt. 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: icon.tsx    From NetStatus with MIT License 5 votes vote down vote up
_initFontAwesome = () => {
    if ( _hasInitializedFontAwesome ) { return; }
    _hasInitializedFontAwesome = true;

    library.add(faCheckCircle, faPlug, faQuestionCircle, faExclamationTriangle, faWifi, faMapMarkerAlt, faClock);
}
Example #2
Source File: icon.tsx    From NetStatus with MIT License 5 votes vote down vote up
MapMarker             = (styling={}) => ComponentForIconName(faMapMarkerAlt.iconName, '', styling)
Example #3
Source File: index.tsx    From gatsby-markdown-typescript-personal-website with MIT License 5 votes vote down vote up
/* add any additional icon to the library */
library.add(fab, faLaptopCode, faDrawPolygon, faEdit, faEdit, faBullhorn, faMapMarkerAlt, faPhone, faPaperPlane);
Example #4
Source File: member-details-card.component.ts    From dating-client with MIT License 5 votes vote down vote up
locationIcon = faMapMarkerAlt as IconProp;
Example #5
Source File: member-card.component.ts    From dating-client with MIT License 5 votes vote down vote up
locationIcon = faMapMarkerAlt as IconProp;