import { Component } from "lucide-react"; interface ILabelName { name: string; color: string; isGroup: boolean; } export const LabelName = (props: ILabelName) => { const { name, color, isGroup } = props; return (
{isGroup ? ( ) : ( )}
{name}
); };