import { type Props as ButtonProps, Button, } from "@pythnetwork/component-library/Button"; import { Link } from "@pythnetwork/component-library/Link"; import type { ComponentProps, ElementType } from "react"; import styles from "./footer.module.scss"; import { socialLinks } from "./social-links"; import { SupportDrawer } from "./support-drawer"; import Wordmark from "./wordmark.svg"; export const Footer = () => ( ); type SocialLinkProps = Omit< ButtonProps, "target" | "variant" | "size" | "beforeIcon" | "hideText" > & { icon: ComponentProps["beforeIcon"]; }; const SocialLink = ({ icon, ...props }: SocialLinkProps) => ( );