+
+ Read the quick-start guide to get started.
+
+
+ This link is{' '}
+
+ disabled
+
+ .
+
+
+
+ Inline link
+ {' '}
+ inside a sentence.
+
+
+);
+
+Example.parameters = {
+ docs: {
+ description: {
+ story:
+ 'Read `state.root["aria-disabled"]` to apply distinct disabled styles without checking props directly. This respects the accessibility semantics set by the base hook. Use `state.inline` to conditionally adjust display — block links may need `display: inline` when used inside text. Replace inline styles with CSS class names for production use.',
+ },
+ },
+};
diff --git a/packages/react-components/react-headless/stories/src/Link/index.stories.ts b/packages/react-components/react-headless/stories/src/Link/index.stories.ts
new file mode 100644
index 00000000000000..397b713d8d2b70
--- /dev/null
+++ b/packages/react-components/react-headless/stories/src/Link/index.stories.ts
@@ -0,0 +1,20 @@
+import type { Meta } from '@storybook/react-webpack5';
+import { LinkProps } from '@fluentui/react-headless';
+
+export { Example } from './ExampleLink.stories';
+
+const meta: Meta