pub fn btn_block(color: Color, text: &str) -> Element<Button>Expand description
Create a block-level button (full width).
ยงExample
use ironhtml_bootstrap::{buttons::btn_block, Color};
let btn = btn_block(Color::Primary, "Full Width");
assert!(btn.render().contains("w-100"));