@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 556 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const PlayFill = /* @__PURE__ */ memo(function PlayFill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M19.376 12.416 8.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 .832"/>
</Svg>);
});
/**
* Remix Icon: Play Fill
* @see {@link https://remixicon.com/icon/play-fill Remix Icon Docs}
*/
export { PlayFill };