import React from 'react'; export type SelectLabelProps = React.HTMLAttributes & { idRef?: string; label?: string; hasValue: boolean; }; export const SelectLabel: React.FC = ({ idRef, label, hasValue }) => { if (!label) return null; return ( {`${label}${hasValue ? ': ' : ''}`} ); };