vpn_lock_icon

Function vpn_lock_icon 

Source
pub fn vpn_lock_icon() -> IconContent
Expand description

§vpn_lock_icon

Return the Material Design vpn_lock icon content in the sharp 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::sharp::vpn_lock_icon())
    .build()
    .unwrap();