diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md
index b846ae43..b4abff4c 100644
--- a/COMPONENT_INDEX.md
+++ b/COMPONENT_INDEX.md
@@ -612,25 +612,25 @@ export type ColumnBreakpoint = ColumnSize | ColumnSizeDescriptor;
### Props
-| Prop name | Required | Kind | Reactive | Type | Default value | Description |
-| :------------ | :------- | :--------------- | :------- | -------------------------------------------------------------------------------------------------- | ---------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| as | No | let
| No | boolean
| false
| Set to `true` to render a custom HTML element
Props are destructured as `props` in the default slot (e.g., <Column let:props><article {...props}>...</article></Column>) |
-| noGutter | No | let
| No | boolean
| false
| Set to `true` to remove the gutter |
-| noGutterLeft | No | let
| No | boolean
| false
| Set to `true` to remove the left gutter |
-| noGutterRight | No | let
| No | boolean
| false
| Set to `true` to remove the right gutter |
-| padding | No | let
| No | boolean
| false
| Set to `true` to add top and bottom padding to the column |
-| aspectRatio | No | let
| No | "2x1" | "16x9" | "9x16" | "1x2" | "4x3" | "3x4" | "1x1"
| undefined
| Specify the aspect ratio of the column |
-| sm | No | let
| No | ColumnBreakpoint
| undefined
| Set the small breakpoint |
-| md | No | let
| No | ColumnBreakpoint
| undefined
| Set the medium breakpoint |
-| lg | No | let
| No | ColumnBreakpoint
| undefined
| Set the large breakpoint |
-| xlg | No | let
| No | ColumnBreakpoint
| undefined
| Set the extra large breakpoint |
-| max | No | let
| No | ColumnBreakpoint
| undefined
| Set the maximum breakpoint |
+| Prop name | Required | Kind | Reactive | Type | Default value | Description |
+| :------------ | :------- | :--------------- | :------- | -------------------------------------------------------------------------------------------------- | ---------------------- | --------------------------------------------------------- |
+| tag | No | let
| No | string
| "div"
| Specify the element tag |
+| noGutter | No | let
| No | boolean
| false
| Set to `true` to remove the gutter |
+| noGutterLeft | No | let
| No | boolean
| false
| Set to `true` to remove the left gutter |
+| noGutterRight | No | let
| No | boolean
| false
| Set to `true` to remove the right gutter |
+| padding | No | let
| No | boolean
| false
| Set to `true` to add top and bottom padding to the column |
+| aspectRatio | No | let
| No | "2x1" | "16x9" | "9x16" | "1x2" | "4x3" | "3x4" | "1x1"
| undefined
| Specify the aspect ratio of the column |
+| sm | No | let
| No | ColumnBreakpoint
| undefined
| Set the small breakpoint |
+| md | No | let
| No | ColumnBreakpoint
| undefined
| Set the medium breakpoint |
+| lg | No | let
| No | ColumnBreakpoint
| undefined
| Set the large breakpoint |
+| xlg | No | let
| No | ColumnBreakpoint
| undefined
| Set the extra large breakpoint |
+| max | No | let
| No | ColumnBreakpoint
| undefined
| Set the maximum breakpoint |
### Slots
-| Slot name | Default | Props | Fallback |
-| :-------- | :------ | :------------------------------------------------------------ | :------- |
-| -- | Yes | {props: { class: string; [key: string]: any; }}
| -- |
+| Slot name | Default | Props | Fallback |
+| :-------- | :------ | :---- | :------- |
+| -- | Yes | -- | -- |
### Events
diff --git a/docs/src/COMPONENT_API.json b/docs/src/COMPONENT_API.json
index eae3574b..3306cf40 100644
--- a/docs/src/COMPONENT_API.json
+++ b/docs/src/COMPONENT_API.json
@@ -1294,11 +1294,11 @@
"filePath": "src/Grid/Column.svelte",
"props": [
{
- "name": "as",
+ "name": "tag",
"kind": "let",
- "description": "Set to `true` to render a custom HTML element\nProps are destructured as `props` in the default slot (e.g.,