1
0
Fork 0

feat(shared): Added link components

This commit is contained in:
Joost De Cock 2022-02-19 17:01:05 +01:00
parent daa0c7b488
commit e260d9c634
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,9 @@
const WebLink = ({ href, txt }) => (
<a href={href} className={`
text-lg font-bold text-secondary
hover:text-secondary-focus hover:underline`}
title={txt}>{txt}</a>
)
export default WebLink