@ansible/ansible-ui-framework
Version:
A framework for building applications using PatternFly.
18 lines (17 loc) • 550 B
TypeScript
import { ReactElement, ReactNode } from 'react';
import { PFColor } from '../components/pfcolors';
export interface TextCellProps {
icon?: ReactNode;
iconSize?: 'sm' | 'md' | 'lg';
iconAlign?: 'left' | 'right';
text?: string | null;
to?: string;
onClick?: () => void;
color?: PFColor;
iconColor?: PFColor;
maxWidth?: number;
disableLinks?: boolean;
tooltip?: ReactElement;
tooltipId?: number;
}
export declare function TextCell(props: Readonly<TextCellProps>): import("react/jsx-runtime").JSX.Element;