We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9183974 commit 70aa721Copy full SHA for 70aa721
src/components/Tiles/ExperienceTile.tsx
@@ -1,4 +1,4 @@
1
-import { Icon } from '@iconify/react';
+import { ChevronRight } from 'lucide-react';
2
3
import { RecordTile } from '@/components/Tiles/RecordTile';
4
@@ -24,9 +24,7 @@ export function ExperienceTile({
24
<ul className="list-inside list-none space-y-1 text-gray-700 dark:text-gray-300">
25
{responsibilities.map((responsibility, index) => (
26
<li key={index}>
27
- <span className="mr-1 inline-block align-middle">
28
- {<Icon icon={'icons8:angle-right'} inline={true} />}
29
- </span>
+ {<ChevronRight className="mr-0.25 inline-block h-4 w-4 align-middle md:h-5 md:w-5" />}
30
{responsibility}
31
</li>
32
))}
0 commit comments