react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 539 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgCompressPoint(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M21.71 20.29L15.41 14H17a1 1 0 000-2h-3.59l5.66-5.66a1 1 0 10-1.41-1.41L12 10.59V7a1 1 0 00-2 0v1.59l-6.29-6.3a1 1 0 00-1.42 1.42L8.59 10H7a1 1 0 000 2h3.59l-5.66 5.66a1 1 0 000 1.41 1 1 0 001.41 0L12 13.41V17a1 1 0 002 0v-1.59l6.29 6.3a1 1 0 001.42 0 1 1 0 000-1.42z" fill="currentColor"/>
</Svg>);
}
export default SvgCompressPoint;