@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 352 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" viewBox="0 0 24 24" {...props}>
<Path d="M17 4V2.067a.5.5 0 0 1 .82-.384l4.12 3.433a.5.5 0 0 1-.321.884H2V4h15ZM2 18h20v2H2v-2Zm0-7h20v2H2v-2Z" />
</Svg>
);
export default SvgOrderPlayLine;