ui: Remove old settings components (#15347)

This PR removes the old settings components, as they've been adapted
into other components for the settings UI.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-07-27 14:12:32 -04:00 committed by GitHub
parent cb07e02ce9
commit 26aec4ba99
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 0 additions and 589 deletions

View file

@ -32,7 +32,6 @@ pub enum ComponentStory {
OverflowScroll,
Picker,
Scroll,
Setting,
Tab,
TabBar,
Text,
@ -66,7 +65,6 @@ impl ComponentStory {
Self::ListItem => cx.new_view(|_| ui::ListItemStory).into(),
Self::OverflowScroll => cx.new_view(|_| crate::stories::OverflowScrollStory).into(),
Self::Scroll => ScrollStory::view(cx).into(),
Self::Setting => cx.new_view(|cx| ui::SettingStory::init(cx)).into(),
Self::Text => TextStory::view(cx).into(),
Self::Tab => cx.new_view(|_| ui::TabStory).into(),
Self::TabBar => cx.new_view(|_| ui::TabBarStory).into(),