반응형
1. React icon, Styled Components 설치
yarn add react-icons styled-components
2. React icon에서 사용할 아이콘 import
import { FaHeart } from 'react-icons/fa';
3. Styled Compoenets를 사용해 아이콘에 스타일 적용
import React from 'react';
import { FaHeart } from 'react-icons/fa';
import styled from 'styled-components';
const Heart = () => {
return (
<>
<StyledIcon />
<>
);
};
export default Heart;
const StyledIcon = styled(FaHeart)`
color: red;
font-size: 24px;
`;
반응형
'Front-End > React' 카테고리의 다른 글
[React] 리액트에서 Styled Components Global Style, Theme 설정하기 (0) | 2023.05.30 |
---|---|
[React] 리액트에서 Airbnb ESLint + Prettier 설정하기 (0) | 2023.05.27 |
[React] Flux 패턴 알아보기 (0) | 2023.04.26 |
[React] SPA와 MPA 간단하게 알아보기 (3) | 2023.04.25 |
[React] 양방향 바인딩과 단방향 바인딩 간단하게 알아보기 (0) | 2023.04.24 |