@fortawesome/free-brands-svg-icons#faAlgolia JavaScript Examples
The following examples show how to use
@fortawesome/free-brands-svg-icons#faAlgolia.
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: PoweredBy.js From climatescape.org with MIT License | 6 votes |
export default function PoweredBy() {
return (
<div className="leading-8 text-left inline-block pl-4 border-t border-gray-300 rounded-b-sm justify-center flex text-gray-700">
<span className="inline-block">
<a href="https://algolia.com">
<FontAwesomeIcon icon={faAlgolia} className="mr-2 text-indigo-500" />
<span>powered by Aloglia</span>
</a>
</span>
</div>
)
}
Example #2
Source File: Hits.js From climatescape.org with MIT License | 5 votes |
PoweredBy = () => (
<a href="https://algolia.com" className="p-1">
<FontAwesomeIcon icon={faAlgolia} className="mr-1 text-indigo-500" />
<span>powered by Aloglia</span>
</a>
)