[WEB-2388] chore: theme changes and workspace draft issue total count updated (#5805)

* chore: theme changes and total count updated

* chore: code refactor
This commit is contained in:
Anmol Singh Bhatia 2024-10-11 17:57:48 +05:30 committed by GitHub
parent 6200890693
commit c9dbd1d5d1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 23 additions and 6 deletions

View file

@ -1,3 +1,4 @@
import { FC } from "react";
import { observer } from "mobx-react";
// types
import { IIssueDisplayProperties } from "@plane/types";
@ -28,6 +29,13 @@ type TIssueIdentifierWithDetails = TIssueIdentifierBaseProps & {
export type TIssueIdentifierProps = TIssueIdentifierFromStore | TIssueIdentifierWithDetails;
type TIssueTypeIdentifier = {
issueTypeId: string;
size?: "xs" | "sm" | "md" | "lg";
};
export const IssueTypeIdentifier: FC<TIssueTypeIdentifier> = observer((props) => <></>);
type TIdentifierTextProps = {
identifier: string;
enableClickToCopyIdentifier?: boolean;