From c648057255bdf932c132310fb9e2f623c8a139c6 Mon Sep 17 00:00:00 2001 From: Joey Marshment-Howell Date: Wed, 2 Nov 2022 16:14:54 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=AA=9F=F0=9F=90=9B=20Fix:=20visual=20regr?= =?UTF-8?q?ession=20in=20ConnectorIcon=20(#18849)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix visual regression * remove unused prop --- .../src/components/common/ConnectorIcon/ConnectorIcon.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/airbyte-webapp/src/components/common/ConnectorIcon/ConnectorIcon.tsx b/airbyte-webapp/src/components/common/ConnectorIcon/ConnectorIcon.tsx index 9f4012e48522..b6a3dd9bfff7 100644 --- a/airbyte-webapp/src/components/common/ConnectorIcon/ConnectorIcon.tsx +++ b/airbyte-webapp/src/components/common/ConnectorIcon/ConnectorIcon.tsx @@ -1,17 +1,17 @@ +import classNames from "classnames"; import React from "react"; import { getIcon } from "utils/imageUtils"; import styles from "./ConnectorIcon.module.scss"; -interface Props { +interface ConnectorIconProps { icon?: string; className?: string; - small?: boolean; } -export const ConnectorIcon: React.FC = ({ icon }) => ( -