import * as React from 'react'; import AngleRightIcon from '@patternfly/react-icons/dist/esm/icons/angle-right-icon'; import AngleDownIcon from '@patternfly/react-icons/dist/esm/icons/angle-down-icon'; import { Button } from '../Button'; export interface ClipboardCopyToggleProps extends Omit, 'ref' | 'type' | 'size' | 'tabIndex' | 'aria-label'> { onClick: (event: React.MouseEvent) => void; id: string; textId: string; contentId: string; isExpanded?: boolean; className?: string; } export const ClipboardCopyToggle: React.FunctionComponent = ({ onClick, id, textId, contentId, isExpanded = false, ...props }: ClipboardCopyToggleProps) => ( ); ClipboardCopyToggle.displayName = 'ClipboardCopyToggle';