@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 751 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="M2.80777 1.39337L22.6068 21.1924L21.1925 22.6066L17.5846 18.9994L6.45516 19L2.00016 22.5V3.99997C2.00016 3.83067 2.04223 3.6712 2.11649 3.53143L1.39355 2.80759L2.80777 1.39337ZM21.0002 2.99997C21.5524 2.99997 22.0002 3.44769 22.0002 3.99997V17.785L7.21416 2.99997H21.0002Z"/>
</Svg>);
};
Icon.displayName = 'ChatOffFill';
/**
* Remix Icon: Chat Off Fill
* @see {@link https://remixicon.com/icon/chat-off-fill Remix Icon Docs}
*/
export const ChatOffFill = memo(Icon);