
This PR removes the `ToolStrip` component. Pulling this change out of https://github.com/zed-industries/zed/pull/24456. Release Notes: - N/A
32 lines
637 B
Rust
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::*;
|