import React from 'react'; import { ColorProp } from '../types'; export interface Props { /** * 是否加载中 */ loading?: boolean; /** * 整体引用的标签 */ component?: React.ReactType; /** * 加载中的文字 */ title?: string; /** * 加载中图标和文字的颜色 */ color?: ColorProp; /** * 包含的子元素 */ children: React.ReactNode; } /** * 加载中组件 * * 用于页面和区块的加载中状态。 */ export default function Loading({ component: Comp, children, title, color, loading, }: Props): JSX.Element;