nights_stay_icon

Function nights_stay_icon 

Source
pub fn nights_stay_icon() -> IconContent
Expand description

§nights_stay_icon

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