use crate::prelude::*; #[derive(Component)] pub struct ToolDivider; impl ToolDivider { pub fn new() -> Self { Self } fn render(self, _view: &mut V, cx: &mut ViewContext) -> impl Component { div().w_px().h_3().bg(cx.theme().colors().border) } }