With an Enum (short for enumeration) you can present a list of options to the user. In this example, I let the user pick which cursor should be shown when you hover over a button. In the component, I have a standard <button>, and I set its CSS cursor property to the value of props.cursor. […]