mirror of
https://github.com/zoriya/flood.git
synced 2025-12-20 06:05:15 +00:00
15 lines
345 B
JavaScript
15 lines
345 B
JavaScript
import React from 'react';
|
|
|
|
import BaseIcon from './BaseIcon';
|
|
|
|
export default class RemoveMini extends BaseIcon {
|
|
render() {
|
|
return (
|
|
<svg className={`icon icon--remove-mini ${this.props.className}`}
|
|
xmlns={this.getXmlns()} viewBox={this.getViewBox()}>
|
|
<rect y="3.5" width="8" height="1"/>
|
|
</svg>
|
|
);
|
|
}
|
|
}
|