FontAwesome 아이콘

cook_pasta·2024년 9월 6일

React

목록 보기
1/7

React 프로젝트에서 FontAwesome CDN 추가하기

1. public/index.html 파일 열기

node_modules에도 index.html이 있는데 여긴 아님.

2.<head> 태그 내부에 다음 코드를 추가:
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>

2. FontAwesome 아이콘 사용

<i className="fas fa-user"></i>  {/* 사용자 아이콘 */}
<i className="fas fa-bell"></i>  {/* 알림 아이콘 */}
<i className="fab fa-instagram"></i> {/* 인스타 아이콘 */}
 <i className="fab fa-google"></i> {/* 구글 아이콘 */}

https://fontawesome.com/

0개의 댓글