signoz/frontend/src/components/TabLabel/TabLabel.interfaces.ts
2023-07-07 18:05:42 +05:30

6 lines
94 B
TypeScript

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