Skip to content

Commit

Permalink
Improve search end emoji by using svg icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaewoook committed Aug 14, 2022
1 parent 94c62e8 commit 92e9ab6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import {
Typography,
} from "antd";
import {
CheckCircleTwoTone,
CheckCircleFilled,
CheckCircleOutlined,
GithubFilled,
Expand Down Expand Up @@ -289,7 +290,9 @@ export const App = (props: Props) => {
<Spinner />
) : isEnd ? (
<ListEnd>
<Typography.Text>✅ 모든 검색 결과를 확인했습니다!</Typography.Text>
<Typography.Text>
<CheckCircleTwoTone twoToneColor="#3CB043" /> 모든 검색 결과를 확인했습니다!
</Typography.Text>
</ListEnd>
) : null}
</Content>
Expand Down

0 comments on commit 92e9ab6

Please sign in to comment.