init header components

This commit is contained in:
yggverse 2024-09-19 11:29:03 +03:00
parent 0759f14843
commit 0c8684491b
7 changed files with 210 additions and 1 deletions

View file

@ -0,0 +1,18 @@
use gtk::Button;
pub fn new() -> Button
{
let tab = Button::builder()
.icon_name(
"tab-new-symbolic"
)
.tooltip_text(
"New tab"
)
.build();
return tab;
}