UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 724 B
import React, { Component } from 'react'; export default class BellOutlineIcon extends Component { static defaultProps = { className: '' }; constructor(props) { super(props); } render() { return ( <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" baseProfile="full" viewBox="0 0 24.00 24.00" {...this.props} className={`material material-bell-outline-icon ${this.props.className}`}><path d="M16 16.998H7v-6.5a4.5 4.5 0 0 1 9 0m2 5.5v-5.5a6.498 6.498 0 0 0-5-6.319V3.5a1.5 1.5 0 0 0-3 0v.68a6.498 6.498 0 0 0-5 6.32v5.5l-2 2v1h17v-1m-8.5 4a2 2 0 0 0 2-2h-4c0 1.103.895 2 2 2z"/></svg> ) } }