import { FC } from "react"; // ui import { Tooltip } from "@plane/ui"; // types import { IIssueLabels } from "types"; type IssueLabelsListProps = { labels?: (IIssueLabels | undefined)[]; length?: number; showLength?: boolean; }; export const IssueLabelsList: FC = (props) => { const { labels } = props; return ( <> {labels && ( <> l?.name).join(", ")}>
{`${labels.length} Labels`}
)} ); };