duoyun-ui
Version:
A lightweight desktop UI component library, implemented using Gem
16 lines (15 loc) • 740 B
TypeScript
import { HTMLAttributes, RefAttributes } from 'react';
import { ForwardRefExoticComponent } from 'react';
import { DuoyunFormItemInlineGroupElement } from '../elements/form';
export * from '../elements/form';
export type DyFormItemInlineGroupProps = HTMLAttributes<HTMLDivElement> & RefAttributes<DuoyunFormItemInlineGroupElement> & {};
export type DyFormItemInlineGroupExpose = {};
declare global {
namespace JSX {
interface IntrinsicElements {
'dy-form-item-inline-group': DyFormItemInlineGroupProps;
}
}
}
export declare const DyFormItemInlineGroup: ForwardRefExoticComponent<Omit<DyFormItemInlineGroupProps, "ref"> & RefAttributes<DyFormItemInlineGroupExpose>>;
export default DyFormItemInlineGroup;