ComponentsCTA BlocksPrimary Button

Primary Button

import { Button } from "@react-email/components";

export const PrimaryButton = () => {
  return (
    <Button
      href="https://example.com"
      style={{
        backgroundColor: "#5F51E8",
        color: "#fff",
        padding: "12px 20px",
        borderRadius: "4px",
        fontWeight: "500",
        textDecoration: "none",
        textAlign: "center",
        display: "inline-block",
      }}
    >
      Click me
    </Button>
  );
};