@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 687 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M18 20.1957V3.80421C18 3.01878 17.1361 2.53993 16.47 2.95621L3.3568 11.152C2.73013 11.5436 2.73013 12.4563 3.3568 12.848L16.47 21.0437C17.136 21.46 18 20.9812 18 20.1957Z"/>
</Svg>);
};
Icon.displayName = 'PlayReverseLargeFill';
/**
* Remix Icon: Play Reverse Large Fill
* @see {@link https://remixicon.com/icon/play-reverse-large-fill Remix Icon Docs}
*/
export const PlayReverseLargeFill = memo(Icon);