type SettingsSectionTitleProps = { title: string | React.ReactNode; description: string | React.ReactNode; }; export default function SettingsSectionTitle({ title, description, }: SettingsSectionTitleProps) { return (

{title}

{description}

); }