diff --git a/packages/core/src/layout/InfoCard/BottomLink.tsx b/packages/core/src/layout/InfoCard/BottomLink.tsx index 9c4fe64196..bf82f6cd11 100644 --- a/packages/core/src/layout/InfoCard/BottomLink.tsx +++ b/packages/core/src/layout/InfoCard/BottomLink.tsx @@ -26,11 +26,11 @@ import { BackstageTheme } from '../../theme/theme'; const useStyles = makeStyles(theme => ({ root: { maxWidth: 'fit-content', - padding: theme.spacing(2, 2, 2, 2.5) + padding: theme.spacing(2, 2, 2, 2.5), }, boxTitle: { margin: 0, - color: grey[900] + color: grey[900], }, })); @@ -40,20 +40,18 @@ export type Props = { onClick?: (event: React.MouseEvent) => void; }; -const BottomLink: FC = ({ - link, - title, - onClick, -}) => { +const BottomLink: FC = ({ link, title, onClick }) => { const classes = useStyles(); - + return (
- {title} + + {title} + @@ -62,6 +60,6 @@ const BottomLink: FC = ({
); -} +}; -export default BottomLink; \ No newline at end of file +export default BottomLink;