UNPKG

@cn-ui/core

Version:

The @cn-ui/core is a collection of UI components and utilities for building modern web applications with SolidJS.

8 lines (7 loc) 361 B
import { type FloatingCoverProps } from "@cn-ui/reactive"; import type { JSXElement } from "solid-js"; import "./index.css"; export interface LoadingProps extends FloatingCoverProps { fallback?: JSXElement; } export declare const Loading: import("solid-js").Component<import("@cn-ui/reactive").OriginComponentOutputType<LoadingProps, HTMLElement, string>>;