File size: 369 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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>
	);
}