react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 411 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgAnalysis(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M21.71 7.29a1 1 0 00-1.42 0L14 13.59l-4.29-4.3a1 1 0 00-1.42 0l-6 6a1 1 0 000 1.42 1 1 0 001.42 0L9 11.41l4.29 4.3a1 1 0 001.42 0l7-7a1 1 0 000-1.42z" fill="currentColor"/>
</Svg>);
}
export default SvgAnalysis;