mirror of
https://github.com/zoriya/flood.git
synced 2025-12-20 14:15:15 +00:00
16 lines
615 B
JavaScript
16 lines
615 B
JavaScript
import React from 'react';
|
|
|
|
import BaseIcon from './BaseIcon';
|
|
|
|
export default class ETA extends BaseIcon {
|
|
render() {
|
|
return (
|
|
<svg className={`icon icon--eta ${this.props.className}`}
|
|
xmlns={this.getXmlns()} viewBox={this.getViewBox()}>
|
|
<path className="icon__ring" d="M44.28,54.77a28.56,28.56,0,1,1,10.45-39A28.56,28.56,0,0,1,44.28,54.77Zm6-36.41a23.36,23.36,0,1,0-8.55,31.92A23.36,23.36,0,0,0,50.23,18.36Z"/>
|
|
<polygon className="icon__hands" points="30 17.06 35.19 17.06 35.19 32.64 35.19 37.83 30 37.83 19.62 37.83 19.62 32.64 30 32.64 30 17.06"/>
|
|
</svg>
|
|
);
|
|
}
|
|
}
|