react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 739 B
JSX
import React, { Component } from 'react';
export default class LinkedinIcon 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-linkedin-icon ${this.props.className}`}><path d="M21 21h-4v-6.75c0-1.059-1.188-1.944-2.246-1.944-1.06 0-1.754.885-1.754 1.944V21H9V9h4v2c.662-1.071 2.356-1.763 3.525-1.763C18.997 9.237 21 11.28 21 13.75V21zM7 21H3V9h4v12zM5 3a2 2 0 1 1 0 4 2 2 0 0 1 0-4z"/></svg>
)
}
}