react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 475 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgUserMinus(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M21 10.5h-4a1 1 0 000 2h4a1 1 0 000-2zm-7.7 1.72A4.92 4.92 0 0015 8.5a5 5 0 00-10 0 4.92 4.92 0 001.7 3.72A8 8 0 002 19.5a1 1 0 002 0 6 6 0 0112 0 1 1 0 002 0 8 8 0 00-4.7-7.28zM10 11.5a3 3 0 113-3 3 3 0 01-3 3z" fill="currentColor"/>
</Svg>);
}
export default SvgUserMinus;