import React from 'react'; import type { ScreenSectionProps } from '../../../../types/section'; import { View } from '../../../layout/public'; import { withZoraThemeScope } from '../../../theme/adapters/inbound/withZoraThemeScope'; import { SectionHeader } from './SectionHeader'; function ScreenSectionInner({ themeId: _themeId, mode: _mode, interactionPolicy: _interactionPolicy, title, description, actions, children, testID, }: ScreenSectionProps) { return ( {title ? : null} {children} ); } /*** Screen section with optional heading, description, actions, and content. */ export const ScreenSection = withZoraThemeScope(ScreenSectionInner);