@ansible/ansible-ui-framework
Version:
A framework for building applications using PatternFly.
19 lines (18 loc) • 451 B
TypeScript
type LabelWithLink = {
name: string;
link: string;
};
type LabelsWithLinksProps = {
labels?: never;
labelsWithLinks: LabelWithLink[];
numLabels?: number;
noWrap?: boolean;
};
type LabelsProps = {
labels: string[];
labelsWithLinks?: never;
numLabels?: number;
noWrap?: boolean;
};
export declare function LabelsCell(props: LabelsProps | LabelsWithLinksProps): import("react/jsx-runtime").JSX.Element;
export {};