mirror of
https://github.com/zoriya/flood.git
synced 2025-12-20 14:15:15 +00:00
16 lines
429 B
JavaScript
16 lines
429 B
JavaScript
import React from 'react';
|
|
|
|
import BaseIcon from './BaseIcon';
|
|
|
|
export default class Download extends BaseIcon {
|
|
render() {
|
|
return (
|
|
<svg className={`icon icon--download ${this.props.className}`}
|
|
xmlns={this.getXmlns()} viewBox={this.getViewBox()}>
|
|
<rect x="28.2" width="3.7" height="55.5"/>
|
|
<polygon points="30,60 11.8,32.7 14.9,30.7 30,53.3 45.1,30.7 48.2,32.7 "/>
|
|
</svg>
|
|
);
|
|
}
|
|
}
|