Is this a new component or an extension of an existing one?
Existing one
Describe the feature
We need to expose input onBlur, onFocus event handlers for clipboard copy component so that it can be used for validations via external libraries.
<ClipboardCopy
onBlur={(e) => validate(e)} // this wont work
onFocus={(e) => focus(e)} // this wont work
name="Hello word" // wont work
id="hey" // wont work
copyAriaLabel="Copy basic example"
hoverTip="Copy"
clickTip="Copied">
This is editable
</ClipboardCopy>