diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md
index 6e0bf015..167272f8 100644
--- a/COMPONENT_INDEX.md
+++ b/COMPONENT_INDEX.md
@@ -3986,12 +3986,13 @@ None.
### Props
-| Prop name | Kind | Reactive | Type | Default value | Description |
-| :-------------- | :--------------- | :------- | :---------------------------------------- | -------------------------------- | ------------------------------------------- |
-| selected | let | Yes | number | 0 | Specify the selected tab index |
-| type | let | No | "default" | "container" | "default" | Specify the type of tabs |
-| iconDescription | let | No | string | "Show menu options" | Specify the ARIA label for the chevron icon |
-| triggerHref | let | No | string | "#" | Specify the tab trigger href attribute |
+| Prop name | Kind | Reactive | Type | Default value | Description |
+| :-------------- | :--------------- | :------- | :---------------------------------------- | -------------------------------- | -------------------------------------------- |
+| selected | let | Yes | number | 0 | Specify the selected tab index |
+| type | let | No | "default" | "container" | "default" | Specify the type of tabs |
+| autoWidth | let | No | boolean | false | Set to `true` for tabs to have an auto-width |
+| iconDescription | let | No | string | "Show menu options" | Specify the ARIA label for the chevron icon |
+| triggerHref | let | No | string | "#" | Specify the tab trigger href attribute |
### Slots
diff --git a/docs/src/COMPONENT_API.json b/docs/src/COMPONENT_API.json
index f718c1ed..3c149a57 100644
--- a/docs/src/COMPONENT_API.json
+++ b/docs/src/COMPONENT_API.json
@@ -10997,6 +10997,17 @@
"constant": false,
"reactive": false
},
+ {
+ "name": "autoWidth",
+ "kind": "let",
+ "description": "Set to `true` for tabs to have an auto-width",
+ "type": "boolean",
+ "value": "false",
+ "isFunction": false,
+ "isFunctionDeclaration": false,
+ "constant": false,
+ "reactive": false
+ },
{
"name": "iconDescription",
"kind": "let",
diff --git a/docs/src/pages/components/Tabs.svx b/docs/src/pages/components/Tabs.svx
index 8ee54f13..e89b5e44 100644
--- a/docs/src/pages/components/Tabs.svx
+++ b/docs/src/pages/components/Tabs.svx
@@ -20,6 +20,23 @@ components: ["Tabs", "Tab", "TabContent", "TabsSkeleton"]
+### Auto width
+
+By default, the width of each tab is set to `10rem`.
+
+Set `autoWidth` to `true` for tabs to have an automatically set width.
+
+