import React from 'react' import { RowOne, RowTwo, RowThree, StyledBurger, } from './styled' type Props = { isOpen: boolean, toggle: () => void, } export const Burger = ( { isOpen, toggle }: Props, ) => ( )