Function freya::components::OutlineButton  
source · pub fn OutlineButton(props: ButtonProps) -> Result<VNode, RenderError>Expand description
Clickable button with an outline style.
§Styling
Inherits the outline ButtonTheme theme.
§Example
fn app() -> Element {
    rsx!(
        OutlineButton {
            onpress: |_| println!("clicked"),
            label {
                "Click this"
            }
        }
    )
}