import * as React from "react";
import classnames from "classnames";
import useThemeContext from "@theme/hooks/useThemeContext";
import styles from "./styles.module.css";
const Icon = ({ color, size = "1.5rem", ...props }) => (
);
export const GithubButton = ({ href, ...props }) => {
const { isDarkTheme } = useThemeContext();
return (
);
};