diff --git a/esoui/ingame/group/zo_groupingtools_shared.xml b/esoui/ingame/group/zo_groupingtools_shared.xml
deleted file mode 100755
index 038112a..0000000
--- a/esoui/ingame/group/zo_groupingtools_shared.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<GuiXml>
-    <Controls>
-        <Control name="ZO_GroupingToolsSharedRoles" virtual="true">
-            <OnInitialized>
-                local tankIcon = self:GetNamedChild("Tank")
-                local healerIcon = self:GetNamedChild("Healer")
-                local damageIcon = self:GetNamedChild("Damage")
-                
-                self:SetHeight(zo_max(tankIcon:GetHeight(), healerIcon:GetHeight(), damageIcon:GetHeight()))
-                self:SetWidth(tankIcon:GetWidth() + healerIcon:GetWidth() + damageIcon:GetWidth())
-            </OnInitialized>
-            <Controls>
-                <Texture name="$(parent)Tank">
-                    <Dimensions x="32" y="32" />
-                    <Anchor point="LEFT" />
-                </Texture>
-                <Texture name="$(parent)Healer">
-                    <Dimensions x="32" y="32" />
-                    <Anchor point="LEFT" relativeTo="$(parent)Tank" relativePoint="RIGHT" />
-                </Texture>
-                <Texture name="$(parent)Damage">
-                    <Dimensions x="32" y="32" />
-                    <Anchor point="LEFT" relativeTo="$(parent)Healer" relativePoint="RIGHT" />
-                </Texture>
-            </Controls>
-        </Control>
-    </Controls>
-</GuiXml>