diff --git a/packages/react-components/react-infobutton/stories/InfoButton/InfoButtonBestPractices.md b/packages/react-components/react-infobutton/stories/InfoButton/InfoButtonBestPractices.md
deleted file mode 100644
index 33b8e50ed5a788..00000000000000
--- a/packages/react-components/react-infobutton/stories/InfoButton/InfoButtonBestPractices.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-Best Practices
-
-
-### Do
-
-- Prefer using an `InfoLabel` if the `InfoButton` is intended to be associated with a label.
-- Set `aria-label` to an appropriate value if the `InfoButton` is not associated with a label.
-- Add `aria-owns` to the trigger's parent element using the id of the `info` slot. This is done automatically by `InfoLabel`.
-
-### Don't
-
-- Because the Popover isn't always visible, don't include information that people must know in order to complete the field.
-
-
diff --git a/packages/react-components/react-infobutton/stories/InfoButton/InfoButtonDefault.stories.tsx b/packages/react-components/react-infobutton/stories/InfoButton/InfoButtonDefault.stories.tsx
deleted file mode 100644
index 5f19c38a001f13..00000000000000
--- a/packages/react-components/react-infobutton/stories/InfoButton/InfoButtonDefault.stories.tsx
+++ /dev/null
@@ -1,41 +0,0 @@
-import * as React from 'react';
-import { InfoButton } from '@fluentui/react-infobutton';
-import { Label, makeStyles, useId } from '@fluentui/react-components';
-import type { InfoButtonProps } from '@fluentui/react-infobutton';
-import type { PopoverProps } from '@fluentui/react-components';
-
-const useStyles = makeStyles({
- infoButton: {
- verticalAlign: 'top',
- },
-});
-
-export const Default = (props: Partial) => {
- const styles = useStyles();
- const labelId = useId('label');
- const infobuttonId = useId('infobutton');
- const infobuttonInfoId = infobuttonId + '__info';
- const [open, setOpen] = React.useState(false);
-
- const onOpenChange: PopoverProps['onOpenChange'] = (e, data) => {
- setOpen(data.open);
- };
-
- return (
-
-
-
-
- );
-};
diff --git a/packages/react-components/react-infobutton/stories/InfoButton/InfoButtonDescription.md b/packages/react-components/react-infobutton/stories/InfoButton/InfoButtonDescription.md
deleted file mode 100644
index ddaa4db3ef9fac..00000000000000
--- a/packages/react-components/react-infobutton/stories/InfoButton/InfoButtonDescription.md
+++ /dev/null
@@ -1,14 +0,0 @@
-InfoButtons provide a way to display additional information about a form field or an area in the UI.
-
-
-
-> **⚠️ Preview components are considered unstable:**
->
-> ```jsx
->
-> import { InfoButton } from '@fluentui/react-components/unstable';
->
-> ```
->
-> - Features and APIs may change before final release
-> - Please contact us if you intend to use this in your product
diff --git a/packages/react-components/react-infobutton/stories/InfoButton/InfoButtonSize.stories.tsx b/packages/react-components/react-infobutton/stories/InfoButton/InfoButtonSize.stories.tsx
deleted file mode 100644
index 0805e5dac432d8..00000000000000
--- a/packages/react-components/react-infobutton/stories/InfoButton/InfoButtonSize.stories.tsx
+++ /dev/null
@@ -1,66 +0,0 @@
-import * as React from 'react';
-import { InfoButton } from '@fluentui/react-infobutton';
-import { Label, makeStyles, shorthands, useId } from '@fluentui/react-components';
-import type { InfoButtonProps } from '@fluentui/react-infobutton';
-import type { PopoverProps } from '@fluentui/react-components';
-
-const useStyles = makeStyles({
- base: {
- alignItems: 'start',
- display: 'flex',
- flexDirection: 'column',
- ...shorthands.gap('80px'),
- ...shorthands.padding('20px'),
- },
- infoButton: {
- verticalAlign: 'top',
- },
-});
-
-const InfoButtonSize: React.FC<{ size: InfoButtonProps['size'] }> = ({ size }) => {
- const styles = useStyles();
- const infobuttonInfoId = useId('infobuton__info');
- const [open, setOpen] = React.useState(false);
- const info = 'This is example information for an InfoButton.';
-
- const onOpenChange: PopoverProps['onOpenChange'] = (e, data) => {
- setOpen(data.open);
- };
-
- return (
-