Buttons

Buttons allow users to take actions and make choices, with a single click.

Primary Button

The Primary Button description from Figma goes here

1<button class="btn btn-primary">Primary Button</button>

Secondary Button

The Secondary Button description from Figma goes here

1<button class="btn btn-secondary">Secondary Button</button>

Custom Type Button

The Outline Danger Button description from Figma goes here

1<button class="btn btn-custom-type">Warning Button</button>

Danger Button

The Danger Button description from Figma goes here

1<button class="btn btn-danger">Danger Button</button>

Dark Button

The Dark Button description from Figma goes here

1<button class="btn btn-dark">Dark Button</button>

Light Button

The Light Button description from Figma goes here

1<button class="btn btn-light">Light Button</button>

Outline Secondary Button

The Outline Secondary Button description from Figma goes here

1<button class="btn btn-outline-secondary">Outline Button</button>

Small Button

1<button class="btn btn-primary btn-sm">Button text</button>

Medium Button

1<button class="btn btn-primary btn-md">Button text</button>

Large Button

1<button class="btn btn-primary btn-lg">Button text</button>

Accessibility

Make it clear what this button does for the user.

DO

  • Make it clear what this button does for the user.

  • Use at most two buttons in one group.

  • Attribute indicating if the element should be.

DON'T

  • Use more than two words for call to action.

  • First letter of each sentence defaults to a capital letter.

  • Attribute indicating if the element should be.


  • Classes

    Complete list of all CSS classes for the component.

    NameClass
    Primary Buttonbtn btn-primary
    Secondary Buttonbtn btn-secondary
    Custom Type Buttonbtn btn-custom-type
    Danger Buttonbtn btn-danger
    Dark Buttonbtn btn-dark
    Light Buttonbtn btn-light
    Outline Secondary Buttonbtn btn-outline-secondary
    Small Buttonbtn btn-small
    Medium Buttonbtn btn-medium
    Large Buttonbtn btn-large