Files
portfolio/components/navigation/AccentLink.tsx
T
2026-05-28 17:50:49 -07:00

12 lines
506 B
TypeScript

import { IconArrowNarrowRight } from '@tabler/icons-react';
import { colors } from '@/constants';
export default function AccentLink({ link, label, download }: { link: string, label: string, download?: boolean }) {
return (
<a href={link} download={download} className='flex gap-1 items-center hover:translate-x-2 hover:scale-110 transition-transform duration-200 w-fit'>
<p style={{ color: colors.accent }}>{label}</p>
<IconArrowNarrowRight color={colors.accent} />
</a>
);
}