UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 1.07 kB
import React, { Component } from 'react'; export default class LanguageCppIcon 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-language-cpp-icon ${this.props.className}`}><path d="M10.496 15.973l.416 2.436c-.263.14-.678.272-1.244.395s-1.237.188-2.011.196c-2.204-.044-3.864-.698-4.98-1.962-1.116-1.263-1.675-2.873-1.677-4.83.048-2.305.722-4.079 2.023-5.322C4.323 5.643 5.963 5.014 7.94 5c.753.007 1.4.07 1.94.19s.94.254 1.201.402l-.605 2.493-1.034-.347a6.23 6.23 0 0 0-1.389-.152c-1.162-.002-2.12.365-2.876 1.1-.756.736-1.147 1.85-1.174 3.343.01 1.36.369 2.426 1.077 3.2.707.774 1.705 1.168 2.992 1.183l1.325-.122a5.07 5.07 0 0 0 1.098-.317zM11 11h2V9h2v2h2v2h-2v2h-2v-2h-2v-2zm7 0h2V9h2v2h2v2h-2v2h-2v-2h-2v-2z"/></svg> ) } }