energy_savings_leaf_icon

Function energy_savings_leaf_icon 

Source
pub fn energy_savings_leaf_icon() -> IconContent
Expand description

§energy_savings_leaf_icon

Return the Material Design energy_savings_leaf icon content in the sharp style.

§Usage

Use with crate::icon::IconArgs and crate::icon::icon.

§Examples

use tessera_ui_basic_components::icon::IconArgsBuilder;
use tessera_ui_basic_components::material_icons;

let args = IconArgsBuilder::default()
    .content(material_icons::sharp::energy_savings_leaf_icon())
    .build()
    .unwrap();