react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 620 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgMedal(props) {
return (<Svg data-name="Layer 1" viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M21.38 5.76a1 1 0 00-.47-.61l-5.2-3a1 1 0 00-1.37.36L12 6.57 9.66 2.51a1 1 0 00-1.37-.36l-5.2 3a1 1 0 00-.47.61 1 1 0 00.1.75l4 6.83A5.91 5.91 0 006 16a6 6 0 1011.34-2.72l3.9-6.76a1 1 0 00.14-.76zM5 6.38l3.46-2L11.68 10A5.94 5.94 0 008 11.58zM12 20a4 4 0 01-4-4 4 4 0 014-4 4 4 0 110 8zm4-8.45a5.9 5.9 0 00-1.86-1.15l-.98-1.83 2.42-4.19 3.46 2z" fill="currentColor"/>
</Svg>);
}
export default SvgMedal;