diff --git a/packages/core/src/components/HeaderIconLinkRow/IconLinkVertical.tsx b/packages/core/src/components/HeaderIconLinkRow/IconLinkVertical.tsx index 6d692c1ecb..3ea7981aa5 100644 --- a/packages/core/src/components/HeaderIconLinkRow/IconLinkVertical.tsx +++ b/packages/core/src/components/HeaderIconLinkRow/IconLinkVertical.tsx @@ -25,7 +25,6 @@ export type IconLinkVerticalProps = { onClick?: React.MouseEventHandler; disabled?: boolean; label: string; - testId?: string; color?: 'primary' | 'secondary'; }; @@ -59,7 +58,6 @@ export function IconLinkVertical({ disabled = false, color = 'primary', label, - testId, onClick, }: IconLinkVerticalProps) { const classes = useIconStyles(); @@ -67,7 +65,6 @@ export function IconLinkVertical({ if (disabled) { return ( @@ -79,7 +76,6 @@ export function IconLinkVertical({ return (