react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 438 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgPagerduty(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M17 3c-1.6-.8-2.7-1-5.2-1H6v12.1h5.8c2.3 0 4-.1 5.5-1.1 1.6-1.1 2.6-3 2.5-5 .1-2.1-1-4-2.8-5zm-4.6 8.6H8.9v-7h3.3c3 0 4.5 1 4.5 3.4.1 2.6-1.8 3.6-4.3 3.6zM6 22h2.9v-5.3H6V22z" fill="currentColor"/>
</Svg>);
}
export default SvgPagerduty;