import React from 'react'; import { Text } from 'react-native'; import { useTheme } from '../../theme'; import { getThemedStyles } from './styles'; import type { HeadingProps } from './types'; export default function Heading({ accessibilityRole = 'header', children, level = 6, style, ...rest }: HeadingProps): React.JSX.Element { const theme = useTheme(); const themedStyle = getThemedStyles(theme); return ( {children} ); }