export interface ToggleButtonProps { onClick?: () => void; active?: boolean; } export function ToggleButton(props: ToggleButtonProps) { return ( ); }