Buttons

Regular Button

Default The class sui-button determines the base markup for any button that contains text.
<button class="sui-button">Button</button>
Outlined This variation can come with border only and transparent background. For those cases you can make use of sui-button-ghost class.
<button class="sui-button sui-button-ghost">Button</button>
Large There are some cases when you gonna need to make use of bigger buttons, to achieve this you can add sui-button-lg class.
<button class="sui-button sui-button-lg">Button</button>
Disabled As simple as it sounds, you can add disabled attribute to button element or disabled class if you are using link element.
<button class="sui-button" disabled>Button</button>
<a role="button" class="sui-button disabled">Button</a>