Skip to content

Commit

Permalink
improve prop & comment
Browse files Browse the repository at this point in the history
Signed-off-by: 8845musign <hiroki.yokouchi@dr-ubie.com>
  • Loading branch information
8845musign committed Apr 26, 2024
1 parent 4556512 commit 8d39975
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/components/Box/Box.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ type PropsWithoutText = BaseProps & {
*/
textType?: undefined;
/**
* フォントサイズの抽象値。合わせてtextTypeの指定が必須
* フォントサイズの抽象値。合わせてtextTypeの指定が必須で、typeに応じた値が指定可能
*/
textSize?: unknown;
textSize?: never;
/**
* 行送りの抽象値(`line-height`)。合わせてtextTypeとtextSizeの指定が必須
* 行送りの抽象値(`line-height`)。合わせてtextTypeとtextSizeの指定が必須で、typeに応じた値が指定可能
*/
textLeading?: unknown;
textLeading?: never;
};

type PropsWithTextBody = BaseProps & {
Expand All @@ -77,11 +77,11 @@ type PropsWithTextBody = BaseProps & {
*/
textType: Extract<TextType, 'body'>;
/**
* フォントサイズの抽象値。合わせてtextTypeの指定が必須
* フォントサイズの抽象値。合わせてtextTypeの指定が必須で、typeに応じた値が指定可能
*/
textSize?: BodyFontSize;
/**
* 行送りの抽象値(`line-height`)。合わせてtextTypeとtextSizeの指定が必須
* 行送りの抽象値(`line-height`)。合わせてtextTypeとtextSizeの指定が必須で、typeに応じた値が指定可能
*/
textLeading?: BodyLeading;
};
Expand All @@ -92,11 +92,11 @@ type PropsWithTextNote = BaseProps & {
*/
textType: Extract<TextType, 'note'>;
/**
* フォントサイズの抽象値。合わせてtextTypeの指定が必須
* フォントサイズの抽象値。合わせてtextTypeの指定が必須で、typeに応じた値が指定可能
*/
textSize?: NoteFontSize;
/**
* 行送りの抽象値(`line-height`)。合わせてtextTypeとtextSizeの指定が必須
* 行送りの抽象値(`line-height`)。合わせてtextTypeとtextSizeの指定が必須で、typeに応じた値が指定可能
*/
textLeading?: NoteLeading;
};
Expand Down

0 comments on commit 8d39975

Please sign in to comment.