Skip to content

Commit

Permalink
fix tabs.d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
ggazzo committed Jul 20, 2021
1 parent 6c74576 commit ed40c97
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions packages/fuselage/src/components/Tabs/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { ComponentProps, ForwardRefExoticComponent } from 'react';

import { Box } from '../Box';

type TabsProps = ComponentProps<typeof Box> ;

export const Tabs: ForwardRefExoticComponent<TabsProps>;

type TabsItemProps = ComponentProps<typeof Box> & {
selected?: boolean;
disabled?: boolean;
};
export const TabsItem: ForwardRefExoticComponent<TabsItemProps>;

0 comments on commit ed40c97

Please sign in to comment.