Files
portfolio/components/navigation/AccentLink.tsx
T

12 lines
387 B
TypeScript

import { IconArrowNarrowRight } from '@tabler/icons-react';
import { colors } from '@/constants/colors';
export default function AccentLink({ link, label }: { link: string, label: string }) {
return (
<a href={link} className='flex gap-1 items-center'>
<p style={{ color: colors.accent }}>{label}</p>
<IconArrowNarrowRight color={colors.accent} />
</a>
);
}