import type React from 'react'; import { FiX } from 'react-icons/fi'; import { IconButton } from '@meshtastic/components'; export interface SidebarProps { title: string; tagline: string; footer?: JSX.Element; closeSidebar: () => void; children: React.ReactNode; } export const Sidebar = ({ title, tagline, closeSidebar, children, }: SidebarProps): JSX.Element => { return (

{title}

{tagline}

{ closeSidebar(); }} icon={} />
{children ?? (
Please select item
)}
); };