Fixed font size and appearance of logo / docs for docs header
This commit is contained in:
committed by
fabioberger
parent
520c6fa426
commit
bfaaefaf0a
@@ -1,4 +1,4 @@
|
||||
import * as React from 'react';
|
||||
import React from 'react';
|
||||
import styled from 'styled-components';
|
||||
|
||||
interface Props {
|
||||
@@ -6,7 +6,7 @@ interface Props {
|
||||
onClick?: () => void;
|
||||
}
|
||||
|
||||
export const Hamburger: React.FunctionComponent<Props> = (props: Props) => {
|
||||
export const Hamburger: React.FC<Props> = (props: Props) => {
|
||||
return (
|
||||
<StyledHamburger isOpen={props.isOpen} onClick={props.onClick}>
|
||||
<span />
|
||||
|
||||
Reference in New Issue
Block a user