You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
494 B
16 lines
494 B
import * as React from 'react';
|
|
export default function getIcons({ suffixIcon, clearIcon, menuItemSelectedIcon, removeIcon, loading, multiple, prefixCls, }: {
|
|
suffixIcon?: React.ReactNode;
|
|
clearIcon?: React.ReactNode;
|
|
menuItemSelectedIcon?: React.ReactNode;
|
|
removeIcon?: React.ReactNode;
|
|
loading?: boolean;
|
|
multiple?: boolean;
|
|
prefixCls: string;
|
|
}): {
|
|
clearIcon: React.ReactNode;
|
|
suffixIcon: {} | null;
|
|
itemIcon: {} | null;
|
|
removeIcon: {} | null;
|
|
};
|