react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 326 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgText(props) {
return (<Svg data-name="Layer 1" viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M17 6H7a1 1 0 000 2h4v9a1 1 0 002 0V8h4a1 1 0 000-2z" fill="currentColor"/>
</Svg>);
}
export default SvgText;