CustomAvatarOptions type

Options that can be injected into the onRender function for customizing an Avatar (Persona) component.

type CustomAvatarOptions = {
  coinSize?: number
  hidePersonaDetails?: boolean
  initialsTextColor?: string
  noVideoAvailableAriaLabel?: string
  presence?: PersonaPresence
  size?: PersonaSize
  styles?: IStyleFunctionOrObject<IPersonaStyleProps, IPersonaStyles>
  text?: string
}