Files
flood/client/source/scripts/components/icons/UploadThickIcon.js
2016-03-26 23:23:31 -07:00

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>
);
}
}