how to style link in gatsby code example
Example: how to pass props in gatsby link using styledcomponent
import { Link } from 'gatsby';
const StyledLink = styled(props => )`
color: aqua;
`;
// ...
Gatsby
import { Link } from 'gatsby';
const StyledLink = styled(props => )`
color: aqua;
`;
// ...
Gatsby