UNPKG

@yamada-ui/react

Version:

React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion

21 lines (20 loc) 661 B
import { LoadingScheme } from "../../core/system/index.types.js"; import { HTMLStyledProps } from "../../core/components/index.types.js"; import "../../core/index.js"; import { LoadingProps } from "./loading.js"; import { FC, SuspenseProps } from "react"; //#region src/components/loading/suspense.d.ts interface SuspenseProps$1 extends HTMLStyledProps, SuspenseProps { /** * The loading scheme. */ loadingScheme?: LoadingScheme; /** * The loading props. */ loadingProps?: LoadingProps; } declare const Suspense: FC<SuspenseProps$1>; //#endregion export { Suspense, SuspenseProps$1 as SuspenseProps }; //# sourceMappingURL=suspense.d.ts.map