diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md
index 8380d7ab..6037ef9a 100644
--- a/COMPONENT_INDEX.md
+++ b/COMPONENT_INDEX.md
@@ -2959,12 +2959,11 @@ None.
### Props
-| Prop name | Kind | Reactive | Type | Default value | Description |
-| :------------- | :--------------- | :------- | :------------------- | ------------------ | ----------------------------------------- |
-| selectedValues | let
| Yes | any[]
| []
| Specify the selected tile's |
-| disabled | let
| No | boolean
| false
| Set to `true` to disable the tile group |
-| light | let
| No | boolean
| false
| Set to `true` to enable the light variant |
-| legend | let
| No | string
| ""
| Specify the legend text |
+| Prop name | Kind | Reactive | Type | Default value | Description |
+| :------------- | :--------------- | :------- | :------------------- | ------------------ | --------------------------------------- |
+| selectedValues | let
| Yes | any[]
| []
| Specify the selected tile's |
+| disabled | let
| No | boolean
| false
| Set to `true` to disable the tile group |
+| legend | let
| No | string
| ""
| Specify the legend text |
### Slots
diff --git a/docs/src/COMPONENT_API.json b/docs/src/COMPONENT_API.json
index edbd3a16..2f9de94f 100644
--- a/docs/src/COMPONENT_API.json
+++ b/docs/src/COMPONENT_API.json
@@ -8827,16 +8827,6 @@
"constant": false,
"reactive": false
},
- {
- "name": "light",
- "kind": "let",
- "description": "Set to `true` to enable the light variant",
- "type": "boolean",
- "value": "false",
- "isFunction": false,
- "constant": false,
- "reactive": false
- },
{
"name": "legend",
"kind": "let",
diff --git a/src/Tile/SelectableTileGroup.svelte b/src/Tile/SelectableTileGroup.svelte
index e11b30b4..9c966a9a 100644
--- a/src/Tile/SelectableTileGroup.svelte
+++ b/src/Tile/SelectableTileGroup.svelte
@@ -8,9 +8,6 @@
/** Set to `true` to disable the tile group */
export let disabled = false;
- /** Set to `true` to enable the light variant */
- export let light = false;
-
/** Specify the legend text */
export let legend = "";
diff --git a/types/Tile/SelectableTileGroup.d.ts b/types/Tile/SelectableTileGroup.d.ts
index 0eb14ebb..22d40b3e 100644
--- a/types/Tile/SelectableTileGroup.d.ts
+++ b/types/Tile/SelectableTileGroup.d.ts
@@ -13,12 +13,6 @@ export interface SelectableTileGroupProps extends svelte.JSX.HTMLAttributes