+ );
+ }
+
// data-clipboard-text and the container ref are used by clipboard.js
// to copy text. Note that this wont have as nice a failure mode.
return (
@@ -122,9 +131,9 @@ export default function CopyButton({
onClick={handleCopyButtonClick}
>
Copied!}
+ content={popoverContent}
active={showingFeedback}
- coloring={themeTooltip}
+ coloring={tooltipColoring}
placement="top"
alignment="center"
hideWhenAnchorIsOffscreen={true}
@@ -133,7 +142,8 @@ export default function CopyButton({
{body}
@@ -181,7 +191,11 @@ CopyButton.propTypes = {
/**
* Either `'light'` or `'dark'`. This value is passed as the `coloring` prop found in Tooltip and Popover.
*/
- themeTooltip: PropTypes.oneOf(['light', 'dark']),
+ tooltipColoring: PropTypes.oneOf(['light', 'dark']),
+ /**
+ * `'xs'` (extra small), `'s'` (small), or `'none'` (no size class).
+ */
+ tooltipTextSize: PropTypes.oneOf(['xs', 's', 'none']),
/** Optional content to represent the button. */
children: PropTypes.node
};
diff --git a/src/components/copy-button/examples/copy-button-c.tsx b/src/components/copy-button/examples/copy-button-c.tsx
index d9f7cd2a..4a504258 100644
--- a/src/components/copy-button/examples/copy-button-c.tsx
+++ b/src/components/copy-button/examples/copy-button-c.tsx
@@ -7,7 +7,7 @@ import CopyButton from '../copy-button';
export default function Example() {
return (