@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 652 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="M12 2C16.9706 2 21 6.04348 21 11.0314V20H3V11.0314C3 6.04348 7.02944 2 12 2ZM9.5 21H14.5C14.5 22.3807 13.3807 23.5 12 23.5C10.6193 23.5 9.5 22.3807 9.5 21Z"/>
</Svg>);
};
Icon.displayName = 'NotificationFill';
/**
* Remix Icon: Notification Fill
* @see {@link https://remixicon.com/icon/notification-fill Remix Icon Docs}
*/
export const NotificationFill = memo(Icon);