css
Description
Adds a custom style to the Avatar control.Usage
css?: string;
Example
<Avatar value={user} css="my-class" />
<style>
.my-class {
background-color: gold;
}
</style>
Related article: Styling an avatar
css?: string;
<Avatar value={user} css="my-class" />
<style>
.my-class {
background-color: gold;
}
</style>
Related article: Styling an avatar