LoadingPlaceholder.tsx 269 B

1234567891011
  1. import React, { SFC } from 'react';
  2. interface LoadingPlaceholderProps {
  3. text: string;
  4. }
  5. export const LoadingPlaceholder: SFC<LoadingPlaceholderProps> = ({ text }) => (
  6. <div className="gf-form-group">
  7. {text} <i className="fa fa-spinner fa-spin" />
  8. </div>
  9. );