diff --git a/src/theme/Footer/index.tsx b/src/theme/Footer/index.tsx index 13983775d9d..a8edba90f4d 100644 --- a/src/theme/Footer/index.tsx +++ b/src/theme/Footer/index.tsx @@ -1,22 +1,20 @@ -/** - * SWIZZLED VERSION: 2.0.0-rc.1 - * REASONS: - * - The socials bar needed full width, so needed to be placed outside the default container. - */ - import React from 'react'; import Footer from '@theme-original/Footer'; -import type FooterType from '@theme/Footer'; -import type { WrapperProps } from '@docusaurus/types'; import Social from '@site/src/components/Social'; -type Props = WrapperProps; +type FooterProps = { + footerStyleProps?: React.CSSProperties; +}; -export default function FooterWrapper(props: Props): JSX.Element { +const FooterWrapper = ({ footerStyleProps }: FooterProps) => { return ( - <> -