UNPKG

@sap-ux/ui-components

Version:
29 lines 809 B
import React from 'react'; import type { IPivotProps, IPivotStyles } from '@fluentui/react'; import { PivotItem } from '@fluentui/react'; export { PivotItem as UITabsItem }; export interface UITabsProps extends IPivotProps { items: string[]; } /** * UITabs component. * based on https://developer.microsoft.com/en-us/fluentui#/controls/web/pivot * * @exports * @class UITabs * @extends {React.Component<IPivotProps, {}>} */ export declare class UITabs extends React.Component<UITabsProps, {}> { /** * Initializes component properties. * * @param {UITabsProps} props */ constructor(props: UITabsProps); protected setTabsStyle: () => Partial<IPivotStyles>; /** * @returns {JSX.Element} */ render(): JSX.Element; } //# sourceMappingURL=UITabs.d.ts.map