From 576e69484881676fbb8febd0669a257e5842d3b7 Mon Sep 17 00:00:00 2001 From: josephkmh Date: Wed, 2 Nov 2022 13:33:49 +0100 Subject: [PATCH 1/2] fix visual regression --- .../src/components/common/ConnectorIcon/ConnectorIcon.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-webapp/src/components/common/ConnectorIcon/ConnectorIcon.tsx b/airbyte-webapp/src/components/common/ConnectorIcon/ConnectorIcon.tsx index 9f4012e485226..58911b4bf13e6 100644 --- a/airbyte-webapp/src/components/common/ConnectorIcon/ConnectorIcon.tsx +++ b/airbyte-webapp/src/components/common/ConnectorIcon/ConnectorIcon.tsx @@ -1,17 +1,18 @@ +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 }) => ( -