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;
|