report_problem_icon

Function report_problem_icon 

Source
pub fn report_problem_icon() -> IconContent
Expand description

§report_problem_icon

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