Skip to content

Commit

Permalink
(#5) Adicionando segundo NavBar
Browse files Browse the repository at this point in the history
  • Loading branch information
ServidioEC committed Sep 13, 2021
1 parent 70dc5bb commit 66b3b4f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions frontend/src/components/NavBar/SecondNavBar/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import React from 'react';
import { FiArrowLeft } from 'react-icons/fi';

import { SecondNavBarContainer, SecondNameContainer } from 'components/NavBar/SecondNavBar/styles';

const SecondNavBar: React.FC = () => {
return (
<SecondNavBarContainer>
<section>
<FiArrowLeft />
<span>Voltar</span>
</section>

<SecondNameContainer>
<span>Pedido Vazio</span>
</SecondNameContainer>
</SecondNavBarContainer>
);
};

export default SecondNavBar;

0 comments on commit 66b3b4f

Please sign in to comment.