React-icons 사용법

T_Jun·2022년 7월 22일
0

React

목록 보기
1/1
post-thumbnail

1. 설치 방법

npm install react-icons --save

2. 아이콘 찾기

react-icons 접속
https://react-icons.github.io/react-icons

이 링크에서 원하는 아이콘을 찾는다.

3. import 하기


IoMdSubway라는 아이콘을 예시로 들어보자.

import { IoMdSubway } from "react-icons/io";

{} 안에 본인이 쓸 아이콘 이름을 적고 "react-icons/"뒤에 아이콘의 앞 두글자를 소문자로 적는다.
즉 {}안에 IoMdSubway를 적고 IoMdSubway의 앞 두글자인 io를 "react-icons/"뒤에 소문자로 적는다.

4. icon의 옵션

React 16.3 이상 버전에서만 가능하다.

Key기본값설명
colorundefined(inherit)
size1em
classNameundefined
styleundefined크기와 색상을 덮어 쓸 수 있습니다.
attrundefined다른 속성으로 덮어써질 수 있습니다.
titleundefined아이콘 설명

예시

<IoMdSubway size="40" color="#555"/>

결과는 아래와 같다.

참고
https://github.com/react-icons/react-icons

profile
학부

0개의 댓글