/* 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 Circle: FunctionComponent = ({ size, color, ...rest }) => { return ( ); }; Circle.defaultProps = { size: 18, }; Circle = React.memo ? React.memo(Circle) : Circle; export default Circle;