react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 426 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgVipCrownLine(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M2 19h20v2H2v-2zM2 5l5 3.5L12 2l5 6.5L22 5v12H2V5zm2 3.841V15h16V8.841l-3.42 2.394L12 5.28l-4.58 5.955L4 8.84z" />
</Svg>
);
}
export default SvgVipCrownLine;