Shared:Components:Tabs: fix types

This commit is contained in:
Timofey Boyko 2024-07-16 10:53:50 +03:00
parent 9f9d2bdbb7
commit 85831bfe6b

View File

@ -48,6 +48,8 @@ export interface TabsProps {
type?: TabsTypes;
/** Tab indentation for sticky positioning. */
stickyTop?: string;
/** Sets a tab class name */
className?: string;
/** Sets a callback function that is triggered when the tab is selected. */
onSelect?: (element: TTabItem) => void;
}