react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 612 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgServicemark(props) {
return (<Svg data-name="Layer 1" viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M5.5 9h4a1 1 0 000-2h-4a3 3 0 000 6h2a1 1 0 010 2h-4a1 1 0 000 2h4a3 3 0 000-6h-2a1 1 0 010-2zm15.92-1.38a1 1 0 00-.54-.54 1 1 0 00-.76 0 1 1 0 00-.33.21L17 10.09l-2.79-2.8a1 1 0 00-.33-.21 1 1 0 00-.76 0 1 1 0 00-.54.54 1 1 0 00-.08.38v8a1 1 0 002 0v-5.59l1.79 1.8a1 1 0 001.42 0l1.79-1.8V16a1 1 0 002 0V8a1 1 0 00-.08-.38z" fill="currentColor"/>
</Svg>);
}
export default SvgServicemark;