wix-style-react
Version:
wix-style-react
16 lines (13 loc) • 448 B
TypeScript
import * as React from 'react';
import { IconElement } from '../common';
export interface VerticalTabsItemProps {
children?: React.ReactNode;
type?: VerticalTabsItemType;
dataHook?: string;
prefixIcon?: IconElement;
suffixIcon?: IconElement;
disabled?: boolean;
id?: number;
}
export default class VerticalTabsItem extends React.PureComponent<VerticalTabsItemProps> {}
export type VerticalTabsItemType = 'tab' | 'action' | 'title';