From eb07f7b6c235d31992ac9a3c13c9548f4f3e1ddf Mon Sep 17 00:00:00 2001 From: ServidioEC <52542729+ServidioEC@users.noreply.github.com> Date: Sun, 12 Sep 2021 22:54:54 -0300 Subject: [PATCH] (#5) Adicionando terceiro NavBar Co-authored-by: Lucas Boaventura --- .../src/components/NavBar/ThirdNavBar/index.tsx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 frontend/src/components/NavBar/ThirdNavBar/index.tsx diff --git a/frontend/src/components/NavBar/ThirdNavBar/index.tsx b/frontend/src/components/NavBar/ThirdNavBar/index.tsx new file mode 100644 index 0000000..3962d93 --- /dev/null +++ b/frontend/src/components/NavBar/ThirdNavBar/index.tsx @@ -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 ( + +
+ + Voltar +
+
+ ); +}; + +export default ThirdNavBar;