@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 791 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="M20 14.5V23.5L16.667 21H14V17H16.667L20 14.5ZM21 3C21.5523 3 22 3.44772 22 4V13H20V7.237L12.0718 14.338L4 7.215V19H12V21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H21ZM21 17C22.1046 17 23 17.8954 23 19C23 20.0544 22.1841 20.9182 21.1493 20.9945L21 21V17ZM19.5 5H4.511L12.061 11.662L19.5 5Z"/>
</Svg>);
};
Icon.displayName = 'MailVolumeLine';
/**
* Remix Icon: Mail Volume Line
* @see {@link https://remixicon.com/icon/mail-volume-line Remix Icon Docs}
*/
export const MailVolumeLine = memo(Icon);