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> } }