hyaenidae/toolkit/templates/button_group.rs.html

11 lines
161 B
HTML
Raw Normal View History

2020-12-16 02:40:41 +00:00
@use crate::Button;
@use super::button;
@(buttons: &[&Button])
<div class="toolkit-button-group">
@for btn in buttons {
@:button(btn)
}
</div>