react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 584 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgLeftIndentAlt(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M9 5a1 1 0 00-1 1v12a1 1 0 002 0V6a1 1 0 00-1-1zm4 2h8a1 1 0 000-2h-8a1 1 0 000 2zM5.77 9.69a1 1 0 00-1.41-.13l-2 1.67a1 1 0 000 1.54l2 1.67a1 1 0 001.41-.13 1 1 0 00-.13-1.41L4.56 12l1.08-.9a1 1 0 00.13-1.41zM21 9h-8a1 1 0 000 2h8a1 1 0 000-2zm0 4h-8a1 1 0 000 2h8a1 1 0 000-2zm0 4h-8a1 1 0 000 2h8a1 1 0 000-2z" fill="currentColor"/>
</Svg>);
}
export default SvgLeftIndentAlt;