@innovaccer/design-system
Version:
React components library project for Innovaccer Design System
18 lines (17 loc) • 612 B
TypeScript
import * as React from 'react';
import { AvatarData } from "../AvatarSelection";
import { AvatarSize } from "../../../../common.type";
interface AvatarPopoverProps {
hiddenAvatarList: AvatarData[];
searchPlaceholder?: string;
searchComparator?: (searchValue: string, avatarData: AvatarData) => boolean;
children?: React.ReactNode;
customStyle: {
width?: number;
minHeight?: number;
maxHeight?: number;
};
size?: AvatarSize;
}
export declare const AvatarSelectionPopover: (props: AvatarPopoverProps) => React.JSX.Element;
export default AvatarSelectionPopover;