From d9fa17189ebb5cbe2eca25da4f9c1d7b76522ab9 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Fri, 23 Jun 2023 15:33:10 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20style(MongoDB=20icon):=20rename?= =?UTF-8?q?=20SlackSVG=20to=20MongoDBSVG=20for=20better=20naming=20The=20S?= =?UTF-8?q?lackSVG=20component=20was=20renamed=20to=20MongoDBSVG=20to=20be?= =?UTF-8?q?tter=20reflect=20the=20actual=20icon=20being=20used.=20This=20i?= =?UTF-8?q?mproves=20the=20naming=20consistency=20and=20makes=20the=20code?= =?UTF-8?q?=20more=20readable.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/frontend/src/icons/MongoDB/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/src/icons/MongoDB/index.tsx b/src/frontend/src/icons/MongoDB/index.tsx index 5caa770f5..aa27955c1 100644 --- a/src/frontend/src/icons/MongoDB/index.tsx +++ b/src/frontend/src/icons/MongoDB/index.tsx @@ -1,9 +1,9 @@ import React, { forwardRef } from "react"; -import { ReactComponent as SlackSVG } from "./mongodb-icon.svg"; +import { ReactComponent as MongoDBSVG } from "./mongodb-icon.svg"; export const MongoDBIcon = forwardRef< SVGSVGElement, React.PropsWithChildren<{}> >((props, ref) => { - return ; + return ; });