personal_video_icon

Function personal_video_icon 

Source
pub fn personal_video_icon() -> IconContent
Expand description

§personal_video_icon

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