react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 460 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgPokerDiamondsFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="m4.036 10.734 7.19-8.788a1 1 0 0 1 1.548 0l7.19 8.788a2 2 0 0 1 0 2.533l-7.19 8.787a1 1 0 0 1-1.548 0l-7.19-8.787a2 2 0 0 1 0-2.533" />
</Svg>
);
export default SvgPokerDiamondsFill;