UNPKG

gitdocs

Version:

Easy to use, SEO-friendly, beautiful documentation that lives in your git repo.

20 lines (18 loc) 415 B
import React from 'react' import { Link } from 'react-router-dom' import { Wrapper, CustomLogo, GeneratedLogo, } from './styles' export default function (props) { return ( <Wrapper> <Link to={props.url}> {props.logo ? <CustomLogo><img src={`/${props.logo}`} alt="Logo" /></CustomLogo> : <GeneratedLogo>{props.title}</GeneratedLogo>} </Link> </Wrapper> ) }