UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

30 lines (29 loc) 830 B
import { SelectProps } from 'antd'; import { type CSSProperties, ReactNode } from 'react'; import { IconProps } from "../Icon"; export interface SelectWithImgOptionItem { ariaLabel?: string; icon?: IconProps['icon']; img: string; label: ReactNode; value: string; } export interface SelectWithImgProps { className?: string; classNames?: { img?: string; }; defaultValue?: SelectProps['defaultValue']; height?: number; onChange?: (value: this['value']) => void; options?: SelectWithImgOptionItem[]; style?: CSSProperties; styles?: { img?: CSSProperties; }; unoptimized?: boolean; value?: SelectProps['value']; width?: number; } declare const SelectWithImg: import("react").NamedExoticComponent<SelectWithImgProps>; export default SelectWithImg;