mirror of
https://github.com/zoriya/flood.git
synced 2025-12-20 14:15:15 +00:00
15 lines
337 B
JavaScript
15 lines
337 B
JavaScript
import React from 'react';
|
|
|
|
import BaseIcon from './BaseIcon';
|
|
|
|
export default class Stop extends BaseIcon {
|
|
render() {
|
|
return (
|
|
<svg className={`icon icon--stop ${this.props.className}`}
|
|
xmlns={this.getXmlns()} viewBox={this.getViewBox()}>
|
|
<path d="M11.9 11.9H48v36.2H11.9V11.9z"/>
|
|
</svg>
|
|
);
|
|
}
|
|
}
|