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