Web components for the Yew framework that support Bootstrap for styling.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#[derive(Debug, Clone, PartialEq)] |
|
pub struct Margin(pub super::Edge, pub usize); |
|
|
|
impl super::BootstrapClass for Margin { |
|
fn as_classname(&self) -> String { |
|
format!("m{}-{}", self.0, self.1) |
|
} |
|
}
|
|
|