import { HStack, Span } from "@chakra-ui/react" import Link from "next/link" import { LiaGithub } from "react-icons/lia" import { LuArrowUpRight } from "react-icons/lu" interface Props { href: string } export const EditPageButton = (props: Props) => { const { href } = props return ( Edit page on GitHub ) }