Skip to content

Commit bfcf623

Browse files
committed
feat: remove default variant from FlexContainer
1 parent c7332a6 commit bfcf623

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

workspaces/react/src/components/Container.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export interface BaseFlexContainerProps {
5757
export 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(

0 commit comments

Comments
 (0)