app_registration_icon

Function app_registration_icon 

Source
pub fn app_registration_icon() -> IconContent
Expand description

§app_registration_icon

Return the Material Design app_registration 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::app_registration_icon())
    .build()
    .unwrap();