UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 763 B
import React, { Component } from 'react'; export default class AlarmPlusIcon 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-plus-icon ${this.props.className}`}><path d="M13 9h-2v3H8v2h3v3h2v-3h3v-2h-3m-1 8c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm0-16a9 9 0 0 0-9 9c0 4.97 4.02 9 9 9a9 9 0 0 0 0-18zm10 1.72l-4.6-3.86-1.29 1.53 4.6 3.86M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85z"/></svg> ) } }