import { FC, ReactNode } from 'react'; import { Column, Text } from '../../../../common'; interface NavigatorRoomSettingsSectionViewProps { title?: string; gap?: 1 | 2 | 3; className?: string; children: ReactNode; } export const NavigatorRoomSettingsSectionView: FC = props => { const { title = null, gap = 2, className = '', children = null } = props; return ( { title && { title } } { children } ); };