@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 729 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="M16 18.3915V5.60846L5.77359 12L16 18.3915ZM18 3.80421V20.1957C18 20.9812 17.136 21.46 16.47 21.0437L3.3568 12.848C2.73013 12.4563 2.73013 11.5436 3.3568 11.152L16.47 2.95621C17.1361 2.53993 18 3.01878 18 3.80421Z"/>
</Svg>);
};
Icon.displayName = 'PlayReverseLargeLine';
/**
* Remix Icon: Play Reverse Large Line
* @see {@link https://remixicon.com/icon/play-reverse-large-line Remix Icon Docs}
*/
export const PlayReverseLargeLine = memo(Icon);