UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 726 B
import React, { Component } from 'react'; export default class MusicNoteHalfIcon 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-music-note-half-icon ${this.props.className}`}><path d="M12 3v9.264A4.5 4.5 0 0 0 10.5 12c-1.957 0-3.605 1.256-4.225 3H3v3h3.275c.62 1.744 2.268 3 4.225 3 1.957 0 3.605-1.256 4.225-3H19v-3h-4V3h-3zm-1.5 11.5a2 2 0 1 1 0 4 2 2 0 0 1 0-4z"/></svg> ) } }