Skip to content

Commit

Permalink
add missing props
Browse files Browse the repository at this point in the history
  • Loading branch information
kmcfaul committed Oct 19, 2022
1 parent 5039aa3 commit fc359cb
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ export interface ClipboardCopyProps extends Omit<React.HTMLProps<HTMLDivElement>
children: React.ReactNode;
/** Additional actions for inline clipboard copy. Should be wrapped with ClipboardCopyAction. */
additionalActions?: React.ReactNode;
/** Value to overwrite the randomly generated data-ouia-component-id.*/
ouiaId?: number | string;
/** Set the value of data-ouia-safe. Only set to true when the component is in a static state, i.e. no animations are occurring. At all other times, this value must be false. */
ouiaSafe?: boolean;
}

export class ClipboardCopy extends React.Component<ClipboardCopyProps, ClipboardCopyState> {
Expand Down

0 comments on commit fc359cb

Please sign in to comment.