react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 760 B
JSX
import React, { Component } from 'react';
export default class AlarmLightIcon 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-light-icon ${this.props.className}`}><path d="M6 6.9L3.87 4.78l1.41-1.41L7.4 5.49 6 6.9zM13 1v3h-2V1h2zm7.13 3.78L18 6.9l-1.4-1.41 2.12-2.12 1.41 1.41zM4.5 10.5v2h-3v-2h3zm15 0h3v2h-3v-2zM6 20h12a2 2 0 0 1 2 2H4a2 2 0 0 1 2-2zm6-15a6 6 0 0 1 6 6v8H6v-8a6 6 0 0 1 6-6z"/></svg>
)
}
}