summaryrefslogtreecommitdiffstats
path: root/style/src/svg.rs
diff options
context:
space:
mode:
authorLibravatar hicaru <lich666black@gmail.com>2023-12-12 14:02:15 +0500
committerLibravatar hicaru <lich666black@gmail.com>2023-12-12 14:02:15 +0500
commitb54f27d30deec672012c4a63c65d34641b40a9d5 (patch)
tree2f9871f54d80ea8d274ab319e4da8a19c21399d8 /style/src/svg.rs
parentdd249a1d11c68b8fee1828d58bae158946ee2ebd (diff)
downloadiced-b54f27d30deec672012c4a63c65d34641b40a9d5.tar.gz
iced-b54f27d30deec672012c4a63c65d34641b40a9d5.tar.bz2
iced-b54f27d30deec672012c4a63c65d34641b40a9d5.zip
added svg hover, for styles impl
Diffstat (limited to 'style/src/svg.rs')
-rw-r--r--style/src/svg.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/style/src/svg.rs b/style/src/svg.rs
index 9378c1a7..5053f9f8 100644
--- a/style/src/svg.rs
+++ b/style/src/svg.rs
@@ -20,4 +20,7 @@ pub trait StyleSheet {
/// Produces the [`Appearance`] of the svg.
fn appearance(&self, style: &Self::Style) -> Appearance;
+
+ /// Produces the hovered [`Appearance`] of a svg content.
+ fn hovered(&self, style: &Self::Style) -> Appearance;
}