import React from "react";
const StatusBar = ({ togglePanel, panelVisible }) => {
return (
{/* Left Section of the Status Bar */}
{/* Branch Indicator */}
{/* Error Indicator */}
{/* Toggle Terminal Button */}
{/* Right Section of the Status Bar */}
{/* Line and Column Indicator */}
Ln 1, Col 1
{/* Spaces Indicator */}
Spaces: 2
{/* Encoding Indicator */}
UTF-8
{/* Connection Status */}
{/* Bell Icon */}
);
};
export default StatusBar;