import * as React from 'react' export interface SettingsNavItem { id: string label: string href: string icon?: React.ElementType } export interface SettingsLayoutProps { children: React.ReactNode title?: string description?: string } export function SettingsLayout({ children, title, description }: SettingsLayoutProps) { return (
{title && (

{title}

{description &&

{description}

}
)} {children}
) }