Skip to content

Commit

Permalink
feat: types
Browse files Browse the repository at this point in the history
  • Loading branch information
kostasdano committed Oct 17, 2024
1 parent be52a1a commit fb82893
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/TabStepper/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export type TabStepItem = {
/** A unique id for the tab step item */
id: string;
/** The title of the step */
title: string;
title?: string;
/** The subtitle of the step */
subtitle?: string;
/** The status of the step */
Expand Down
2 changes: 1 addition & 1 deletion src/components/Tabs/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export type TabsProps = {

export type TabsContainerProps = {
/** The orientation of the Tab */
orientation: TabOrientation;
orientation?: TabOrientation;
/** The id of the selected tab */
selectedKey: TabKey;
/** Callback to change the selected tab */
Expand Down

0 comments on commit fb82893

Please sign in to comment.