import type { HTMLAttributes, CSSProperties } from 'react'; export interface LoadingProps extends HTMLAttributes { /** * 主轴对齐方式 */ justify?: CSSProperties['justifyContent']; /** * 交叉轴对齐方式 */ align?: CSSProperties['alignItems']; }