diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md
index b2143d09..294dae60 100644
--- a/COMPONENT_INDEX.md
+++ b/COMPONENT_INDEX.md
@@ -1224,8 +1224,6 @@ None.
| light | No | let
| No | boolean
| false
| Set to `true` to enable the light variant |
| tileCollapsedIconText | No | let
| No | string
| "Interact to expand Tile"
| Specify the icon text of the collapsed tile |
| tileExpandedIconText | No | let
| No | string
| "Interact to collapse Tile"
| Specify the icon text of the expanded tile |
-| tileExpandedLabel | No | let
| No | string
| ""
| Specify the icon label of the expanded tile |
-| tileCollapsedLabel | No | let
| No | string
| ""
| Specify the icon label of the collapsed tile |
| tabindex | No | let
| No | string
| "0"
| Specify the tabindex |
| id | No | let
| No | string
| "ccs-" + Math.random().toString(36)
| Set an id for the top-level div element |
diff --git a/docs/src/COMPONENT_API.json b/docs/src/COMPONENT_API.json
index b0e5ab57..a6a63cd6 100644
--- a/docs/src/COMPONENT_API.json
+++ b/docs/src/COMPONENT_API.json
@@ -3642,30 +3642,6 @@
"constant": false,
"reactive": false
},
- {
- "name": "tileExpandedLabel",
- "kind": "let",
- "description": "Specify the icon label of the expanded tile",
- "type": "string",
- "value": "\"\"",
- "isFunction": false,
- "isFunctionDeclaration": false,
- "isRequired": false,
- "constant": false,
- "reactive": false
- },
- {
- "name": "tileCollapsedLabel",
- "kind": "let",
- "description": "Specify the icon label of the collapsed tile",
- "type": "string",
- "value": "\"\"",
- "isFunction": false,
- "isFunctionDeclaration": false,
- "isRequired": false,
- "constant": false,
- "reactive": false
- },
{
"name": "tabindex",
"kind": "let",
diff --git a/src/Tile/ExpandableTile.svelte b/src/Tile/ExpandableTile.svelte
index fe8ae386..5b59943a 100644
--- a/src/Tile/ExpandableTile.svelte
+++ b/src/Tile/ExpandableTile.svelte
@@ -17,12 +17,6 @@
/** Specify the icon text of the expanded tile */
export let tileExpandedIconText = "Interact to collapse Tile";
- /** Specify the icon label of the expanded tile */
- export let tileExpandedLabel = "";
-
- /** Specify the icon label of the collapsed tile */
- export let tileCollapsedLabel = "";
-
/** Specify the tabindex */
export let tabindex = "0";
@@ -92,7 +86,6 @@