ZIm/crates/ui/src/components/stories.rs
Marshall Bowers 072d2b061a
ui: Remove ToolStrip component (#24529)
This PR removes the `ToolStrip` component.

Pulling this change out of
https://github.com/zed-industries/zed/pull/24456.

Release Notes:

- N/A
2025-02-09 16:07:40 +00:00

32 lines
637 B
Rust

// We allow missing docs for stories as the docs will more or less be
// "This is the ___ story", which is not very useful.
#![allow(missing_docs)]
mod avatar;
mod button;
mod context_menu;
mod disclosure;
mod icon;
mod icon_button;
mod keybinding;
mod label;
mod list;
mod list_header;
mod list_item;
mod tab;
mod tab_bar;
mod toggle_button;
pub use avatar::*;
pub use button::*;
pub use context_menu::*;
pub use disclosure::*;
pub use icon::*;
pub use icon_button::*;
pub use keybinding::*;
pub use label::*;
pub use list::*;
pub use list_header::*;
pub use list_item::*;
pub use tab::*;
pub use tab_bar::*;
pub use toggle_button::*;