touch_app_icon

Function touch_app_icon 

Source
pub fn touch_app_icon() -> IconContent
Expand description

§touch_app_icon

Return the Material Design touch_app icon content in the round 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::round::touch_app_icon())
    .build()
    .unwrap();