@@ -10,7 +10,7 @@ export default {
1010export function BasicColumns ( ) {
1111 return (
1212 < Page fullWidth >
13- < Columns columns = { { xs : 1 , sm : 2 , md : 3 , lg : 6 } } gap = { { xs : '2' } } >
13+ < Columns columns = { { xs : 1 , sm : 2 , md : 3 , lg : 6 } } spacing = { { xs : '2' } } >
1414 < div style = { { background : 'aquamarine' } } > one</ div >
1515 < div style = { { background : 'aquamarine' } } > two</ div >
1616 < div style = { { background : 'aquamarine' } } > three</ div >
@@ -32,7 +32,7 @@ export function ColumnsWithTemplateColumns() {
3232 md : '1fr 3fr auto 1fr' ,
3333 lg : '1fr 4fr auto 2fr 3fr auto' ,
3434 } }
35- gap = { { xs : '4' } }
35+ spacing = { { xs : '4' } }
3636 >
3737 < div style = { { background : 'aquamarine' } } > Column one</ div >
3838 < div style = { { background : 'aquamarine' } } > Column two</ div >
@@ -50,7 +50,7 @@ export function ColumnsWithMixedPropTypes() {
5050 < Page fullWidth >
5151 < Columns
5252 columns = { { xs : 2 , sm : '2fr 1fr' , md : '2fr 1fr 1fr' , lg : 6 } }
53- gap = { { xs : '2' } }
53+ spacing = { { xs : '2' } }
5454 >
5555 < div style = { { background : 'aquamarine' } } > one</ div >
5656 < div style = { { background : 'aquamarine' } } > two</ div >
@@ -68,7 +68,7 @@ export function ColumnsWithVaryingGap() {
6868 < Page fullWidth >
6969 < Columns
7070 columns = { { xs : 3 } }
71- gap = { { xs : '025' , sm : '05' , md : '1' , lg : '2' , xl : '4' } }
71+ spacing = { { xs : '025' , sm : '05' , md : '1' , lg : '2' , xl : '4' } }
7272 >
7373 < div style = { { background : 'aquamarine' } } > Column one</ div >
7474 < div style = { { background : 'aquamarine' } } > Column two</ div >
@@ -81,7 +81,7 @@ export function ColumnsWithVaryingGap() {
8181export function ColumnsWithFreeAndFixedWidths ( ) {
8282 return (
8383 < Page fullWidth >
84- < Columns columns = { { xs : '1fr auto auto' } } gap = { { xs : '05' } } >
84+ < Columns columns = { { xs : '1fr auto auto' } } spacing = { { xs : '05' } } >
8585 < div style = { { background : 'aquamarine' } } > Column one</ div >
8686 < div style = { { background : 'aquamarine' } } >
8787 < Button icon = { ChevronLeftMinor } accessibilityLabel = "Previous" />
0 commit comments