UNPKG

duoyun-ui

Version:

A lightweight desktop UI component library, implemented using Gem

16 lines (15 loc) 599 B
import { HTMLAttributes, RefAttributes } from 'react'; import { ForwardRefExoticComponent } from 'react'; import { DuoyunTitleElement } from '../elements/title'; export * from '../elements/title'; export type DyTitleProps = HTMLAttributes<HTMLDivElement> & RefAttributes<DuoyunTitleElement> & {}; export type DyTitleExpose = {}; declare global { namespace JSX { interface IntrinsicElements { 'dy-title': DyTitleProps; } } } export declare const DyTitle: ForwardRefExoticComponent<Omit<DyTitleProps, "ref"> & RefAttributes<DyTitleExpose>>; export default DyTitle;