Buttons


Primary Buttons

<button type="button" class="btn btn-primary">Button</button>

<button type="button" class="btn btn-primary" disabled>Button</button>

<button type="button" class="btn btn-primary btn-icon">
    <svg>
        <use href="../App_Themes/clearview-default/icons/utility/add.svg#add"></use>
    </svg>
    With Icon
</button>

<button type="button" class="btn btn-primary btn-icon" disabled>
    <svg>
        <use href="../App_Themes/clearview-default/icons/utility/add.svg#add"></use>
    </svg>
    With Icon
</button>

Secondary Buttons

<button type="button" class="btn btn-secondary">Button</button>

<button type="button" class="btn btn-secondary" disabled>Button</button>

<button type="button" class="btn btn-secondary btn-icon">
    <svg>
        <use href="../App_Themes/clearview-default/icons/utility/add.svg#add"></use>
    </svg>
    With icon
</button>

<button type="button" class="btn btn-secondary btn-icon" disabled>
    <svg>
        <use href="../App_Themes/clearview-default/icons/utility/add.svg#add"></use>
    </svg>
    With icon
</button>

Text Buttons

<button type="button" class="btn btn-text">Button</button>

<button type="button" class="btn btn-text" disabled>Button</button>

<button type="button" class="btn btn-text btn-icon fill-cerulean">
    <svg>
        <use href="../App_Themes/clearview-default/icons/utility/add.svg#add"></use>
    </svg>
   Button
</button>

<button type="button" class="btn btn-text btn-icon fill-cerulean" disabled>
    <svg>
        <use href="../App_Themes/clearview-default/icons/utility/add.svg#add"></use>
    </svg>
   Button
</button>

Gray Text Buttons

<button type="button" class="btn btn-text-gray btn-icon">
  <svg>
    <use href="../App_Themes/clearview-default/icons/utility/arrow-left.svg#arrow-left"></use>
  </svg>
  Button
</button>

<button type="button" class="btn btn-text-gray btn-icon" disabled>
  <svg>
    <use href="../App_Themes/clearview-default/icons/utility/arrow-left.svg#arrow-left"></use>
  </svg>
  Button
</button>

Small Primary Buttons

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

<button type="button" class="btn btn-primary btm-sm" disabled>Button</button>

<button type="button" class="btn btn-primary btn-sm btn-icon">
    <svg>
        <use href="../App_Themes/clearview-default/icons/utility/add.svg#add"></use>
    </svg>
    With icon
</button>

<button type="button" class="btn btn-primary btn-sm btn-icon" disabled>
    <svg>
        <use href="../App_Themes/clearview-default/icons/utility/add.svg#add"></use>
    </svg>
    With icon
</button>

Small Secondary Buttons

<button type="button" class="btn btn-secondary btn-sm">Button</button>

<button type="button" class="btn btn-secondary btn-sm" disabled>Button</button>

<button type="button" class="btn btn-secondary btn-sm btn-icon">
    <svg>
        <use href="../App_Themes/clearview-default/icons/utility/add.svg#add"></use>
    </svg>
    With icon
</button>

<button type="button" class="btn btn-secondary btn-sm btn-icon" disabled>
    <svg>
        <use href="../App_Themes/clearview-default/icons/utility/add.svg#add"></use>
    </svg>
    With icon
</button>

Combo Buttons

<button type="button" class="btn btn-text mr-2">Cancel</button>
<button type="button" class="btn btn-primary">Save</button>

<button type="button" class="btn btn-text mr-2" disabled>Cancel</button>
<button type="button" class="btn btn-primary" disabled>Save</button>

Icon-Only Buttons

<button type="button" class="icon-btn fill-valyrianSteel fill-hover-whaleTail">
    <svg class="icon-24">
        <use href="../App_Themes/clearview-default/icons/utility/close.svg#close"></use>
    </svg>
</button>

<button type="button" class="icon-btn fill-valyrianSteel fill-hover-whaleTail" disabled>
    <svg class="icon-24">
        <use href="../App_Themes/clearview-default/icons/utility/close.svg#close"></use>
    </svg>
</button>

Add Buttons

<button type="button" class="icon-btn">
    <img src="../App_Themes/clearview-default/icons/utility/add-16px.svg">
</button>

<button type="button" class="icon-btn" disabled>
    <img src="../App_Themes/clearview-default/icons/utility/add-16px.svg">
</button>

<button type="button" class="icon-btn">
    <img src="../App_Themes/clearview-default/icons/utility/add-24px.svg">
</button>

<button type="button" class="icon-btn" disabled>
    <img src="../App_Themes/clearview-default/icons/utility/add-24px.svg">
</button>

Remove Buttons

<button type="button" class="icon-btn">
    <img src="../App_Themes/clearview-default/icons/utility/remove-16px.svg">
</button>

<button type="button" class="icon-btn" disabled>
    <img src="../App_Themes/clearview-default/icons/utility/remove-16px.svg">
</button>

<button type="button" class="icon-btn">
    <img src="../App_Themes/clearview-default/icons/utility/remove-24px.svg">
</button>

<button type="button" class="icon-btn" disabled>
    <img src="../App_Themes/clearview-default/icons/utility/remove-24px.svg">
</button>