New to Kendo UI for AngularStart a free 30-day trial

Avatar Types

Updated on Jan 20, 2026

The Kendo UI for Angular Avatar allows you to render its content by using a number of built-in options such as image, initials, or an icon.

Image Avatar

To display an image inside the Avatar, set the imageSrc property to an image source.

html
<kendo-avatar [imageSrc]="accountImg" size="large"></kendo-avatar>
ts
public accountImg = 'https://demos.telerik.com/kendo-angular-ui/assets/dropdowns/contacts/RICSU.jpg';

The following example demonstrates how to display an image inside the Avatar component.

Loading ...

Initials Avatar

To define the initials Avatar, set the initials property to any given string.

html
<kendo-avatar initials="MB"></kendo-avatar>

The following example demonstrates how to display initials inside the Avatar component.

Loading ...

Icon Avatar

The Avatar provides the following options to set an icon inside the component:

As of R2 2023 (v13.0.0) the default icon type in the Kendo UI for Angular components and Kendo UI themes is changed from font to svg. Set the svgIcon property, or Continue Using Font Icons.

Displaying SVG Icons

To display an SVG icon inside the Avatar set the svgIcon property of the Avatar to the necessary SVGIcon. For details, go to the list of SVG icons supported by Kendo UI for Angular.

html
<kendo-avatar [svgIcon]="svgCart">Cart</kendo-avatar>
ts
import { cartIcon, SVGIcon } from '@progress/kendo-svg-icons';

public svgCart: SVGIcon = cartIcon;

The following example demonstrates how to set an SVG icon inside the Avatar.

Loading ...

Displaying Font Icons

o display a font icon inside the Avatar:

  1. Use the ICON_SETTINGS token of the Icons package and set the icon type to font. For more information, go to the topic about icon settings.
  2. Depending on the font icons library, you can set the:

The following example demonstrates how to set the icon property of the Avatar.

Loading ...

The following example demonstrates how to set the iconClass property of the Avatar.

Loading ...