macro_rules! button {
    ($($methods:tt)*) => { ... };
}
Expand description

This macro is generated by the dominator-component-macros crate. For more information, see the ButtonProps. All generated methods:

button! ({
    .content(<Dom>)
    .content_signal(<TcontentSignal : futures_signals :: signal :: Signal < Item = Dom >>)
    .click_handler(<FClickCallback>)
    .button_type(<ButtonType>)
    .style(<ButtonStyle>)
    .disabled(<bool>)
    .disabled_signal(<TdisabledSignal : futures_signals :: signal :: Signal < Item = bool >>)
    .apply(<TApplyFn>)
});