“Используйте значки в React” Ответ

реагировать иконки

yarn add react-icons
# or
npm install react-icons --save
Hastings Keith

реагировать иконки

npm install react-icons --save
Grieving Gharial

реагировать иконки

yarn add react-icons

npm install react-icons --save
Lucas Juan

реагировать иконки

// ###### Installation ######
   npm install react-icons --save

// ###### Usage ######
import { FaBeer } from 'react-icons/fa';
class Question extends React.Component {
  render() {
    return <h3> Lets go for a <FaBeer />? </h3>
  }
}
Mehedi Islam Ripon

реагировать значок

import { IconContext } from "react-icons";

<IconContext.Provider value={{ color: "blue", className: "global-class-name" }}>
  <div>
    <FaFolder />
  </div>
</IconContext.Provider>
Rasel Hossain

Используйте значки в React

import { FaBeer } from 'react-icons/fa';

class Question extends React.Component {
    render() {
        return <h3> Lets go for a <FaBeer />? </h3>
    }
}
Adorable Armadillo

Ответы похожие на “Используйте значки в React”

Смотреть популярные ответы по языку

Смотреть другие языки программирования