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) • 526 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgVipDiamondLine = (props) => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
{...props}
>
<Path d="M4.878 3.003h14.254a1 1 0 0 1 .809.412l3.822 5.256a.5.5 0 0 1-.037.633l-11.354 12.3a.5.5 0 0 1-.706.029q-.01-.01-11.383-12.329a.5.5 0 0 1-.037-.633l3.823-5.256a1 1 0 0 1 .809-.412m.509 2-2.8 3.849 9.418 10.202 9.417-10.202-2.8-3.85z" />
</Svg>
);
export default SvgVipDiamondLine;