@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 759 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="m20 7.238-7.928 7.1L4 7.216V19h7.07c.102.706.308 1.378.604 2H3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h18a1 1 0 0 1 1 1v8.255a7 7 0 0 0-2-.965zM19.501 5H4.511l7.55 6.662zm-2.794 15.708a3 3 0 0 0 4.001-4.001zm-1.415-1.415 4.001-4a3 3 0 0 0-4.001 4.001M18 23a5 5 0 1 1 0-10 5 5 0 0 1 0 10"/>
</Svg>);
});
Icon.displayName = 'MailForbidLine';
/**
* Remix Icon: Mail Forbid Line
* @see {@link https://remixicon.com/icon/mail-forbid-line Remix Icon Docs}
*/
export const MailForbidLine = Icon;