Skip to content

Commit

Permalink
fix: icon link a11y
Browse files Browse the repository at this point in the history
  • Loading branch information
cwdbutler committed Jan 28, 2024
1 parent c30ba3f commit d06053b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/icon-link/icon-link.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,15 @@ export interface IconLinkProps {

export const IconLink = ({
iconUrl,
iconLabel,
href,
text,
isNewTab,
iconLabel,
}: IconLinkProps) => {
return (
<a
href={href}
target={isNewTab ? "_blank" : undefined}
aria-label={text}
className="group flex flex-col items-center font-sans text-xs font-medium text-[#6B7380] transition-all duration-300 ease-in-out hover:text-inherit sm:flex-row sm:text-xl"
>
<img
Expand Down

0 comments on commit d06053b

Please sign in to comment.