@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 641 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="M22 17h-2v-7a8 8 0 1 0-16 0v7H2v2h20zm-4-7v7H6v-7a6 6 0 1 1 12 0m-3 13v-2H9v2zM9 9h3.586L9 12.586V15h6v-2h-3.586L15 9.414V7H9z"/>
</Svg>);
});
Icon.displayName = 'NotificationSnoozeLine';
/**
* Remix Icon: Notification Snooze Line
* @see {@link https://remixicon.com/icon/notification-snooze-line Remix Icon Docs}
*/
export const NotificationSnoozeLine = Icon;