question_mark_icon

Function question_mark_icon 

Source
pub fn question_mark_icon() -> IconContent
Expand description

§question_mark_icon

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