@cn-ui/core
Version:
The @cn-ui/core is a collection of UI components and utilities for building modern web applications with SolidJS.
12 lines (11 loc) • 450 B
TypeScript
import type { JSXElement } from "solid-js";
import "./style/index.css";
export interface TypographyProps {
children: JSXElement;
}
/**
* @zh 兼容中文排版的文本专用容器,自动响应式组件。在内部使用的标签具有排版样式。
*
*/
export declare const Typography: import("solid-js").Component<import("@cn-ui/reactive").OriginComponentOutputType<TypographyProps, HTMLElement, string>>;
export { Typography as Typo };