ui: Introduce Banner component (#27853)

This PR adds a new, generic `Banner` component so that we can
potentially replace the multiple, isolated implementations of it
throughout some places of the app.

<img
src="https://github.com/user-attachments/assets/a268f745-1747-48e6-9461-2732eb7c0be4"
width="750"/>

Release Notes:

- N/A
This commit is contained in:
Danilo Leal 2025-04-01 14:36:38 -03:00 committed by GitHub
parent ac5a2b2122
commit 64ef3ab09d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 194 additions and 0 deletions

View file

@ -1,4 +1,5 @@
mod avatar;
mod banner;
mod button;
mod content_group;
mod context_menu;
@ -37,6 +38,7 @@ mod tooltip;
mod stories;
pub use avatar::*;
pub use banner::*;
pub use button::*;
pub use content_group::*;
pub use context_menu::*;