import type { ReactNode } from "react"; import { cn } from "@/lib/cn"; export const SectionGroup = ({ title, children, disabled = false, }: { title: string; children: ReactNode; disabled?: boolean; }) => (

{title}

{children}
); export const SettingsBottomBar = ({ children }: { children: ReactNode }) => ( <>
{children}
);