1
0
Fork 0
freesewing/sites/shared/components/web-link.mjs

6 lines
147 B
JavaScript
Raw Normal View History

export const WebLink = ({ href, txt }) => (
2023-07-16 17:15:10 +02:00
<a href={href} className="underline decoration-2 hover:decoration-4" title={txt}>
2022-12-26 17:10:14 +01:00
{txt}
</a>
2022-02-19 17:01:05 +01:00
)