@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 TabTitleIconProps extends React.HTMLProps<HTMLSpanElement> {
/** Icon to be rendered inside the tab button title. */
children: React.ReactNode;
/** additional classes added to the tab title icon */
className?: string;
}
export declare const TabTitleIcon: React.FunctionComponent<TabTitleIconProps>;
//# sourceMappingURL=TabTitleIcon.d.ts.map