Skip to content

Commit

Permalink
Merge branch 'master' into disclosure-small
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeltaranto authored Oct 21, 2024
2 parents 7178fff + 6e91012 commit 2e7d245
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,7 @@ import React from 'react';
import { cleanSpaceValue } from '../../playroom/cleanSpaceValue';
import { type InlineProps, Inline as BraidInline } from './Inline';

export const Inline = ({
space,
align,
alignY,
component,
...restProps
}: InlineProps) => (
export const Inline = ({ space, align, alignY, ...restProps }: InlineProps) => (
<BraidInline
space={cleanSpaceValue(space) || 'none'}
align={typeof align !== 'boolean' ? align : undefined}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,7 @@ import React from 'react';
import { cleanSpaceValue } from '../../playroom/cleanSpaceValue';
import { type StackProps, Stack as BraidStack } from './Stack';

export const Stack = ({
space,
align,
component,
...restProps
}: StackProps) => (
export const Stack = ({ space, align, ...restProps }: StackProps) => (
<BraidStack
space={cleanSpaceValue(space) || 'none'}
align={typeof align !== 'boolean' ? align : undefined}
Expand Down

0 comments on commit 2e7d245

Please sign in to comment.