This PR reworks the way we add indicators to `Avatar`s to make them more general-purpose. Previously we had logic specific to the availability indicator embedded in the `Avatar` component, which made it unwieldy to repurpose for something else. Now the `indicator` is just a slot that we can put anything into. Release Notes: - N/A
6 lines
109 B
Rust
6 lines
109 B
Rust
mod avatar;
|
|
mod avatar_availability_indicator;
|
|
|
|
pub use avatar::*;
|
|
pub use avatar_availability_indicator::*;
|