diff --git a/plugins/catalog/src/components/AboutCard/IconLinkVertical/IconLinkVertical.tsx b/plugins/catalog/src/components/AboutCard/IconLinkVertical/IconLinkVertical.tsx index 4a8bf2a0ab..dd267dde35 100644 --- a/plugins/catalog/src/components/AboutCard/IconLinkVertical/IconLinkVertical.tsx +++ b/plugins/catalog/src/components/AboutCard/IconLinkVertical/IconLinkVertical.tsx @@ -25,10 +25,9 @@ export type IconLinkVerticalProps = { disabled?: boolean; title?: string; label: string; - action?: React.ReactNode; }; -const useIconStyles = makeStyles(theme => ({ +const useIconStyles = makeStyles({ link: { display: 'grid', justifyItems: 'center', @@ -44,16 +43,12 @@ const useIconStyles = makeStyles(theme => ({ fontWeight: 600, letterSpacing: 1.2, }, - linkStyle: { - color: theme.palette.secondary.main, - }, -})); +}); export function IconLinkVertical({ icon = , href = '#', disabled = false, - action, ...props }: IconLinkVerticalProps) { const classes = useIconStyles(); @@ -72,23 +67,6 @@ export function IconLinkVertical({ ); } - if (action) { - return ( - - {icon} - {action} - - ); - } - // Absolute links should not be using RouterLink if (href?.startsWith('//') || href?.includes('://')) { return (