Skip to content

Commit

Permalink
(#5) Adicionando terceiro NavBar
Browse files Browse the repository at this point in the history
  • Loading branch information
ServidioEC committed Sep 13, 2021
1 parent 313faa2 commit 31472cc
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 31472cc

Please sign in to comment.