Skip to content

Commit

Permalink
revert change
Browse files Browse the repository at this point in the history
  • Loading branch information
andreadelrio committed Apr 22, 2020
1 parent 6caa1ae commit 3568f96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export interface EuiCollapsibleNavGroupInterface extends CommonProps {
/**
* Title sizing equivelant to EuiTitle, but only `s` and smaller
*/
titleSize?: Exclude<EuiTitleProps['size'], 'l' | 'm'>;
titleSize?: Omit<EuiTitleProps['size'], 'l' | 'm'>;
}

type GroupAsAccordion = EuiCollapsibleNavGroupInterface &
Expand Down
2 changes: 1 addition & 1 deletion src/components/steps/step_number.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export interface EuiStepNumberProps {
*/
isHollow?: boolean;
/**
* Size of the title. See EuiTitle for options ('s', 'm', 'l'... etc)
* Title sizing equivalent to EuiTitle, but only `m`, `s` and `xs`. Defaults to `s`
*/
titleSize?: Exclude<EuiTitleProps['size'], 'xxxs' | 'xxs' | 'l'>;
}
Expand Down

0 comments on commit 3568f96

Please sign in to comment.