XeNote/components/SocialLinks/SocialLink.js

10 lines
150 B
JavaScript
Raw Normal View History

2023-12-29 23:20:43 +00:00
export function SocialLink({ SvgElement, link = "#" }) {
return (
2024-01-01 03:10:16 +00:00
<div>
2023-12-29 23:20:43 +00:00
<a href={link}>
{SvgElement}
</a>
2024-01-01 03:10:16 +00:00
</div >
2023-12-29 23:20:43 +00:00
)
}