where_to_vote_icon

Function where_to_vote_icon 

Source
pub fn where_to_vote_icon() -> IconContent
Expand description

§where_to_vote_icon

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