react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 413 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgOrderPlayLine = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M17 4V2.068a.5.5 0 0 1 .82-.385l4.12 3.433a.5.5 0 0 1-.321.884H2V4zM2 18h20v2H2zm0-7h20v2H2z" />
</Svg>
);
export default SvgOrderPlayLine;