zu-icon-util 0.1.0

Utilities for zu-icons
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13

#[cfg(feature = "{FEATURE_NAME}")]
#[derive(Copy, Clone, PartialEq)]
pub struct {ICON_NAME} {}

#[cfg(feature = "{FEATURE_NAME}")]
impl IconShape for {ICON_NAME} {
    fn child_elements(&self) -> Element {
        rsx!({ICON_PATH})
    }

{OTHER_PROPS}
}