1
0
Fork 0
freesewing/sites/shared/components/web-link.mjs
2023-07-16 17:15:10 +02:00

5 lines
147 B
JavaScript

export const WebLink = ({ href, txt }) => (
<a href={href} className="underline decoration-2 hover:decoration-4" title={txt}>
{txt}
</a>
)