remix-icons-rn
Version:
React native implementation for the popular [RemixIcon](https://remixicon.com) open source library. This library is a fork of (https://github.com/ajayesivan/react-native-remix-icon) since it seemed to be no longer maintained for my use case.
14 lines (13 loc) • 548 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgMedalLine = (props) => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
{...props}
>
<Path d="M12 7a8 8 0 1 1 0 16 8 8 0 0 1 0-16m0 2a6 6 0 1 0 0 12 6 6 0 0 0 0-12m0 1.5 1.322 2.68 2.958.43-2.14 2.085.505 2.946L12 17.25l-2.645 1.39.505-2.945-2.14-2.086 2.958-.43zM18 2v3l-1.363 1.138A9.9 9.9 0 0 0 13 5.049L13 2zm-7-.001v3.05a9.9 9.9 0 0 0-3.636 1.088L6 5V2z" />
</Svg>
);
export default SvgMedalLine;