use crate::icons::BIFiles; use yew::{html, virtual_dom::VNode}; /// Links to the Bootstrap CSS CDN pub fn include_cdn() -> VNode { html! { } } /// Links to the Bootstrap JS CDN, including the map file which must be explicitly mentioned for Trunk to copy it pub fn include_cdn_js() -> VNode { html! { <> } } /// Inserts the bootstrap CSS directly into the content of the page pub fn include_inline() -> VNode { html! { } } /// Include the Bootstrap Icons CDN #[inline(always)] #[deprecated = "Use icons::BIFiles::cdn() instead"] pub fn include_cdn_icons() -> VNode { BIFiles::cdn() }