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 80f924f commit 7957654Copy full SHA for 7957654
components/LanguageButton.tsx
@@ -8,7 +8,7 @@ function LanguageButton({ language }: { language: string }) {
8
const url = `https://cdn.simpleicons.org/${language.toLowerCase()}/default`;
9
return (
10
<Link href={`/repos/${language.toLowerCase()}`}>
11
- <Button>{language} <img className='ml-1 h-5 w-5' src={url} /></Button>
+ <Button> <img className='mr-1 h-5 w-5' src={url} alt={language}/> {language}</Button>
12
</Link>
13
);
14
}
0 commit comments