UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 644 B
import React, { Component } from 'react'; export default class PanoramaIcon 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-panorama-icon ${this.props.className}`}><path d="M8.5 12.5l2.5 3.01L14.5 11l4.5 6H5m18 1V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2z"/></svg> ) } }