import { Button as MantineButton, ButtonProps as MantineButtonProps, } from "@mantine/core"; import { forwardRef, ComponentPropsWithoutRef } from "react"; type ButtonProps = MantineButtonProps & ComponentPropsWithoutRef<"button">; const Button = forwardRef((props, ref) => { return ; }); Button.displayName = "Button"; export default Button;