File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ export interface BaseFlexContainerProps {
5757export const FlexContainer : PolymorphicComponent <
5858 "div" ,
5959 BaseFlexContainerProps
60- > = ( { Component = "div" , variant = "space-between" , ...props } ) => (
60+ > = ( { Component = "div" , variant, ...props } ) => (
6161 < Component
6262 { ...props }
6363 className = { css (
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ export default function DocsPage({
1919 < FlexContainer variant = "center" >
2020 < FlexItem flex = "custom" flexAmount = "10%" >
2121 < FlexContainer
22+ variant = "space-between"
2223 style = { {
2324 flexDirection : "column" ,
2425 gap : "var(--shale-v1-font--2)" ,
Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ export const ComponentDoc: React.FC<ComponentDocProps> = ({ component }) => {
7070 < FlexItem Component = "section" >
7171 < H3 > Examples</ H3 >
7272 < FlexContainer
73+ variant = "space-between"
7374 style = { {
7475 display : "flex" ,
7576 flexDirection : "column" ,
@@ -146,6 +147,7 @@ export interface ComponentDocsProps {
146147export const ComponentDocs : React . FC < ComponentDocsProps > = ( { pathname } ) => {
147148 return (
148149 < FlexContainer
150+ variant = "space-between"
149151 style = { {
150152 display : "flex" ,
151153 flexDirection : "column" ,
You can’t perform that action at this time.
0 commit comments