Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { FormLabel } from '../forms';
// Prevents the event from bubbling up the DOM tree
const stopPropagation = ( event ) => event.stopPropagation();
export default function SelectDropdownLabel( { children } ) {
return (
<li onClick={ stopPropagation } role="presentation" className="select-dropdown__label">
<FormLabel>{ children }</FormLabel>
</li>
);
}