perm_phone_msg_icon

Function perm_phone_msg_icon 

Source
pub fn perm_phone_msg_icon() -> IconContent
Expand description

§perm_phone_msg_icon

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