UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 771 B
import React, { Component } from 'react'; export default class WunderlistIcon 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-wunderlist-icon ${this.props.className}`}><path d="M17 17.5L12 15l-5 2.5V5H5v14h14V5h-2v12.5zm-5-5.083l2.247 1.355-.595-2.556 1.984-1.719-2.615-.224L12 6.863l-1.022 2.41-2.615.224 1.984 1.719-.594 2.556L12 12.417zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z"/></svg> ) } }