@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 379 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgPlayLine = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M16.394 12 10 7.737v8.526L16.394 12Zm2.982.416L8.777 19.482A.5.5 0 0 1 8 19.066V4.934a.5.5 0 0 1 .777-.416l10.599 7.066a.5.5 0 0 1 0 .832Z" />
</Svg>
);
export default SvgPlayLine;