no_meeting_room_icon

Function no_meeting_room_icon 

Source
pub fn no_meeting_room_icon() -> IconContent
Expand description

§no_meeting_room_icon

Return the Material Design no_meeting_room icon content in the outlined 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::outlined::no_meeting_room_icon())
    .build()
    .unwrap();