react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 455 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgAlignLetterRight(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M10 4h11a1 1 0 000-2H10a1 1 0 000 2zm11 16H3a1 1 0 000 2h18a1 1 0 000-2zm0-14H3a1 1 0 000 2h18a1 1 0 000-2zm0 10H11a1 1 0 000 2h10a1 1 0 000-2zm0-6H3a1 1 0 000 2h18a1 1 0 000-2z" fill="currentColor"/>
</Svg>);
}
export default SvgAlignLetterRight;