mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
12 lines
480 B
TypeScript
12 lines
480 B
TypeScript
|
// ui
|
||
|
import { StateGroupIcon } from "@plane/ui";
|
||
|
|
||
|
export const IssueBlockState = ({ state }: any) => (
|
||
|
<div className="flex w-full items-center justify-between gap-1 rounded border-[0.5px] border-custom-border-300 px-2.5 py-1 text-xs shadow-sm duration-300 focus:outline-none">
|
||
|
<div className="flex w-full items-center gap-1.5">
|
||
|
<StateGroupIcon stateGroup={state.group} color={state.color} />
|
||
|
<div className="text-xs">{state?.name}</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|