Skip to content

Commit

Permalink
poo
Browse files Browse the repository at this point in the history
  • Loading branch information
SamBWagner committed Oct 18, 2024
1 parent a4722d0 commit f815702
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions UI/app/components/blogCard.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Link from "next/link";
import styles from "./blogCard.module.css";
import { ArrowRightIcon } from '@heroicons/react/24/solid'
import { SlArrowRight } from "react-icons/sl";

export default function BlogCard({
className,
Expand All @@ -17,7 +17,7 @@ export default function BlogCard({
{children}
<div className={styles.cardEnd}>
<p className={styles.releaseDate}>{releaseDate}</p>
<ArrowRightIcon className={`${styles.seeMoreIcon}`} />
<SlArrowRight className={`${styles.seeMoreIcon}`} />
</div>
</article>
</Link>
Expand Down

0 comments on commit f815702

Please sign in to comment.