import { LabelCombobox } from '@/components/shared/label-combobox'; import { type Label } from '@/types/label'; import { __ } from '@/utils/i18n'; import { useState } from 'react'; interface BulkLabelSelectProps { labels: Label[]; onLabelsChange: (labelIds: string[]) => void; disabled?: boolean; } export function BulkLabelSelect({ labels, onLabelsChange, disabled = false, }: BulkLabelSelectProps) { const [value, setValue] = useState([]); function handleChange(newValue: string[]) { setValue(newValue); onLabelsChange(newValue); } return ( ); }