@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 640 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="M21 3a1 1 0 0 1 1 1v16.007a1 1 0 0 1-.992.993H2.992A.993.993 0 0 1 2 20.007V19h18V7.3l-8 7.2-10-9V4a1 1 0 0 1 1-1zM8 15v2H0v-2zm-3-5v2H0v-2zm14.566-5H4.434L12 11.81z"/>
</Svg>);
});
Icon.displayName = 'MailSendLine';
/**
* Remix Icon: Mail Send Line
* @see {@link https://remixicon.com/icon/mail-send-line Remix Icon Docs}
*/
export const MailSendLine = Icon;