#![allow(non_snake_case)] use leptos::{view, Attribute, Binding, IntoView};
use leptos_meta::*;
pub mod components;
pub fn UseMaterialWebComponents() -> impl IntoView {
provide_meta_context();
view! {
<Link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap"
/>
<Link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined"
/>
<Style>"body { font-family = 'Roboto'; }"</Style>
<Script>{include_str!(concat!(env!("OUT_DIR"), "/output_bundle.js"))}</Script>
<Style>
{#[cfg(feature = "card")] include_str!("components/css/card.css")}
{#[cfg(feature = "datepicker")] include_str!("components/css/datepicker.css")}
</Style>
}
}