Appearance
The Аvatar
allows you to set different styles based on its content.
Type
The available type are:
Image
—By passing animg
element as child element of the Avatar.Text avatar
—By passing an given string to be rendered as text (initials).Icon avatar
—By passingicon
to the Avatar component.
The following example demonstrates the type
options of the Avatar.
Theme Color
The Аvatar
allows you to specify predefined theme colors.
The available themeColor
values are:
primary
(Default)—Applies coloring based on primary theme color.secondary
—Applies coloring based on secondary theme color.tertiary
— Applies coloring based on tertiary theme color.inherit
— Applies inherited coloring value.info
—Applies coloring based on info theme color.success
— Applies coloring based on success theme color.warning
— Applies coloring based on warning theme color.error
— Applies coloring based on error theme color.dark
— Applies coloring based on dark theme color.light
— Applies coloring based on light theme color.inverse
— Applies coloring based on inverted theme color.
Roundness
To Avatar
enables you to apply different border radius
through the rounded property.
The available rounded options are:
small
— Sets the border radius to 1px.medium
(Default) — Sets the border radius to 2px.large
— Sets the border radius to 4px.full
— Sets the border radius to 9999px.null
— Passing null to therounded
property gives us the option to define a custom CSS class that defines the border-radius of the Avatar.
The following example demonstrates how to customize the roundness
of the Avatar.
Size
The Avatar
allows you to set predefined or custom sizes.
To specify a predefined size, set the size property.
The available size values are:
small
medium
(Default)large
To specify a custom Avatar size, use the style
property.
Fill Mode
The styling of the Avatar
is controlled through its fillMode
property. The values we can pass to the property are as follows:
solid
(Default) — Sets abackground
color andsolid borders
.outline
— Sets atransparent background
andsolid borders
.null
— Passingnull
to thefillMode
property gives us the option to define acustom CSS class
that defines thebackground
andborder
of the Avatar.
The following example demonstrates the usage of each fillMode
option:
Border
The Avatar allows you to specify whether or not to render an additional border
around its content by using the border property. By default, border
is set to false
.