react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 559 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgRightIndentAlt(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M3.64 9.56a1 1 0 10-1.28 1.54l1.08.9-1.08.9a1 1 0 00-.13 1.41 1 1 0 001.41.13l2-1.67a1 1 0 000-1.54zM9 5a1 1 0 00-1 1v12a1 1 0 002 0V6a1 1 0 00-1-1zm4 2h8a1 1 0 000-2h-8a1 1 0 000 2zm8 10h-8a1 1 0 000 2h8a1 1 0 000-2zm0-8h-8a1 1 0 000 2h8a1 1 0 000-2zm0 4h-8a1 1 0 000 2h8a1 1 0 000-2z" fill="currentColor"/>
</Svg>);
}
export default SvgRightIndentAlt;