mirror of
https://github.com/zoriya/flood.git
synced 2025-12-20 06:05:15 +00:00
17 lines
420 B
JavaScript
17 lines
420 B
JavaScript
import React from 'react';
|
|
|
|
import BaseIcon from './BaseIcon';
|
|
|
|
export default class DotsMini extends BaseIcon {
|
|
render() {
|
|
return (
|
|
<svg className={`icon icon--dots-mini ${this.props.className}`}
|
|
xmlns={this.getXmlns()} viewBox={this.getViewBox()}>
|
|
<circle cx="0.9" cy="4" r="0.9"/>
|
|
<circle cx="4" cy="4" r="0.9"/>
|
|
<circle cx="7.1" cy="4" r="0.9"/>
|
|
</svg>
|
|
);
|
|
}
|
|
}
|