@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 571 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M17 4V2.068a.5.5 0 0 1 .82-.385l4.12 3.433a.5.5 0 0 1-.321.884H2V4zM2 18h20v2H2zm0-7h20v2H2z"/>
</Svg>);
});
Icon.displayName = 'OrderPlayFill';
/**
* Remix Icon: Order Play Fill
* @see {@link https://remixicon.com/icon/order-play-fill Remix Icon Docs}
*/
export const OrderPlayFill = Icon;