UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 757 B
import React, { Component } from 'react'; export default class StarOutlineIcon 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-star-outline-icon ${this.props.className}`}><path d="M12 15.394l-3.764 2.27.995-4.28-3.322-2.879 4.38-.376L12 6.093l1.71 4.036 4.38.376-3.322 2.878.995 4.281M22 9.242l-7.19-.617-2.81-6.627L9.19 8.625 2 9.242l5.454 4.727L5.82 21 12 17.27l6.18 3.728-1.635-7.029L22 9.242z"/></svg> ) } }