All files / src/components/icons LargeSpin.tsx

100% Statements 2/2
75% Branches 3/4
100% Functions 1/1
100% Lines 2/2

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16      68x       72x                
import { Spin } from "antd";
import React, { CSSProperties, ReactElement } from 'react';
 
const LargeSpin = (props: {
  message?: string;
  containerCss?: CSSProperties
}): ReactElement =>
(<div style={props.containerCss ?? {}} className='large-spin'>
  <Spin size="large" />
  <span style={{ paddingLeft: "1rem" }}>
    {props.message == null ? "" : props.message}
  </span>
</div>);
 
export default LargeSpin;