From c4d3dd45a8ce43f1ae7a4393285f684b336ab24b Mon Sep 17 00:00:00 2001 From: Violet Caulfield Date: Sat, 23 Nov 2024 08:28:56 -0600 Subject: [PATCH] add icon to home tab --- components/tabs.tsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/components/tabs.tsx b/components/tabs.tsx index 90228228..cb31a474 100644 --- a/components/tabs.tsx +++ b/components/tabs.tsx @@ -1,13 +1,22 @@ import React from "react"; import { createBottomTabNavigator } from '@react-navigation/bottom-tabs'; import Home from "./Home/component"; +import MaterialCommunityIcons from "react-native-vector-icons/MaterialCommunityIcons"; const Tab = createBottomTabNavigator(); export function Tabs() { return ( - + ( + + ) + }} + /> ) } \ No newline at end of file