import { Box, Button } from "@chakra-ui/react" import { FaVolcano } from "react-icons/fa6"; import { createIcon } from "@chakra-ui/react"; import { useState } from "react" // ICONS export const PushPin = createIcon({ displayName: "PushPin", viewBox: "0 0 24 24", fill: "none", path: ( <> ), }); export const Globe = createIcon({ displayName: "Globe", viewBox: "0 0 24 24", fill: "none", path: ( <> ), }); export const MapMarker = createIcon({ displayName: "MapMarker", viewBox: "0 0 24 24", fill: "none", path: ( <> ), }); export const Users = createIcon({ displayName: "Users", viewBox: "0 0 24 24", fill: "none", path: ( <> ), }); export const Close = createIcon({ displayName: "Close", viewBox: "0 0 24 24", fill: "none", path: ( <> ), }); export default function Sidebar () { return ( ); }