Skip to content

Commit

Permalink
(#5) Adicionando terceiro NavBar
Browse files Browse the repository at this point in the history
Co-authored-by: Lucas Boaventura <lucasxboaventura@hotmail.com>
  • Loading branch information
2 people authored and sergiosacj committed Sep 17, 2021
1 parent 3d2e484 commit eb07f7b
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions frontend/src/components/NavBar/ThirdNavBar/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import React from 'react';
import { FiArrowLeft } from 'react-icons/fi';

import { NavBarContainer } from 'components/NavBar/styles';

const ThirdNavBar: React.FC = () => {
return (
<NavBarContainer>
<section>
<FiArrowLeft />
<span>Voltar</span>
</section>
</NavBarContainer>
);
};

export default ThirdNavBar;

0 comments on commit eb07f7b

Please sign in to comment.