import * as React from 'react'; import { TouchableWithoutFeedback, View } from 'react-native'; import Svg, { Path } from 'react-native-svg'; import { mainColors, typographyGuide } from '../../primitives'; import { Row, VerticalSpacer } from '../Helpers'; import Typography from '../Typography'; import { BackProps } from './types'; const Back: React.FC = ({ color, heading, onPress, rightElement, textStyle = typographyGuide.back.heading, }) => ( {heading && ( {heading} )} {rightElement ?? null} ); export default Back;