@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
10 lines (9 loc) • 365 B
TypeScript
import type { SelectProps as AntdSelectProps, RefSelectProps } from 'antd';
import type { Ref } from 'react';
import type { IconProps } from "../Icon";
export interface SelectProps extends Omit<AntdSelectProps, 'suffixIcon'> {
ref?: Ref<RefSelectProps>;
shadow?: boolean;
suffixIcon?: IconProps['icon'];
suffixIconProps?: Omit<IconProps, 'icon'>;
}