import React from "react"; type Props = { children: string; className?: string; onClick: () => void; }; const Button = React.forwardRef( ({ children, className = "", onClick }, ref) => ( ) ); Button.displayName = "Button"; export default Button;