auto_delete_icon

Function auto_delete_icon 

Source
pub fn auto_delete_icon() -> IconContent
Expand description

§auto_delete_icon

Return the Material Design auto_delete icon content in the filled 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::filled::auto_delete_icon())
    .build()
    .unwrap();