Skip to content

Commit

Permalink
Breaking changes: renamed Column to Row.
Browse files Browse the repository at this point in the history
  • Loading branch information
ATATC committed Apr 8, 2024
1 parent f0bd8f5 commit b1d4493
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/components.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/components.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export function Center(props: DefaultProps): ReactNode {
);
}

export function Column(props: { children: Iterable<ReactNode> } & PropsWithMarginAndPadding): ReactNode {
export function Row(props: { children: Iterable<ReactNode> } & PropsWithMarginAndPadding): ReactNode {
const [...children] = props.children;
return (
<Stack direction="row" alignItems="center" {...expandAllKeys(props)}>
Expand Down
2 changes: 1 addition & 1 deletion src/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export {
Center,
Column,
Row,
Copyright,
ErrorHint,
StatusSnackbar,
Expand Down

0 comments on commit b1d4493

Please sign in to comment.