import "./buttonRotkehlchen.css";
interface ButtonPrimaryProps {
style: "primary" | "secondary";
label: string;
type: "button" | "submit" | "reset";
onClick?: () => void;
}
export default function ButtonPrimary({ style, label, type, onClick }: ButtonPrimaryProps) {
return (
<>
{style === "primary" && (
)}
{style === "secondary" && (
)}
>
);
}