TabComponentProps
interface TabComponentProps {
/**
* tabs
*/
tabs: Tab[]
/**
* selected tab id
*/
selected: string,
/**
* on change tab
*/
onChangeTab: (tab: string) => void,
/**
* direction of tabs
*/
direction?: 'vertical' | 'horizontal',
/**
* position of tabs
*/
position?: 'top' | 'bottom' | 'left' | 'right'
/**
* tab component styles
*/
styles?: TabComponentStyles
}
Usage
import {TabComponentProps} from 'uxp/components';
Last updated