UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 639 B
import React, { Component } from 'react'; export default class ViewDayIcon 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-view-day-icon ${this.props.className}`}><path d="M2 3v3h19V3m-1 5H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zM2 21h19v-3H2v3z"/></svg> ) } }