@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) • 440 B
TypeScript
import type { JSXElement } from "solid-js";
import { type ResultProps } from "./Result";
import { type useResultProps } from "./useResult";
export declare const ResultStateCircle: (props: {
children?: JSXElement;
} & useResultProps) => import("solid-js").JSX.Element;
export declare const ResultAlert: import("solid-js").Component<import("@cn-ui/reactive").OriginComponentOutputType<ResultProps & useResultProps, HTMLElement, string>>;