UNPKG

gatsby-remark-dictionary

Version:

Create a dictionary of word and phrases to be converted to highlighted values and links. define once and all phrases will be converted during build time.

16 lines (13 loc) 294 B
import * as React from 'react'; const AnchorTag = ({ children: link, ...props }) => { if (link) { return ( <a href={props.href} target="_blank" rel="noopener noreferrer"> {link} </a> ); } else { return null; } }; export default AnchorTag;