mirror of
https://github.com/zoriya/flood.git
synced 2025-12-20 06:05:15 +00:00
15 lines
341 B
JavaScript
15 lines
341 B
JavaScript
import React from 'react';
|
|
|
|
import BaseIcon from './BaseIcon';
|
|
|
|
export default class Start extends BaseIcon {
|
|
render() {
|
|
return (
|
|
<svg className={`icon icon--start ${this.props.className}`}
|
|
xmlns={this.getXmlns()} viewBox={this.getViewBox()}>
|
|
<path d="M13.1 9.5L46.9 30 13.1 50.5v-41z"/>
|
|
</svg>
|
|
);
|
|
}
|
|
}
|