Buttons

Basic Buttons

new TablerButton("Primary", TablerButtonVariant.Primary);
new TablerButton("Success", TablerButtonVariant.Success);
new TablerButton("Danger", TablerButtonVariant.Danger);

Button Sizes

new TablerButton("Small", TablerButtonVariant.Primary).Size(TablerButtonSize.Small);
new TablerButton("Large", TablerButtonVariant.Primary).Size(TablerButtonSize.Large);

Outline Buttons

new TablerButton("Outline", TablerButtonVariant.Primary).Outline();

Button Groups

var group = new TablerButtonGroup()
    .Button("Left")
    .Button("Center")
    .Button("Right");
new TablerDropdown("Actions")
    .Item("Edit", "/edit")
    .Item("Delete", "/delete")
    .Divider()
    .Item("Archive", "/archive");

Icon Buttons

new TablerButton("Add New", TablerButtonVariant.Primary).Icon(TablerIconType.Plus);