import _ from 'lodash'; import React from 'react'; import BaseIcon from './BaseIcon'; export default class SpinnerIcon extends BaseIcon { constructor() { super(...arguments); this.id = _.uniqueId(); } getViewBox() { return '0 0 128 128'; } render() { let maskID = `icon--spinner__mask-id--${this.id}`; return ( ); } }