UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 864 B
import React, { Component } from 'react'; export default class FontAwesomeIcon 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-font-awesome-icon ${this.props.className}`}><path d="M6 3a2.5 2.5 0 0 1 1 4.792v.87C8.111 8.361 9.72 8 11 8c1.147 0 1.886.222 2.538.417.595.18 1.11.334 1.962.334a7.722 7.722 0 0 0 3.042-.64A1 1 0 0 1 20 9v7.999c0 .379-.214.724-.552.895-.07.035-1.737.856-3.948.856-1.107 0-2.048-.202-2.96-.398C11.693 18.172 10.894 18 10 18c-1.148 0-2.33.39-3 .656V22H5V7.792A2.5 2.5 0 0 1 6 3z"/></svg> ) } }