“Agregar fuente impresionante con nextjs” Código de respuesta

Fontaweam en el próximo JS

// installation
npm install @fortawesome/fontawesome-svg-core @fortawesome/free-brands-svg-icons @fortawesome/free-solid-svg-icons @fortawesome/react-fontawesome

//_app.js 
import '@fortawesome/fontawesome-svg-core/styles.css'; //importing font awesome css
import { config } from '@fortawesome/fontawesome-svg-core';
config.autoAddCss = false; // Tell Font Awesome to skip adding the CSS automatically since it's being imported above

// component.js
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';

// for brand icons
import {
  faYoutube,
  faFacebook,
  faTwitter,
  faInstagram
} from "@fortawesome/free-brands-svg-icons";

// for solid icons
import {faSearch} from "@fortawesome/free-solid-svg-icons"


<FontAwesomeIcon icon={faFacebook} />// use like this
Average Anteater

Agregar fuente impresionante con nextjs

import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';

<FontAwesomeIcon icon={['fab', 'github']} />
Gleaming Grasshopper

Respuestas similares a “Agregar fuente impresionante con nextjs”

Preguntas similares a “Agregar fuente impresionante con nextjs”

Más respuestas relacionadas con “Agregar fuente impresionante con nextjs” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código