This library provides the FontAwesomeIcon
and FontAwesomeLayer
components, which
can be used to use FontAwesome icons within your project.
npm install astro-fontawesome
<FontAwesomeIcon icon={faStar} class="star-class" />
<FontAwesomeLayer
icons={[
{ icon: faCircle, class: 'circle-class' },
{ icon: faMap, class: 'map-class' }
]}
class="layer-class"
/>
To be filled out.
This library was made primarily through code sourced with permission by Gilles Marchand in this thread.