유용한 React 라이브러리들 (계속 추가)

Yerim Son·2024년 2월 22일
0

▷ React Icons

- 설치

yarn
yarn add react-icons

npm
npm install react-icons --save

- 사용 예시

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

function Question() {
  return (
    <h3>
      Lets go for a <FaBeer />?
    </h3>
  );
}

사이트
https://www.npmjs.com/package/react-icons
https://react-icons.github.io/react-icons/

0개의 댓글