ui: Clean up PlatformTitlebar implementation (#9413)

This PR cleans up the implementation of the `PlatformTitlebar` component
to better match our conventions for building UI components.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-03-15 14:31:02 -04:00 committed by GitHub
parent db43479be8
commit 123d3ee282
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 159 additions and 123 deletions

View file

@ -10,6 +10,7 @@ mod label;
mod list;
mod list_header;
mod list_item;
mod platform_titlebar;
mod tab;
mod tab_bar;
mod toggle_button;
@ -26,6 +27,7 @@ pub use label::*;
pub use list::*;
pub use list_header::*;
pub use list_item::*;
pub use platform_titlebar::*;
pub use tab::*;
pub use tab_bar::*;
pub use toggle_button::*;