A link that is styled to look like a button.
<a>
<button>
npm install @react-email/components -E # or get the individual package npm install @react-email/button -E
import { Button } from "@react-email/components"; const Email = () => { return ( <Button href="https://example.com" style={{ color: "#61dafb", padding: "10px 20px" }} > Click me </Button> ); };