react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 834 B
JSX
import React, { Component } from 'react';
export default class TableEditIcon 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-table-edit-icon ${this.props.className}`}><path d="M21.704 13.35L20.7 14.355 18.646 12.3l1.003-1.004a.547.547 0 0 1 .775 0l1.28 1.28a.547.547 0 0 1 0 .775zm-9.7 5.592l6.061-6.061 2.054 2.054-6.061 6.061h-2.054v-2.054zM4 2h14a2 2 0 0 1 2 2v4.172L16.172 12H12v4.172L10.172 18H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm0 4v4h6V6H4zm8 0v4h6V6h-6zm-8 6v4h6v-4H4z"/></svg>
)
}
}