LoadingSpinner.js 353 B

12345678910111213141516
  1. import React from 'react';
  2. import { gettext } from '../../utils/gettext';
  3. import Icon from '../../components/Icon/Icon';
  4. /**
  5. * A loading indicator with a text label next to it.
  6. */
  7. const LoadingSpinner = () => (
  8. <span>
  9. <Icon name="spinner" className="c-spinner" />
  10. {` ${gettext('Loading…')}`}
  11. </span>
  12. );
  13. export default LoadingSpinner;