UNPKG

@cn-ui/core

Version:

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

9 lines (8 loc) 252 B
import { type JSXSlot } from "@cn-ui/reactive"; export interface ResultProps { header?: JSXSlot; title: string; subTitle?: string; footer?: JSXSlot; } export declare const Result: (props: ResultProps) => import("solid-js").JSX.Element;