react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 454 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgTrophyLine = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M13.005 16.94v2.063h5v2h-12v-2h5V16.94a8 8 0 0 1-7-7.938v-6h16v6a8 8 0 0 1-7 7.938m-7-11.937v4a6 6 0 1 0 12 0v-4zm-5 0h2v4h-2zm20 0h2v4h-2z" />
</Svg>
);
export default SvgTrophyLine;