2023-11-18 20:16:11 +00:00
|
|
|
import { Component } from "lucide-react";
|
|
|
|
|
|
|
|
interface ILabelName {
|
|
|
|
name: string;
|
|
|
|
color: string;
|
|
|
|
isGroup: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const LabelName = (props: ILabelName) => {
|
|
|
|
const { name, color, isGroup } = props;
|
|
|
|
|
|
|
|
return (
|
2024-06-12 06:38:19 +00:00
|
|
|
<div className="flex items-center gap-3 pl-2">
|
2023-11-18 20:16:11 +00:00
|
|
|
{isGroup ? (
|
|
|
|
<Component className="h-3.5 w-3.5" color={color} />
|
|
|
|
) : (
|
|
|
|
<span
|
|
|
|
className="h-3.5 w-3.5 flex-shrink-0 rounded-full"
|
|
|
|
style={{
|
|
|
|
backgroundColor: color && color !== "" ? color : "#000",
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
<h6 className="text-sm">{name}</h6>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|