Function freya::components::ExternalLink  
source · pub fn ExternalLink(props: ExternalLinkProps) -> Option<VNode>Expand description
Link for external locations, e.g websites.
Props
See ExternalLinkProps.
Styling
Inherits the ExternalLinkTheme theme.
Example
fn app() -> Element {
    rsx!(
        ExternalLink {
            url: "https://github.com",
            label {
                "GitHub"
            }
        }
    )
}