NODEDC_TASKMANAGER/plane-src/apps/web/ce/components/projects/external-contours/state-pill.tsx

32 lines
928 B
TypeScript

/**
* Copyright (c) 2023-present Plane Software, Inc. and contributors
* SPDX-License-Identifier: AGPL-3.0-only
* See the LICENSE file for details.
*/
import { useTranslation } from "@plane/i18n";
import { StateGroupIcon } from "@plane/propel/icons";
import type { TExternalContourRequest } from "@plane/types";
type Props = {
request: TExternalContourRequest;
iconSize?: string;
};
export function ExternalContourStatePill(props: Props) {
const { request, iconSize = "size-3.5" } = props;
const { t } = useTranslation();
const state = request.issue.state_detail;
return (
<div className="inline-flex items-center gap-1.5 text-13 font-medium text-secondary">
<StateGroupIcon
stateGroup={state?.group ?? "backlog"}
color={state?.color}
className={`${iconSize} shrink-0`}
/>
<span className="whitespace-nowrap">{state?.name || t("state")}</span>
</div>
);
}