react-feather APIs
- X
- CheckCircle
- Check
- ChevronDown
- Activity
- ChevronLeft
- ChevronRight
- ArrowRight
- GitHub
- Menu
- XCircle
- Sun
- Moon
- MapPin
- Plus
- Play
- AlertTriangle
- HelpCircle
- ChevronsRight
- MoreVertical
- Search
- ExternalLink
- Home
- Copy
- ChevronUp
- Bookmark
- List
- AlertCircle
- ChevronsLeft
- Heart
- Terminal
- Eye
- Info
- FastForward
- Trash
- Book
- TrendingUp
- PieChart
- Disc
- PlusCircle
- ArrowUpCircle
- Filter
- EyeOff
- LogOut
- Key
- Save
- Trash2
- Maximize2
- Pause
- Users
- ChevronsDown
- Database
- Send
- FileText
- Layers
- Edit
- Inbox
- Smartphone
- Clipboard
- Codepen
- Youtube
- Chrome
- UserPlus
- UploadCloud
- Star
- GitMerge
- Minimize
- Folder
- GitPullRequest
- MessageCircle
- LogIn
- Edit3
- Tag
- Maximize
- ArrowDownRight
- Lock
- Minimize2
- Rewind
- SkipBack
- SkipForward
- Unlock
- MoreHorizontal
- Volume1
- Volume2
- VolumeX
- Repeat
- ArrowUpRight
- Bell
- BookOpen
- ChevronsUp
- ArrowLeft
- Calendar
- XOctagon
- Compass
- BarChart2
- Map
- Gift
- Crop
- CloudLightning
- Move
- ArrowUp
- ArrowDown
- Navigation
- Watch
- Edit2
- Phone
- Package
- User
- Rss
- Code
- Paperclip
- Box
- Feather
- Globe
- Grid
- PhoneCall
- Share2
- Monitor
- Clock
OtherRelated APIs
react-feather#Smartphone JavaScript Examples
The following examples show how to use
react-feather#Smartphone.
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: ContactPage.js From ecomloop.github.io with MIT License | 5 votes |
ContactPageTemplate = ({ body, title, subtitle, featuredImage, address, phone, email, locations }) => ( <main className="Contact"> <PageHeader title={title} subtitle={subtitle} backgroundImage={featuredImage} /> <section className="section Contact--Section1"> <div className="container Contact--Section1--Container"> <div> <Content source={body} /> <div className="Contact--Details"> {address && ( <a className="Contact--Details--Item" href={`https://www.google.com/maps/search/${encodeURI( address )}`} target="_blank" rel="noopener noreferrer" > <MapPin /> {address} </a> )} {phone && ( <a className="Contact--Details--Item" href={`tel:${phone}`}> <Smartphone /> {phone} </a> )} {email && ( <a className="Contact--Details--Item" href={`mailto:${email}`}> <Mail /> {email} </a> )} </div> </div> <div> <FormSimpleAjax name="contact_form" /> </div> </div> </section> <GoogleMap locations={locations} /> </main> )