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

10 lines
204 B
JavaScript
Raw Normal View History

2022-02-19 17:01:05 +01:00
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