fmd_good_icon

Function fmd_good_icon 

Source
pub fn fmd_good_icon() -> IconContent
Expand description

§fmd_good_icon

Return the Material Design fmd_good icon content in the two-tone 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::two_tone::fmd_good_icon())
    .build()
    .unwrap();