@master-c8/icons
Version:
Platzi Master C8 Icons
18 lines (15 loc) • 553 B
JavaScript
import { forwardRef } from 'react';
import { SvgIcon } from '@mui/material';
const Notification = forwardRef(function Notification(props, ref) {
return (
<SvgIcon {...props} {...ref}>
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M15 17h5l-1.405-1.405A2.032 2.032 0 0118 14.158V11a6.002 6.002 0 00-4-5.659V5a2 2 0 10-4 0v.341C7.67 6.165 6 8.388 6 11v3.159c0 .538-.214 1.055-.595 1.436L4 17h5m6 0v1a3 3 0 11-6 0v-1m6 0H9"
/>
</SvgIcon>
);
});
export default Notification;