client: fix size of the Edit icon

This commit is contained in:
Jesse Chan
2020-10-28 00:50:26 +08:00
parent 2c59176c2c
commit 87ab500bef
@@ -5,7 +5,7 @@ import BaseIcon from './BaseIcon';
export default class Edit extends BaseIcon {
render() {
return (
<svg className={`icon icon--edit ${this.props.className}`} viewBox={this.getViewBox()}>
<svg className={`icon icon--edit ${this.props.className}`} style={{width: '80%'}} viewBox={this.getViewBox()}>
<path d="M12,38.79l10.84,11H12Zm19-21.54L41.75,28.09,25.44,47.17l-10.78-11Zm5.65-6c1.69-1.69,4.94-1.19,7.26,1.13l2.1,2.1c2.32,2.32,2.82,5.57,1.13,7.26L43.7,25.08,33.21,14.59Z" />
</svg>
);