/* eslint-disable react/destructuring-assignment */ import './MQCommon.styles.scss'; import { Color } from '@signozhq/design-tokens'; import { Tooltip } from 'antd'; import { DefaultOptionType } from 'antd/es/select'; import { Info } from 'lucide-react'; export function ComingSoon(): JSX.Element { return ( Join our Slack community for more details:{' '} e.stopPropagation()} > SigNoz Community } placement="top" overlayClassName="tooltip-overlay" >
Coming Soon
); } export function SelectMaxTagPlaceholder( omittedValues: Partial[], ): JSX.Element { return ( value).join(', ')}> + {omittedValues.length} ); } export function SelectLabelWithComingSoon({ label, }: { label: string; }): JSX.Element { return (
{label}
); }