import * as React from 'react'; import {Text} from 'react-native'; import {Style} from 'twrnc/dist/esm/types'; import {TailwindFn} from 'twrnc'; type Props = { tw: TailwindFn; style?: Style; children: string; }; const H3 = ({tw, style, children}: Props): JSX.Element => { const defaultStyles = tw`font-medium text-lg text-gray-700`; return ( {children} ); }; export default H3;