);
}
diff --git a/polaris-react/src/components/Button/Button.tsx b/polaris-react/src/components/Button/Button.tsx
index 850ae4b1cf5..469bf4c6a2b 100644
--- a/polaris-react/src/components/Button/Button.tsx
+++ b/polaris-react/src/components/Button/Button.tsx
@@ -51,7 +51,7 @@ export interface ButtonProps extends BaseButton {
removeUnderline?: boolean;
/** Icon to display to the left of the button content */
icon?: React.ReactElement | IconSource;
- /** Disclosure button connected right of the button. Toggles a popover action list. */
+ /** @deprecated See the split example to replicate this prop */
connectedDisclosure?: ConnectedDisclosure;
/** Indicates whether or not the button is the primary navigation link when rendered inside of an `IndexTable.Row` */
dataPrimaryLink?: boolean;
diff --git a/polaris.shopify.com/pages/examples/button-split.tsx b/polaris.shopify.com/pages/examples/button-split.tsx
index 6f2f800677f..b51427f0025 100644
--- a/polaris.shopify.com/pages/examples/button-split.tsx
+++ b/polaris.shopify.com/pages/examples/button-split.tsx
@@ -1,19 +1,57 @@
-import {Button} from '@shopify/polaris';
+import {ActionList, Button, ButtonGroup, Popover} from '@shopify/polaris';
import React from 'react';
import {withPolarisExample} from '../../src/components/PolarisExampleWrapper';
+import {ChevronDownMinor} from '@shopify/polaris-icons';
function ButtonExample() {
+ const [active, setActive] = React.useState(false);
return (