mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
96399c7112
* feat: filters in plane deploy implemented multi-level dropdown for plane deploy * style: spacing and fonts * feat: plane deploy implemented authentication/theming, created/modified all the required store & services * devL reactions, voting, comments and theme
20 lines
691 B
TypeScript
20 lines
691 B
TypeScript
"use client";
|
|
|
|
export const IssueBlockLabels = ({ labels }: any) => (
|
|
<div className="relative flex items-center flex-wrap gap-1">
|
|
{labels &&
|
|
labels.length > 0 &&
|
|
labels.map((_label: any) => (
|
|
<div
|
|
key={_label?.id}
|
|
className="flex cursor-default items-center flex-shrink-0 rounded-md border border-custom-border-300 px-2.5 py-1 text-xs shadow-sm"
|
|
>
|
|
<div className="flex items-center gap-1.5 text-custom-text-200">
|
|
<div className="w-2 h-2 rounded-full" style={{ backgroundColor: `${_label?.color}` }} />
|
|
<div className="text-xs">{_label?.name}</div>
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
);
|