react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 533 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgPresentationMinus(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M10 10h4a1 1 0 000-2h-4a1 1 0 000 2zm11 4h-1V4h1a1 1 0 000-2H3a1 1 0 000 2h1v10H3a1 1 0 000 2h8v1.15l-4.55 3A1 1 0 007 22a.94.94 0 00.55-.17L11 19.55V21a1 1 0 002 0v-1.45l3.45 2.28A.94.94 0 0017 22a1 1 0 00.55-1.83l-4.55-3V16h8a1 1 0 000-2zm-3 0H6V4h12z" fill="currentColor"/>
</Svg>);
}
export default SvgPresentationMinus;