Files
flood/client/source/scripts/components/icons/AddMini.js
2016-01-27 21:40:56 -08:00

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