quotes

My favourite quotes. (gatsbyjs)
git clone http://git.hanabi.in/repos/quotes.git
Log | Files | Refs | README | LICENSE

Icon.js (242B)


      1 import React from 'react';
      2 
      3 function Icon({ link, SVG, text }) {
      4   return (
      5     <a href={link} target="_blank" rel="noopener noreferrer">
      6       <span className="screen-reader">{text}</span>
      7       <SVG />
      8     </a>
      9   );
     10 }
     11 
     12 export default Icon;