()
| 7 | import logo from '../../assets/linaria-logo.svg'; |
| 8 | |
| 9 | export default function Header() { |
| 10 | return ( |
| 11 | <NavBar> |
| 12 | <LogoImage src={logo} alt="Linaria Logo" /> |
| 13 | <Links> |
| 14 | <li> |
| 15 | <LinkItem href="https://github.com/callstack/linaria#features"> |
| 16 | Features |
| 17 | </LinkItem> |
| 18 | </li> |
| 19 | <li> |
| 20 | <LinkItem |
| 21 | target="_blank" |
| 22 | rel="noopener noreferrer" |
| 23 | href="https://github.com/callstack/linaria/tree/master/docs" |
| 24 | > |
| 25 | Docs |
| 26 | </LinkItem> |
| 27 | </li> |
| 28 | <li> |
| 29 | <LinkItem |
| 30 | target="_blank" |
| 31 | rel="noopener noreferrer" |
| 32 | href="https://github.com/callstack/linaria" |
| 33 | title="GitHub" |
| 34 | > |
| 35 | GitHub |
| 36 | </LinkItem> |
| 37 | </li> |
| 38 | </Links> |
| 39 | </NavBar> |
| 40 | ); |
| 41 | } |
| 42 | |
| 43 | const NavBar = styled(Container)` |
| 44 | display: flex; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…