import { Gtk } from 'astal/gtk3';
import {
BluetoothButton,
MicrophoneButton,
NotificationsButton,
PlaybackButton,
WifiButton,
} from './ControlButtons';
export const Controls = ({ isEnabled }: ControlsProps): JSX.Element => {
if (!isEnabled) {
return ;
}
return (
);
};
interface ControlsProps {
isEnabled: boolean;
}