react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 710 B
JSX
import React, { Component } from 'react';
export default class LinkIcon 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-link-icon ${this.props.className}`}><path d="M16 5.998h-3v1.9h3a4.1 4.1 0 0 1 0 8.2h-3v1.9h3a6 6 0 0 0 6-6c0-3.314-2.686-6-6-6zm-12.1 6a4.1 4.1 0 0 1 4.1-4.1h3v-1.9H8a6 6 0 0 0 0 12h3v-1.9H8a4.1 4.1 0 0 1-4.1-4.1zm4.1 1h8v-2H8v2z"/></svg>
)
}
}