interface PayloadRenderPluginAvatarComponents {
    image: ComponentType<PayloadRenderProps<{
        schema: string;
    } & PayloadFields> & AvatarOwnProps & AvatarSlotsAndSlotProps & CommonProps & Omit<Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
        ref?: null | ((instance: null | HTMLDivElement) => void) | RefObject<HTMLDivElement>;
    },
        | "src"
        | "className"
        | "style"
        | "classes"
        | "children"
        | "sx"
        | "slots"
        | "slotProps"
        | "variant"
        | "alt"
        | "sizes"
        | "srcSet"
        | "imgProps"> & {
        component?: ElementType<any, (keyof IntrinsicElements)>;
    }>;
}

Properties

Properties

image: ComponentType<PayloadRenderProps<{
    schema: string;
} & PayloadFields> & AvatarOwnProps & AvatarSlotsAndSlotProps & CommonProps & Omit<Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
    ref?: null | ((instance: null | HTMLDivElement) => void) | RefObject<HTMLDivElement>;
},
    | "src"
    | "className"
    | "style"
    | "classes"
    | "children"
    | "sx"
    | "slots"
    | "slotProps"
    | "variant"
    | "alt"
    | "sizes"
    | "srcSet"
    | "imgProps"> & {
    component?: ElementType<any, (keyof IntrinsicElements)>;
}>