Checkpoint

This commit is contained in:
Nate Butler 2023-09-12 15:18:13 -04:00
parent 0d161519e4
commit bbc4673f17
2 changed files with 2 additions and 2 deletions

View file

@ -147,7 +147,7 @@ impl<V: 'static> TitleBar<V> {
)
.child(div().px_2().flex().items_center().child(avatar(
"https://avatars.githubusercontent.com/u/1714999?v=4",
Shape::Squircle,
Shape::RoundedRectangle,
))),
)
}

View file

@ -7,7 +7,7 @@ pub enum ButtonVariant {
#[derive(PartialEq)]
pub enum Shape {
Circle,
Squircle,
RoundedRectangle,
}
#[derive(PartialEq)]