@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 625 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 7a3 3 0 1 0 0-6 3 3 0 0 0 0 6m1 11V8.9a5 5 0 0 1-2 0V17H5.763L4 18.385V5h12.1a5 5 0 0 1 0-2H3a1 1 0 0 0-1 1v18.5L6.455 19H21a1 1 0 0 0 1-1"/>
</Svg>);
});
Icon.displayName = 'ChatUnreadLine';
/**
* Remix Icon: Chat Unread Line
* @see {@link https://remixicon.com/icon/chat-unread-line Remix Icon Docs}
*/
export const ChatUnreadLine = Icon;