mirror of
https://github.com/zoriya/flood.git
synced 2025-12-20 06:05:15 +00:00
15 lines
379 B
JavaScript
15 lines
379 B
JavaScript
import React from 'react';
|
|
|
|
import BaseIcon from './BaseIcon';
|
|
|
|
export default class Error extends BaseIcon {
|
|
render() {
|
|
return (
|
|
<svg className={`icon icon--error ${this.props.className}`}
|
|
xmlns={this.getXmlns()} viewBox={this.getViewBox()}>
|
|
<path d="M34.3,51.3h-8.5v-9h8.5V51.3z M34.3,36.4h-8.5L23.6,8.7h12.7L34.3,36.4z"/>
|
|
</svg>
|
|
);
|
|
}
|
|
}
|