/* eslint-disable */ import React from 'react'; import { Svg, Path } from 'react-native-svg'; import { getIconColor } from './helper'; let IconYaoqingma = ({ size, color, ...rest }) => { return ( ); }; IconYaoqingma.defaultProps = { size: 18, }; IconYaoqingma = React.memo ? React.memo(IconYaoqingma) : IconYaoqingma; export default IconYaoqingma;