import { ButtonProps, Button as DSButton, LinkProps } from "@opensea/ui-kit" import React, { ElementRef, forwardRef } from "react" import { Link } from "../Link" export const Button = forwardRef, ButtonProps>( function NextButton(props, ref) { return ( } {...props} ref={ref} /> ) }, )