diff --git a/src/app-layout.tsx b/src/app-layout.tsx index 1322659..03f1c90 100644 --- a/src/app-layout.tsx +++ b/src/app-layout.tsx @@ -1,4 +1,4 @@ -import { ReactNode, Suspense } from 'react' +import { HTMLAttributes, ReactNode, Suspense } from 'react' import { NavLink as Link } from 'react-router-dom' import { ActionIcon, AppShell, Flex, Group, Image, Loader, Text } from '@mantine/core' @@ -101,27 +101,35 @@ export function AppLayout({ children, profile }: { children: ReactNode; profile: ) } -const IconGithub: React.FC> = (props: any) => ( - - - -) -const IconDiscord: React.FC> = (props: any) => ( - - - -) -const IconTwitter: React.FC> = (props: any) => ( - - - -) +function IconGithub(props: HTMLAttributes & { height: number }) { + return ( + + + + ) +} + +function IconDiscord(props: HTMLAttributes & { height: number }) { + return ( + + + + ) +} + +function IconTwitter(props: HTMLAttributes & { height: number }) { + return ( + + + + ) +}