react-icons
Version:
svg react icons of popular icon packs using ES6 imports
12 lines (9 loc) • 460 B
JavaScript
var IconBase = require('../IconBase');
var MdNotificationsNone = (props) => {
return (
<IconBase viewBox="0 0 24 24" {...props}>
<g><path d="M11.5 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6.5-6v-5.5c0-3.07-2.13-5.64-5-6.32V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5v.68c-2.87.68-5 3.25-5 6.32V16l-2 2v1h17v-1l-2-2zm-2 1H7v-6.5C7 8.01 9.01 6 11.5 6S16 8.01 16 10.5V17z"/></g>
</IconBase>
);
};
export default MdNotificationsNone;