import { ReactNode } from "react"; export function SettingsPageHeader({ title, description, action, }: { title: string | ReactNode; description: string | ReactNode; action?: ReactNode; }) { return (

{title}

{description}
{action &&
{action}
}
); }