react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 555 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"
width={24}
height={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;