hextastudio/ui needs your support to stay running 🫶 Help us
Bottom Navigation
Bottom navigation is a UI component that provides navigation between different sections of an app.
tsx
import { FaHome, FaUser } from "react-icons/fa";
import { FaBell } from "react-icons/fa";
import { MdEmail } from "react-icons/md";
import { FaSearch } from "react-icons/fa";
import { useState } from "react";
export const BottomNavigation = () => {
const [active, setActive] = useState(0);
const handleActive = (index: number) => {