@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
9 lines • 406 B
TypeScript
import * as React from 'react';
export interface TabTitleTextProps extends React.HTMLProps<HTMLSpanElement> {
/** Text to be rendered inside the tab button title. */
children: React.ReactNode;
/** additional classes added to the tab title text */
className?: string;
}
export declare const TabTitleText: React.FunctionComponent<TabTitleTextProps>;
//# sourceMappingURL=TabTitleText.d.ts.map