signoz/frontend/src/components/TabLabel/TabLabel.interfaces.ts

6 lines
94 B
TypeScript
Raw Normal View History

export type TabLabelProps = {
isDisabled: boolean;
label: string;
tooltipText?: string;
};