react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 548 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgLeftIndent(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M3 7h18a1 1 0 000-2H3a1 1 0 000 2zm0 4h10a1 1 0 000-2H3a1 1 0 000 2zm18.77-1.31a1 1 0 00-1.41-.12l-2 1.66a1 1 0 000 1.54l2 1.66a1 1 0 00.64.24 1 1 0 00.77-.36 1 1 0 00-.13-1.41l-1.08-.9 1.08-.9a1 1 0 00.13-1.41zM21 17H3a1 1 0 000 2h18a1 1 0 000-2zM3 15h10a1 1 0 000-2H3a1 1 0 000 2z" fill="currentColor"/>
</Svg>);
}
export default SvgLeftIndent;