import NextLink from "next/link";
import { Button } from "nextra/components";
const DocsIcon = () => (
);
export interface DocsButtonProps extends React.ComponentProps<"button"> {
href: string;
side?: "left" | "right";
}
export const DocsButton = (props: DocsButtonProps) => {
const { href, side = "left", ...rest } = props;
return (
);
};