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
This commit is contained in:
Marshall Bowers 2025-02-09 11:07:40 -05:00 committed by GitHub
parent 065fdcb86b
commit 072d2b061a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 0 additions and 97 deletions

View file

@ -36,7 +36,6 @@ pub enum ComponentStory {
TabBar,
Text,
ToggleButton,
ToolStrip,
ViewportUnits,
WithRemSize,
Vector,
@ -73,7 +72,6 @@ impl ComponentStory {
Self::TabBar => cx.new(|_| ui::TabBarStory).into(),
Self::Text => TextStory::model(cx).into(),
Self::ToggleButton => cx.new(|_| ui::ToggleButtonStory).into(),
Self::ToolStrip => cx.new(|_| ui::ToolStripStory).into(),
Self::ViewportUnits => cx.new(|_| crate::stories::ViewportUnitsStory).into(),
Self::WithRemSize => cx.new(|_| crate::stories::WithRemSizeStory).into(),
Self::Vector => cx.new(|_| ui::VectorStory).into(),