Buttons 
Size 
Large Button
HTML
html
<button class="_btn-lrg">Large Button</button>CSS
css
._btn-lrg {
    height: 48px;
    border-radius: 2px;
    cursor: pointer;
    padding: 8px 30px;
    font-size: 14px;
    border: 1px solid inherit;  
    display: flex;
    align-items: center;
}Use Case
Main site, CTAs, Most important things
Medium Button 
Medium Button
HTML
html
<button class="_btn-md">Medium Button</button>CSS
css
._btn-md {
    height: 40px;
    border-radius: 2px;
    cursor: pointer;
    padding: 8px 20px;
    font-size: 14px;
    border: 1px solid inherit;  
    display: flex;
    align-items: center;
}Use Case
Middle weight things
:::
Small Button 
Small Button
HTML
html
<button class="_btn-sm">Small Button</button>CSS
css
._btn-sm {
    height: 32px;
    border-radius: 2px;
    cursor: pointer;
    padding: 6px 16px;
    font-size: 14px;
    border: 1px solid inherit;  
    display: flex;
    align-items: center;
}Use Case
Light weight things
Heirarchy 
Primary 
Fill the background using the css class of
css
._primarySecondary 
Add a border of X with the bg of color of ?
css
._secondaryTertiary 
a third one?!
Question
Should there be any button hieararchies?! If so, how many, styling, and use cases?