@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 383 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgTrophyFill = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M13.005 16.941v2.062h5v2h-12v-2h5V16.94a8.001 8.001 0 0 1-7-7.938v-6h16v6a8.001 8.001 0 0 1-7 7.938Zm-12-11.938h2v4h-2v-4Zm20 0h2v4h-2v-4Z" />
</Svg>
);
export default SvgTrophyFill;