Remove usage of use gpui::* (#22310)

This PR removes usages of `use gpui::*;` in the codebase (excluding
examples).

We should only use glob imports for `gpui::prelude`, and then import
everything else individually.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-12-20 17:52:11 -05:00 committed by GitHub
parent fadf9ff4f4
commit 7c6feeb3a8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 18 additions and 14 deletions

View file

@ -1,7 +1,8 @@
#![allow(missing_docs)]
use gpui::Axis;
use crate::prelude::*;
use gpui::*;
#[derive(IntoElement)]
pub struct ToolStrip {