v33.0.0
Breaking Changes
The Footer organism has expanded to include 4 columns along the top, instead of the previous 3. This change breaks the options for the variant prop on the FooterListContainer sub-component, hereโs the new accepted values alongside the previous:
| Before | After |
|---|---|
left | column1 |
center | column2 |
column3 | |
right | column4 |
An example of this in practice:
Before
<Footer>
<FooterListContainer variant="left">
</Footer>After
<Footer>
<FooterListContainer variant="column1">
</Footer>Last updated on