diff --git a/src/components/HoverGroup.test.tsx b/src/components/HoverGroup.test.tsx
deleted file mode 100644
index ea3573f6..00000000
--- a/src/components/HoverGroup.test.tsx
+++ /dev/null
@@ -1,9 +0,0 @@
-import { render } from '@testing-library/react';
-import { HoverGroup } from './HoverGroup';
-
-describe('components/HoverGroup.tsx', () => {
- it('should render', () => {
- const tree = render(Hover Group);
- expect(tree).toMatchSnapshot();
- });
-});
diff --git a/src/components/HoverGroup.tsx b/src/components/HoverGroup.tsx
deleted file mode 100644
index 8a623cae..00000000
--- a/src/components/HoverGroup.tsx
+++ /dev/null
@@ -1,14 +0,0 @@
-import type { FC, ReactNode } from 'react';
-
-interface IHoverGroup {
- children: ReactNode;
-}
-
-// TODO - this is now deprecated
-export const HoverGroup: FC = ({ children }: IHoverGroup) => {
- return (
-
- {children}
-
- );
-};
diff --git a/src/components/__snapshots__/HoverGroup.test.tsx.snap b/src/components/__snapshots__/HoverGroup.test.tsx.snap
deleted file mode 100644
index 100f475e..00000000
--- a/src/components/__snapshots__/HoverGroup.test.tsx.snap
+++ /dev/null
@@ -1,74 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`components/HoverGroup.tsx should render 1`] = `
-{
- "asFragment": [Function],
- "baseElement":
-
- ,
- "container": ,
- "debug": [Function],
- "findAllByAltText": [Function],
- "findAllByDisplayValue": [Function],
- "findAllByLabelText": [Function],
- "findAllByPlaceholderText": [Function],
- "findAllByRole": [Function],
- "findAllByTestId": [Function],
- "findAllByText": [Function],
- "findAllByTitle": [Function],
- "findByAltText": [Function],
- "findByDisplayValue": [Function],
- "findByLabelText": [Function],
- "findByPlaceholderText": [Function],
- "findByRole": [Function],
- "findByTestId": [Function],
- "findByText": [Function],
- "findByTitle": [Function],
- "getAllByAltText": [Function],
- "getAllByDisplayValue": [Function],
- "getAllByLabelText": [Function],
- "getAllByPlaceholderText": [Function],
- "getAllByRole": [Function],
- "getAllByTestId": [Function],
- "getAllByText": [Function],
- "getAllByTitle": [Function],
- "getByAltText": [Function],
- "getByDisplayValue": [Function],
- "getByLabelText": [Function],
- "getByPlaceholderText": [Function],
- "getByRole": [Function],
- "getByTestId": [Function],
- "getByText": [Function],
- "getByTitle": [Function],
- "queryAllByAltText": [Function],
- "queryAllByDisplayValue": [Function],
- "queryAllByLabelText": [Function],
- "queryAllByPlaceholderText": [Function],
- "queryAllByRole": [Function],
- "queryAllByTestId": [Function],
- "queryAllByText": [Function],
- "queryAllByTitle": [Function],
- "queryByAltText": [Function],
- "queryByDisplayValue": [Function],
- "queryByLabelText": [Function],
- "queryByPlaceholderText": [Function],
- "queryByRole": [Function],
- "queryByTestId": [Function],
- "queryByText": [Function],
- "queryByTitle": [Function],
- "rerender": [Function],
- "unmount": [Function],
-}
-`;