Skip to content

Commit 70aa721

Browse files
committed
style: replace Iconify icon with lucide-react icon in ExperienceTile for better visibility
1 parent 9183974 commit 70aa721

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/components/Tiles/ExperienceTile.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Icon } from '@iconify/react';
1+
import { ChevronRight } from 'lucide-react';
22

33
import { RecordTile } from '@/components/Tiles/RecordTile';
44

@@ -24,9 +24,7 @@ export function ExperienceTile({
2424
<ul className="list-inside list-none space-y-1 text-gray-700 dark:text-gray-300">
2525
{responsibilities.map((responsibility, index) => (
2626
<li key={index}>
27-
<span className="mr-1 inline-block align-middle">
28-
{<Icon icon={'icons8:angle-right'} inline={true} />}
29-
</span>
27+
{<ChevronRight className="mr-0.25 inline-block h-4 w-4 align-middle md:h-5 md:w-5" />}
3028
{responsibility}
3129
</li>
3230
))}

0 commit comments

Comments
 (0)