Skip to content

Commit

Permalink
ひとまず、react-icons/fiに変更
Browse files Browse the repository at this point in the history
  • Loading branch information
nakamuraitsuki committed Apr 10, 2024
1 parent 747f17d commit 4fe2df3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/achievements/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import path from 'path';
import type { Metadata } from 'next';
import Link from 'next/link';
import { FaArrowRight } from 'react-icons/fa';
import { FiArrowRight } from 'react-icons/fi';
import { Doc, getMarkdowns } from '../../utils/markdown';
import style from './list-styles.module.css';

Expand Down Expand Up @@ -44,7 +44,7 @@ export default async function Achievements() {
<p className={style.contents}>{doc.frontmatter.description}</p>
<Link className={style.link} href={`/achievements/${doc.slug}`}>
成績を見る
<FaArrowRight />
<FiArrowRight />
</Link>
</div>
</div>
Expand Down

0 comments on commit 4fe2df3

Please sign in to comment.