Files
signed/crates/workspace/src/views/sidebar/import_dialog.rs
T
2026-09-13 13:36:27 +07:00

9 lines
233 B
Rust

use gpui::{App, Window, px};
use gpui_component::WindowExt;
pub fn open(window: &mut Window, cx: &mut App) {
window.open_dialog(cx, move |dialog, _window, _cx| {
dialog.title("Import identity").width(px(400.))
});
}