UNPKG

@devfamily/admiral

Version:

Admiral is a frontend framework for creating back office using React. It provides out-of-the-box components and tools that make developing an admin interface easy and fast.

15 lines (14 loc) 404 B
/// <reference types="react" /> export default function getIcons({ loading, multiple, prefixCls, }: { loading?: boolean; multiple?: boolean; prefixCls: string; }): { clearIcon: JSX.Element; suffixIcon: JSX.Element | (({ open, showSearch }: { open: boolean; showSearch: boolean; }) => JSX.Element); itemIcon: JSX.Element | null; removeIcon: JSX.Element; };