import * as React from 'react'; import styles from '@breakaway/react-styles/css/components/Tabs/tabs'; import { OUIAProps } from '../../helpers'; import { TabButton } from './TabButton'; import { TabsContext } from './TabsContext'; import { css } from '@breakaway/react-styles'; import { Tooltip } from '../Tooltip'; import { Button } from '../Button'; import TimesIcon from '@patternfly/react-icons/dist/esm/icons/times-icon'; export interface TabProps extends Omit, 'title'>, OUIAProps { /** content rendered inside the Tab content area. */ children?: React.ReactNode; /** additional classes added to the Tab */ className?: string; /** URL associated with the Tab. A Tab with an href will render as an instead of a )} ); }; export const Tab = React.forwardRef((props: TabProps, ref: React.Ref) => ); Tab.displayName = 'Tab';