import * as React from 'react' import { ColorValue } from 'react-native' import Svg, { Path } from 'react-native-svg' import Colors from 'src/styles/colors' export interface Props { height: number color: ColorValue } function BackChevron({ color, height }: Props) { return ( ) } BackChevron.defaultProps = { height: 16, color: Colors.contentPrimary, } export default BackChevron