@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 650 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 8.99374C2 5.68349 4.67654 3 8.00066 3H15.9993C19.3134 3 22 5.69478 22 8.99374V21H8.00066C4.68659 21 2 18.3052 2 15.0063V8.99374ZM14 11V13H16V11H14ZM8 11V13H10V11H8Z"/>
</Svg>);
};
Icon.displayName = 'Message3Fill';
/**
* Remix Icon: Message 3 Fill
* @see {@link https://remixicon.com/icon/message-3-fill Remix Icon Docs}
*/
export const Message3Fill = memo(Icon);