diff --git a/packages/core/src/layout/ItemCard/InfoCard.stories.tsx b/packages/core/src/layout/ItemCard/InfoCard.stories.tsx
deleted file mode 100644
index 87c5b0684e..0000000000
--- a/packages/core/src/layout/ItemCard/InfoCard.stories.tsx
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright 2020 Spotify AB
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-import React, { FC } from 'react';
-import { ItemCard } from '.';
-import { Grid } from '@material-ui/core';
-
-export default {
- title: 'Item Card',
- component: ItemCard,
-};
-
-const Wrapper: FC<{}> = ({ children }) => (
-
- {children}
-
-);
-
-export const Default = () => (
-
-
-
-);
diff --git a/packages/core/src/layout/ItemCard/index.ts b/packages/core/src/layout/ItemCard/index.ts
deleted file mode 100644
index b38dd2acc2..0000000000
--- a/packages/core/src/layout/ItemCard/index.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
- * Copyright 2020 Spotify AB
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-export { ItemCard } from './ItemCard';
diff --git a/packages/core/src/layout/index.ts b/packages/core/src/layout/index.ts
index e8245119f3..e2de159ec6 100644
--- a/packages/core/src/layout/index.ts
+++ b/packages/core/src/layout/index.ts
@@ -26,4 +26,3 @@ export * from './Sidebar';
export * from './SignInPage';
export * from './TabbedCard';
export * from './HeaderTabs';
-export * from './ItemCard';
diff --git a/packages/core/src/layout/ItemCard/ItemCard.tsx b/plugins/techdocs/src/reader/components/DocsCard.tsx
similarity index 96%
rename from packages/core/src/layout/ItemCard/ItemCard.tsx
rename to plugins/techdocs/src/reader/components/DocsCard.tsx
index 86ad53e8dd..68f42bf84a 100644
--- a/packages/core/src/layout/ItemCard/ItemCard.tsx
+++ b/plugins/techdocs/src/reader/components/DocsCard.tsx
@@ -37,7 +37,7 @@ const useStyles = makeStyles(theme => ({
},
}));
-type ItemCardProps = {
+type DocsCardProps = {
description: string;
tags?: string[];
title: string;
@@ -45,7 +45,7 @@ type ItemCardProps = {
label: string;
onClick?: () => void;
};
-export const ItemCard: FC = ({
+export const DocsCard: FC = ({
description,
tags,
title,
diff --git a/plugins/techdocs/src/reader/components/Reader.tsx b/plugins/techdocs/src/reader/components/Reader.tsx
index 474457ac5c..a4ff03af47 100644
--- a/plugins/techdocs/src/reader/components/Reader.tsx
+++ b/plugins/techdocs/src/reader/components/Reader.tsx
@@ -17,16 +17,19 @@
import React from 'react';
import { useShadowDom } from '..';
import { useAsync } from 'react-use';
+import { useLocation, useParams, useNavigate } from 'react-router-dom';
+
+import { Grid } from '@material-ui/core';
+import { Header, Content } from '@backstage/core';
+
import transformer, {
addBaseUrl,
rewriteDocLinks,
addEventListener,
} from '../transformers';
import { docStorageURL } from '../../config';
-import { Grid } from '@material-ui/core';
-import { Header, Content, ItemCard } from '@backstage/core';
-import { useLocation, useParams, useNavigate } from 'react-router-dom';
import URLParser from '../urlParser';
+import { DocsCard } from './DocsCard';
const useFetch = (url: string) => {
const state = useAsync(async () => {
@@ -102,7 +105,7 @@ export const Reader = () => {
- navigate('/docs/mkdocs')}
tags={['Developer Tool']}
title="MkDocs"
@@ -111,7 +114,7 @@ export const Reader = () => {
/>
- navigate('/docs/backstage-microsite')}
tags={['Service']}
title="Backstage"