mirror of
https://github.com/zoriya/flood.git
synced 2025-12-20 06:05:15 +00:00
15 lines
401 B
JavaScript
15 lines
401 B
JavaScript
import React from 'react';
|
|
|
|
import BaseIcon from './BaseIcon';
|
|
|
|
export default class AddMini extends BaseIcon {
|
|
render() {
|
|
return (
|
|
<svg className={`icon icon--addmini ${this.props.className}`}
|
|
xmlns={this.getXmlns()} viewBox={this.getViewBox()}>
|
|
<polygon points="8,3.5 4.5,3.5 4.5,0 3.5,0 3.5,3.5 0,3.5 0,4.5 3.5,4.5 3.5,8 4.5,8 4.5,4.5 8,4.5"/>
|
|
</svg>
|
|
);
|
|
}
|
|
}
|