import { Pill } from '../pill'; import { Square3Stack3DIcon } from '@heroicons/react/24/outline'; export interface TargetConfigurationGroupHeaderProps { targetGroupName: string; targetsNumber: number; className?: string; showIcon?: boolean; } export const TargetConfigurationGroupHeader = ({ targetGroupName, targetsNumber, className = '', }: TargetConfigurationGroupHeaderProps) => { return (
{targetGroupName}{' '} {targetGroupName !== 'Others' && ( )}
); };