UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

10 lines 315 B
import { TextProps } from "./type.mjs"; import { ReactNode } from "react"; //#region src/base-ui/Text/Text.d.ts interface IText { <Shiny extends boolean = boolean>(props: TextProps<Shiny>): ReactNode; } declare const Text: IText; //#endregion export { IText, Text as default }; //# sourceMappingURL=Text.d.mts.map