radix_leptos_avatar/
lib.rs

1//! Leptos port of [Radix Avatar](https://www.radix-ui.com/primitives/docs/components/avatar).
2//!
3//! An image element with a fallback for representing the user.
4//!
5//! See [the Rust Radix book](https://radix.rustforweb.org/primitives/components/avatar.html) for more documentation.
6//!
7//! See [`@radix-ui/react-avatar`](https://www.npmjs.com/package/@radix-ui/react-avatar) for the original package.
8
9mod avatar;
10
11pub use avatar::*;