function SettingsGroup({ title, children }) {
  return (
    <div className="mb-4">
      <div className="px-5 pt-3.5 pb-1.5 font-mono text-[11px] uppercase tracking-[0.08em] text-fg-tertiary">
        {title}
      </div>
      <div className="mx-4 bg-surface border border-line rounded-md overflow-hidden">
        {children}
      </div>
    </div>
  );
}

window.SettingsGroup = SettingsGroup;
