Work on sample collab_panel story in the storybook

Co-Authored-By: Nathan Sobo <1789+nathansobo@users.noreply.github.com>
This commit is contained in:
Nate Butler 2023-09-05 15:19:44 -04:00
parent e08c0fc4ce
commit 0695e8d3b9
4 changed files with 117 additions and 10 deletions

View file

@ -268,14 +268,14 @@ pub trait Styleable {
Self::Style::from_refinement(&self.style_cascade().merged())
}
fn hovered(self) -> Hoverable<Self>
fn hover(self) -> Hoverable<Self>
where
Self: Sized,
{
hoverable(self)
}
fn pressed(self) -> Pressable<Self>
fn active(self) -> Pressable<Self>
where
Self: Sized,
{