@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
15 lines (14 loc) • 472 B
text/typescript
import { IconProps } from "../Icon/type.mjs";
import "../Icon/index.mjs";
import { Ref } from "react";
import { RefSelectProps, SelectProps } from "antd";
//#region src/Select/type.d.ts
interface SelectProps$1 extends Omit<SelectProps, 'suffixIcon'> {
ref?: Ref<RefSelectProps>;
shadow?: boolean;
suffixIcon?: IconProps['icon'];
suffixIconProps?: Omit<IconProps, 'icon'>;
}
//#endregion
export { SelectProps$1 as SelectProps };
//# sourceMappingURL=type.d.mts.map