react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 434 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgPlayReverseMiniFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M16.248 5.439 5.74 11.569a.5.5 0 0 0 0 .863l10.508 6.13A.5.5 0 0 0 17 18.13V5.87a.5.5 0 0 0-.752-.431" />
</Svg>
);
export default SvgPlayReverseMiniFill;