feat(HistoriaClinica): agregar iconos a los items del menu select

This commit is contained in:
2026-08-12 20:49:01 +00:00
parent 2734aad25f
commit ed31b23159
+10 -10
View File
@@ -546,16 +546,16 @@ export function HistoriaClinica({
<SelectContent> <SelectContent>
<SelectGroup> <SelectGroup>
<SelectLabel>Menú</SelectLabel> <SelectLabel>Menú</SelectLabel>
<SelectItem value="evoluciones">Evoluciones ({evoluciones.length})</SelectItem> <SelectItem value="evoluciones"><div className="flex items-center gap-2"><FileText className="h-4 w-4 text-muted-foreground" /> <span>Evoluciones ({evoluciones.length})</span></div></SelectItem>
<SelectItem value="indicaciones">Indicaciones ({indicacionesActivas.length})</SelectItem> <SelectItem value="indicaciones"><div className="flex items-center gap-2"><List className="h-4 w-4 text-muted-foreground" /> <span>Indicaciones ({indicacionesActivas.length})</span></div></SelectItem>
<SelectItem value="glucemias">Glucemias ({glucemias.length})</SelectItem> <SelectItem value="glucemias"><div className="flex items-center gap-2"><Droplet className="h-4 w-4 text-muted-foreground" /> <span>Glucemias ({glucemias.length})</span></div></SelectItem>
<SelectItem value="laboratorios">Laboratorio ({laboratorios.length})</SelectItem> <SelectItem value="laboratorios"><div className="flex items-center gap-2"><FlaskConical className="h-4 w-4 text-muted-foreground" /> <span>Laboratorio ({laboratorios.length})</span></div></SelectItem>
<SelectItem value="acidobase">EAB ({acidosBase.length})</SelectItem> <SelectItem value="acidobase"><div className="flex items-center gap-2"><Activity className="h-4 w-4 text-muted-foreground" /> <span>EAB ({acidosBase.length})</span></div></SelectItem>
<SelectItem value="cultivos">Cultivos ({cultivos.length})</SelectItem> <SelectItem value="cultivos"><div className="flex items-center gap-2"><Microscope className="h-4 w-4 text-muted-foreground" /> <span>Cultivos ({cultivos.length})</span></div></SelectItem>
<SelectItem value="atb">ATB ({atb.length})</SelectItem> <SelectItem value="atb"><div className="flex items-center gap-2"><Pill className="h-4 w-4 text-muted-foreground" /> <span>ATB ({atb.length})</span></div></SelectItem>
<SelectItem value="estudios">Estudios ({estudiosComplementarios.length})</SelectItem> <SelectItem value="estudios"><div className="flex items-center gap-2"><ClipboardList className="h-4 w-4 text-muted-foreground" /> <span>Estudios ({estudiosComplementarios.length})</span></div></SelectItem>
<SelectItem value="interconsultas">Interconsultas ({interconsultas.length})</SelectItem> <SelectItem value="interconsultas"><div className="flex items-center gap-2"><Users className="h-4 w-4 text-muted-foreground" /> <span>Interconsultas ({interconsultas.length})</span></div></SelectItem>
<SelectItem value="pendientes">Pendientes ({pendientesActivos.length})</SelectItem> <SelectItem value="pendientes"><div className="flex items-center gap-2"><ListTodo className="h-4 w-4 text-muted-foreground" /> <span>Pendientes ({pendientesActivos.length})</span></div></SelectItem>
</SelectGroup> </SelectGroup>
</SelectContent> </SelectContent>
</Select> </Select>