yarn add react-icons
npm install react-icons
공식문서에서 원하는 아이콘 검색

원하는 아이콘을 import하여 사용
프로젝트에서 활용한 아이콘 예시

return user ? (
<Div>
{user.avatar ? <Img src={user.avatar} /> : <CgProfile />}
<Button onClick={handleLogout}>로그아웃</Button>
</Div>
) : (
<div></div>
);
return user ? (
<Div>
{user.avatar ? <Img src={user.avatar} /> : <Profile />}
<Button onClick={handleLogout}>로그아웃</Button>
</Div>
) : (
<div></div>
);
.
.
.
const Profile = styled(CgProfile)`
border: none;
border-radius: 20px;
width: 35px;
height: 35px;
background-size: cover;
margin: 0 10px;
cursor: pointer;
`;