leptos-material 0.6.1

A Leptos component wrapper for Material Web Components.
1
2
3
4
5
6
7
use leptos::{component, view, IntoView};

/// See the [MWC Github](https://github.com/material-components/material-web/blob/main/docs/components/elevation.md).
#[component]
pub fn Elevation() -> impl IntoView {
    view! { <md-elevation></md-elevation> }
}