closed_caption_icon

Function closed_caption_icon 

Source
pub fn closed_caption_icon() -> IconContent
Expand description

§closed_caption_icon

Return the Material Design closed_caption icon content in the filled 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::filled::closed_caption_icon())
    .build()
    .unwrap();