react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 672 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgExpandLeft(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M9.17 10.17a1 1 0 00.71-.29 1 1 0 000-1.42L5.41 4H7a1 1 0 000-2H3a1 1 0 00-.38.08 1 1 0 00-.54.54A1 1 0 002 3v4a1 1 0 002 0V5.41l4.46 4.47a1 1 0 00.71.29zm6.37-1.71a1 1 0 00-1.42 0l-5.66 5.66a1 1 0 000 1.42 1 1 0 00.71.29 1 1 0 00.71-.29l5.66-5.66a1 1 0 000-1.42zM21 16a1 1 0 00-1 1v1.59l-4.46-4.47a1 1 0 10-1.42 1.42L18.59 20H17a1 1 0 000 2h4a1 1 0 00.38-.08 1 1 0 00.54-.54A1 1 0 0022 21v-4a1 1 0 00-1-1z" fill="currentColor"/>
</Svg>);
}
export default SvgExpandLeft;