From cabfe611125c706c52e2afa00466230681a8b8f1 Mon Sep 17 00:00:00 2001 From: "flamingo[bot]" <277372822+flamingo[bot]@users.noreply.github.com> Date: Fri, 14 Aug 2026 14:24:14 +0000 Subject: [PATCH] fix(MAJORLEA-006): Logo.tsx imports MUI SvgIcon instead of using @flamingo/ui-kit for brand/product icons --- frontend/src/components/Logo.tsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/frontend/src/components/Logo.tsx b/frontend/src/components/Logo.tsx index 5283f230..63d1e764 100644 --- a/frontend/src/components/Logo.tsx +++ b/frontend/src/components/Logo.tsx @@ -1,9 +1,8 @@ import React from 'react'; -import { SvgIcon, SvgIconProps } from '@mui/material'; -import LogoSvg from '../assets/logo.svg'; +import { MlgLogo } from '@flamingo/ui-kit/components/icons'; -export const Logo = React.forwardRef((props, ref) => { +export const Logo = React.forwardRef>((props, ref) => { return ( - + ); -}); \ No newline at end of file +});