react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 821 B
JSX
import React, { Component } from 'react';
export default class AlarmBellIcon 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-alarm-bell-icon ${this.props.className}`}><path d="M15 18.66V22H5v-3.34a10 10 0 0 0 10 0zM22 4a2 2 0 0 0-2-2 1.87 1.87 0 0 0-.88.21 2 2 0 0 0-.76.64A2 2 0 0 0 20 6c.08.01.16.01.24 0A11 11 0 0 1 17 18.49c-.318.263-.652.507-1 .73V21h1v-1.26A12 12 0 0 0 22 10a11.81 11.81 0 0 0-.83-4.38A2 2 0 0 0 22 4zm-4 6a8 8 0 1 1-16 0 8 8 0 0 1 16 0z"/></svg>
)
}
}