react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 422 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgFont(props) {
return (<Svg data-name="Layer 1" viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M21 20h-1V3a1 1 0 00-1-1h-3.5a1 1 0 00-.86.5L4.43 20H3a1 1 0 000 2h4a1 1 0 000-2h-.26l3.5-6H18v6h-1a1 1 0 000 2h4a1 1 0 000-2zm-3-8h-6.59l4.66-8H18z" fill="currentColor"/>
</Svg>);
}
export default SvgFont;