react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 516 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgWrapText(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M3 7h18a1 1 0 000-2H3a1 1 0 000 2zm6 8H3a1 1 0 000 2h6a1 1 0 000-2zm9.5-5H3a1 1 0 000 2h15.5a1.5 1.5 0 010 3h-3.09l.3-.29a1 1 0 00-1.42-1.42l-2 2a1 1 0 00-.21.33 1 1 0 000 .76 1 1 0 00.21.33l2 2a1 1 0 001.42 0 1 1 0 000-1.42l-.3-.29h3.09a3.5 3.5 0 000-7z" fill="currentColor"/>
</Svg>);
}
export default SvgWrapText;