Skip to content

Commit

Permalink
Modifications made to accommodate the removal of direction prop
Browse files Browse the repository at this point in the history
Signed-off-by: hiroki.yokouchi <hiroki.yokouchi@dr-ubie.com>
  • Loading branch information
8845musign committed May 6, 2024
1 parent 842ddba commit 2bf5200
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Stack/Stack.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ type Props = {
*/
spacing: Spacing;
/**
* 主軸方向における子要素のレイアウトを定める。`direction` prop が `column` の場合は水平軸、 `row` の場合は垂直軸のレイアウトを制御する。水平軸の場合に、ブロックレベル要素を幅いっぱいに占有させたい場合は `normal` を使うこと
* 水平方向における子要素のレイアウトを定める。ブロックレベル要素を幅いっぱいに占有させたい場合は `normal` を使うこと
* @default flex-start
*/
alignItems?: AlignItems;
/**
* 交差軸方向における子要素のレイアウトを定める。directionが `column` の場合は垂軸直、`row` の場合は水平軸のレイアウトを制御する。水平軸の場合に、ブロックレベル要素を幅いっぱいに占有させたい場合は `normal` を使うこと
* @default flex-start
* 垂直方向における子要素のレイアウトを定める。
* @deprecated directionが削除されたため必要なくなりました
*/
justifyContent?: JustifyContent;
/**
Expand Down

0 comments on commit 2bf5200

Please sign in to comment.