@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 543 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 17h2v2H2v-2h2v-7a8 8 0 1 1 16 0zM9 21h6v2H9z"/>
</Svg>);
});
Icon.displayName = 'Notification3Fill';
/**
* Remix Icon: Notification 3 Fill
* @see {@link https://remixicon.com/icon/notification-3-fill Remix Icon Docs}
*/
export const Notification3Fill = Icon;