aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/links/social-link.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/links/social-link.tsx')
-rw-r--r--src/components/atoms/links/social-link.tsx6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/components/atoms/links/social-link.tsx b/src/components/atoms/links/social-link.tsx
index d0719a3..9f8feb6 100644
--- a/src/components/atoms/links/social-link.tsx
+++ b/src/components/atoms/links/social-link.tsx
@@ -23,7 +23,7 @@ export type SocialLinkProps = {
*
* Render a social icon link.
*/
-const SocialLink: FC<SocialLinkProps> = ({ name, url }) => {
+export const SocialLink: FC<SocialLinkProps> = ({ name, url }) => {
/**
* Retrieve a social link icon by id.
* @param {string} id - The social website id.
@@ -44,10 +44,8 @@ const SocialLink: FC<SocialLinkProps> = ({ name, url }) => {
};
return (
- <a href={url} className={styles.link} aria-label={name}>
+ <a aria-label={name} className={styles.link} href={url}>
{getIcon(name)}
</a>
);
};
-
-export default SocialLink;