diff --git a/apps/explorer/src/components/Icon.tsx b/apps/explorer/src/components/Icon.tsx deleted file mode 100644 index debb400b139..00000000000 --- a/apps/explorer/src/components/Icon.tsx +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright (c) 2024 IOTA Stiftung -// SPDX-License-Identifier: Apache-2.0 - -interface IconProps { - icon: React.FunctionComponent>; - width?: string; - height?: string; - fill?: string; -} - -function Icon({ - icon, - width = '24px', - height = '24px', - fill = 'currentColor', -}: IconProps): JSX.Element { - const IconComponent = icon; - - return ; -} - -export default Icon; diff --git a/apps/explorer/src/components/footer/Footer.tsx b/apps/explorer/src/components/footer/Footer.tsx index 70e1d262896..16911f0d4fc 100644 --- a/apps/explorer/src/components/footer/Footer.tsx +++ b/apps/explorer/src/components/footer/Footer.tsx @@ -5,11 +5,9 @@ import { Text } from '@iota/ui'; import { LegalLinks, LegalText } from './Legal'; -import { FooterIcon } from './FooterIcon'; -import { ReactComponent as IotaFoundationRed } from '../../assets/mysten_labs_red.svg'; +import { IotaLogoWeb } from '@iota/ui-icons'; import { Link } from '~/components/ui'; -import { FOOTER_LINKS, SOCIAL_LINKS } from '~/lib/constants'; -import Icon from '../Icon'; +import { FOOTER_LINKS } from '~/lib/constants'; function FooterLinks(): JSX.Element { return ( @@ -25,31 +23,17 @@ function FooterLinks(): JSX.Element { ))} - - ); } function Footer(): JSX.Element { return ( -