mirror of
https://github.com/zoriya/flood.git
synced 2025-12-20 06:05:15 +00:00
15 lines
404 B
JavaScript
15 lines
404 B
JavaScript
import React from 'react';
|
|
|
|
import BaseIcon from './BaseIcon';
|
|
|
|
export default class UploadThickIcon extends BaseIcon {
|
|
render() {
|
|
return (
|
|
<svg className={`icon icon--upload ${this.props.className}`}
|
|
xmlns={this.getXmlns()} viewBox={this.getViewBox()}>
|
|
<polygon points="15.9,36.6 27,19.9 27,55 33,55 33,19.9 44.1,36.6 49.1,33.3 30,4.6 10.9,33.3 "/>
|
|
</svg>
|
|
);
|
|
}
|
|
}
|