Add input

This commit is contained in:
Jason Lee 2024-06-14 10:20:22 +08:00
parent 0d1b1aa784
commit 537edcae99
2 changed files with 6 additions and 0 deletions

5
crates/ui/src/input.rs Normal file
View file

@ -0,0 +1,5 @@
use gpui::SharedString;
pub struct Input {
placeholder: SharedString,
}

View file

@ -1,6 +1,7 @@
pub mod button;
mod colors;
pub mod disableable;
pub mod input;
pub mod label;
pub mod preview;