We've introduced a new feature to allow add notes to buttons - which we'll demo with the new info button. Mouse over it to see the effect.
⬇️ Result | Source ➡️
New syntax (tweak):
Button with SVG Icon
@inherits Custom.Hybrid.Razor14
@{
var toolbarWithInfoAndNotes = Kit.Toolbar.Empty()
.Info(link: "https://www.2sxc.org/",
tweak: b=>b.Note("This is a post-it info. Click to visit 2sxc.org",
background: "yellow"))
.New(tweak: b=>b.Note("This is a cool note"))
.For(Content);
}
<div class="alert alert-light"
@toolbarWithInfoAndNotes>
<h3>New syntax (tweak):
Button with SVG Icon
</h3>
</div>