/* tslint:disable */ /* eslint-disable */ import React, { FunctionComponent } from 'react'; import { ViewProps } from 'react-native'; import { Svg, GProps, Path } from 'react-native-svg'; import { getIconColor } from './helper'; interface Props extends GProps, ViewProps { size?: number; color?: string | string[]; } let ArrowLeft: FunctionComponent = ({ size, color, ...rest }) => { return ( ); }; ArrowLeft.defaultProps = { size: 18, }; ArrowLeft = React.memo ? React.memo(ArrowLeft) : ArrowLeft; export default ArrowLeft;