Files
flood/client/source/scripts/components/icons/All.js
2016-01-27 21:40:56 -08:00

15 lines
470 B
JavaScript

import React from 'react';
import BaseIcon from './BaseIcon';
export default class All extends BaseIcon {
render() {
return (
<svg className={`icon icon--all ${this.props.className}`}
xmlns={this.getXmlns()} viewBox={this.getViewBox()}>
<polygon points="52,20.6 48.6,14.7 33.4,24 33.4,8.7 26.6,8.7 26.6,24 11.4,14.7 8,20.6 23.4,30 8,39.4 11.4,45.3 26.6,36 26.6,51.3 33.4,51.3 33.4,36 48.6,45.3 52,39.4 36.6,30 "/>
</svg>
);
}
}