@innovaccer/design-system
Version:
React components library project for Innovaccer Design System
17 lines (16 loc) • 625 B
TypeScript
import * as React from 'react';
import { AvatarData } from "../AvatarSelection";
import { AvatarSize } from "../../../../common.type";
import { TooltipProps } from "../../../../index.type";
interface SelectionAvatarsWrapperProps {
size?: AvatarSize;
avatarList: AvatarData[];
avatarRenderer?: (data: AvatarData) => JSX.Element;
tooltipPosition?: TooltipProps['position'];
avatarStyle?: {
backgroundColor?: string;
boxShadow?: string;
};
}
export declare const SelectionAvatarsWrapper: (props: SelectionAvatarsWrapperProps) => React.JSX.Element;
export default SelectionAvatarsWrapper;