mirror of
https://github.com/zoriya/flood.git
synced 2025-12-20 06:05:15 +00:00
17 lines
646 B
JavaScript
17 lines
646 B
JavaScript
import React from 'react';
|
|
|
|
import BaseIcon from './BaseIcon';
|
|
|
|
export default class CircleCheckmarkIcon extends BaseIcon {
|
|
render() {
|
|
return (
|
|
<svg className={`icon icon--circle-checkmark ${this.props.className}`}
|
|
xmlns={this.getXmlns()} viewBox={this.getViewBox()}>
|
|
<path fillOpacity="0.05" d="M30,0A30,30,0,1,1,0,30,30,30,0,0,1,30,0Z"/>
|
|
<path fillOpacity="0.2" d="M30,0A30,30,0,1,0,60,30,30,30,0,0,0,30,0Zm0,56.47A26.47,26.47,0,1,1,56.47,30,26.47,26.47,0,0,1,30,56.47Z"/>
|
|
<polygon points="43.93 19.51 27.64 35.46 19.07 27.07 16.5 29.58 27.64 40.5 46.5 22.03 43.93 19.51"/>
|
|
</svg>
|
|
);
|
|
}
|
|
}
|