UNPKG

metax

Version:

Add SEO and other metadata tags to your Gatsby website.

15 lines (11 loc) 256 B
import PropTypes from "prop-types" const fluidIconLink = ({ href, title }) => ({ href, rel: (href || title) && "fluid-icon", title, }) export default fluidIconLink fluidIconLink.propTypes = { href: PropTypes.string, title: PropTypes.string, }