mirror of
https://github.com/zoriya/flood.git
synced 2025-12-20 06:05:15 +00:00
15 lines
361 B
JavaScript
15 lines
361 B
JavaScript
import React from 'react';
|
|
|
|
import BaseIcon from './BaseIcon';
|
|
|
|
export default class AddMini extends BaseIcon {
|
|
render() {
|
|
return (
|
|
<svg className={`icon icon--add ${this.props.className}`}
|
|
xmlns={this.getXmlns()} viewBox={this.getViewBox()}>
|
|
<path d="M53.7 25.3h-19v-19h-9.4v19h-19v9.4h19v19h9.4v-19h19"/>
|
|
</svg>
|
|
);
|
|
}
|
|
}
|